/* ============================================================
   LUX2PLAY — SOCIAL CASINO NZ — MAIN STYLESHEET
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --gold: #FFD700;
  --gold-light: #FFE55C;
  --gold-dark: #CC9900;
  --gold-orange: #FF8C00;
  --purple-deep: #0D0A1E;
  --purple-dark: #130D30;
  --purple-mid: #1E1145;
  --purple-accent: #3D1F7A;
  --purple-bright: #6B2FBD;
  --blue-deep: #0A0E1A;
  --bg-dark: #07050F;
  --card-bg: rgba(25, 15, 55, 0.85);
  --card-border: rgba(255, 215, 0, 0.18);
  --text-primary: #F0E6FF;
  --text-secondary: #B8A9D4;
  --text-muted: #7A6B9E;
  --white: #FFFFFF;
  --success: #00E676;
  --error: #FF4444;
  --warning: #FFB300;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.25), 0 4px 20px rgba(0,0,0,0.5);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(255, 215, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(107, 47, 189, 0.5);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: 90px 0; }

/* ============================================================
   PARTICLES BACKGROUND
   ============================================================ */
.particles-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   AGE GATE OVERLAY
   ============================================================ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 5, 15, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}

.age-gate-box {
  background: linear-gradient(135deg, #130D30 0%, #1E1145 50%, #0D0A1E 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(107, 47, 189, 0.4), 0 0 120px rgba(255, 215, 0, 0.08), inset 0 1px 0 rgba(255,215,0,0.15);
  animation: ageGateIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.age-gate-logo {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.age-gate-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.age-gate-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.age-gate-text strong { color: var(--white); }

.age-gate-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-bottom: 28px;
  justify-content: center;
}

.badge-18 {
  background: var(--gold);
  color: var(--purple-deep);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: var(--font-display);
}

.badge-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-age {
  padding: 16px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.age-gate-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.age-gate-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  color: #0D0A1E;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  color: #0D0A1E;
  background: linear-gradient(135deg, #FFE55C 0%, #FFB300 100%);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1.05rem;
}

.btn-glow {
  animation: btnGlow 2s ease-in-out infinite;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-slow);
}

.site-header.scrolled {
  background: rgba(7, 5, 15, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}

.logo-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.logo-svg { width: 200px; height: auto; }
.footer-logo-svg { width: 160px; height: auto; }

.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
}

.nav-18-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 6px 14px;
}

.nav-18-badge span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
}

.nav-18-badge small {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Responsible bar */
.responsible-bar {
  background: linear-gradient(90deg, rgba(61, 31, 122, 0.9), rgba(107, 47, 189, 0.9));
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding: 6px 0;
  font-size: 0.78rem;
}

.responsible-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.responsible-bar span {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.responsible-bar span i {
  color: var(--warning);
}

.resp-bar-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(61, 31, 122, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #07050F 0%, #0D0A1E 50%, #07050F 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title-line1 {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-line2 em {
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong { color: var(--white); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(25, 15, 55, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(10px);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.stat-item i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-display);
}

.stat-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 215, 0, 0.2);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.hero-disclaimer i { color: var(--warning); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   INFO BANNER
   ============================================================ */
.info-banner {
  background: linear-gradient(135deg, #0D0A1E 0%, #130D30 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.info-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.info-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.info-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: var(--shadow-gold);
}

.info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 140, 0, 0.15) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
}

.info-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.info-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
.games-section {
  background: var(--bg-dark);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: var(--shadow-gold);
}

.game-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}

.game-preview-slots,
.game-preview-cards {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slot Machine Preview */
.game-preview-slots {
  background: radial-gradient(ellipse at center, #1A0A4A 0%, #0A0520 100%);
}

.slot-preview-machine {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(0,0,0,0.5);
}

.slot-reel-preview {
  width: 80px;
  height: 80px;
  background: linear-gradient(180deg, #0D0521 0%, #1A0A4A 50%, #0D0521 100%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slot-symbol {
  font-size: 2.5rem;
  line-height: 1;
  animation: slotPreviewSpin 3s ease-in-out infinite;
}

.slot-reel-preview:nth-child(2) .slot-symbol { animation-delay: 0.2s; }
.slot-reel-preview:nth-child(3) .slot-symbol { animation-delay: 0.4s; }

/* Card Preview */
.game-preview-cards {
  background: radial-gradient(ellipse at center, #0A2010 0%, #050F08 100%);
}

.card-preview-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.preview-card {
  width: 80px;
  height: 110px;
  background: linear-gradient(135deg, #FAFAF8 0%, #F0EDE8 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(0,0,0,0.1);
}

.preview-card .card-suit {
  font-size: 2rem;
  color: #1A1A1A;
  line-height: 1;
}

.preview-card .card-suit.red { color: #CC0000; }

.preview-card .card-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #1A1A1A;
  font-family: var(--font-display);
  line-height: 1;
}

.preview-card .card-value.red { color: #CC0000; }

.card-front-anim {
  animation: cardFlip 3s ease-in-out infinite;
}

.card-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.arrow-up { font-size: 1.2rem; color: #00E676; }
.arrow-down { font-size: 1.2rem; color: #FF4444; }
.arrow-or {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Game badge */
.game-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #FF6B00, #FF3C00);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.badge-new {
  background: linear-gradient(135deg, #6B2FBD, #3D1F7A);
}

/* Game overlay on hover */
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 5, 15, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.game-card:hover .game-overlay { opacity: 1; }

.btn-play-overlay {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #0D0A1E;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: scale(0.85);
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
}

.game-card:hover .btn-play-overlay { transform: scale(1); }

.game-card-body { padding: 24px; }

.game-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.game-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.game-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.game-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
}

.free-tag {
  background: rgba(0, 230, 118, 0.08);
  border-color: rgba(0, 230, 118, 0.2);
  color: var(--success);
}

.btn-game-play {
  width: 100%;
  justify-content: center;
}

.games-cta { text-align: center; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: linear-gradient(135deg, #0D0A1E 0%, #130D30 50%, #0D0A1E 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 47, 189, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
}

.step-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #0D0A1E;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,215,0,0.3), rgba(107, 47, 189, 0.3));
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  opacity: 0.5;
  font-size: 1rem;
  background: var(--bg-dark);
  padding: 0 6px;
}

/* ============================================================
   RESPONSIBLE GAMING SECTION
   ============================================================ */
.responsible-section {
  background: var(--bg-dark);
}

.responsible-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(61, 31, 122, 0.3), rgba(13, 10, 30, 0.8));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: 0 0 60px rgba(107, 47, 189, 0.2);
}

.responsible-icon {
  font-size: 4rem;
  color: var(--gold);
  flex-shrink: 0;
  text-shadow: 0 0 30px rgba(255,215,0,0.4);
}

.responsible-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

.responsible-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.responsible-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.resp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.18);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.resp-link:hover {
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold-light);
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  background: linear-gradient(135deg, #0D0A1E 0%, #07050F 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.trust-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.trust-item:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
  text-shadow: 0 0 15px rgba(255,215,0,0.3);
}

.trust-item h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Regulator logos */
.regulator-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.reg-logo-link { text-decoration: none; }

.reg-logo-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  cursor: pointer;
}

.reg-logo-link:hover .reg-logo-box {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.06);
}

.reg-logo-box i {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.reg-logo-link:hover .reg-logo-box i { color: var(--gold); }

.reg-logo-box span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.reg-18 {
  border-color: rgba(255, 215, 0, 0.25) !important;
  background: rgba(255, 215, 0, 0.08) !important;
}

.age-18-badge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold) !important;
  line-height: 1;
}

.reg-18 span:last-child {
  font-size: 0.7rem;
  color: var(--gold) !important;
  opacity: 0.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-dark);
}

.cta-card {
  background: linear-gradient(135deg, rgba(61, 31, 122, 0.5) 0%, rgba(107, 47, 189, 0.3) 50%, rgba(61, 31, 122, 0.5) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
  box-shadow: 0 0 80px rgba(107, 47, 189, 0.3);
  flex-wrap: wrap;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 480px;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cta-note i { color: var(--warning); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #0A0718 0%, #050410 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-text {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.8;
  margin: 16px 0;
}

.footer-brand-text strong { color: var(--text-secondary); }

.footer-18-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f18 {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #0D0A1E;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 4px 12px;
  border-radius: 6px;
}

.footer-18-badge span:last-child {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-links a i {
  font-size: 0.7rem;
  color: var(--purple-bright);
}

.footer-contact-list { list-style: none; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-contact-list i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.footer-disclaimer {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-disclaimer a { color: var(--gold); }
.footer-disclaimer strong, .footer-disclaimer em { color: var(--text-secondary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--gold);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   INNER PAGE BANNER
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, #0D0A1E 0%, #1E1145 50%, #0D0A1E 100%);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(107,47,189,0.3), transparent 60%);
  pointer-events: none;
}

.page-banner-content { position: relative; z-index: 2; }

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner h1 span { color: var(--gold); }

.page-banner p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs i { font-size: 0.6rem; }

/* ============================================================
   GAMES PAGE - GAME CONTAINERS
   ============================================================ */
.game-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
}

.game-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.game-title-bar h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}

.game-balance-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.balance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.balance-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.balance-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 80px;
  text-align: center;
}

.balance-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 215, 0, 0.15);
}

/* ============================================================
   RESPONSIBLE GAMBLING PAGE
   ============================================================ */
.resp-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.resp-tip-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.resp-tip-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.resp-tip-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.resp-tip-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.resp-tip-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content a {
  color: var(--white);
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--card-border);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   TERMS PAGE
   ============================================================ */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.terms-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.terms-content h2:first-of-type { margin-top: 0; }

.terms-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.terms-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.terms-content ul li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.7;
}

.terms-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.terms-alert {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.terms-alert i {
  color: var(--warning);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-alert p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

.terms-alert strong { color: var(--white); }

/* ============================================================
   PRIVACY / TERMS PAGE HEADER BOX
   ============================================================ */
.legal-header-box {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.legal-header-box i {
  font-size: 2.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.legal-header-box div h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.legal-header-box div p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-bright); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .info-banner-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .games-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector { width: 2px; height: 40px; }
  .step-connector::after { content: '↓'; }
  .responsible-card { flex-direction: column; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; gap: 30px; }
  .resp-tips-grid { grid-template-columns: repeat(2, 1fr); }
  .game-balance-bar { justify-content: center; }
  .game-title-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(7, 5, 15, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 215, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 30px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .main-nav.open { right: 0; }

  .nav-list { flex-direction: column; gap: 4px; width: 100%; }
  .nav-link { padding: 14px 20px; font-size: 1rem; border-radius: var(--radius-md); }

  .info-banner-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .resp-tips-grid { grid-template-columns: 1fr; }
  .age-gate-box { padding: 36px 24px; }
  .age-gate-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 12px; max-width: 280px; }
  .stat-divider { width: 100%; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .game-container { padding: 24px 16px; }
  .cta-card { padding: 36px 24px; }
  .responsible-card { padding: 30px 24px; }
  .regulator-logos { gap: 12px; }
  .reg-logo-box { padding: 10px 14px; }
}

@media (max-width: 480px) {
  .info-banner-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .hero-title-line2 { font-size: 2.8rem; }
}
