@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-0: #030912;
  --bg-1: #060D1F;
  --bg-2: #0B1630;
  --bg-3: #112040;
  --bg-4: #172B55;
  --card: #0F1C38;
  --card-hover: #162444;
  --primary: #1A8CFF;
  --primary-dark: #0E6DD4;
  --primary-light: #4DA6FF;
  --gold: #FFB800;
  --gold-light: #FFCD52;
  --gold-dark: #CC9200;
  --teal: #00C9A7;
  --teal-light: #33D4B7;
  --red: #FF3B5C;
  --green: #00C853;
  --text-1: #FFFFFF;
  --text-2: #C5D0E6;
  --text-3: #7A8FAD;
  --text-4: #3D4E6A;
  --border: #1A2E52;
  --border-light: #243D6A;
  --glow-blue: 0 0 20px rgba(26, 140, 255, 0.35);
  --glow-gold: 0 0 20px rgba(255, 184, 0, 0.35);
  --glow-teal: 0 0 20px rgba(0, 201, 167, 0.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-1);
  color: var(--text-1);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }

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

button { cursor: pointer; border: none; font-family: 'Inter', sans-serif; }

ul, ol { list-style: none; }

/* ========================
   SCROLLBAR
======================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ========================
   TYPOGRAPHY UTILITIES
======================== */
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-3); }

.font-heading { font-family: 'Orbitron', sans-serif; }

/* ========================
   LAYOUT UTILITIES
======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

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

/* ========================
   SECTION HEADERS
======================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(26, 140, 255, 0.1);
  border: 1px solid rgba(26, 140, 255, 0.3);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--primary); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-2); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(26, 140, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26, 140, 255, 0.45); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-0);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255, 184, 0, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(26, 140, 255, 0.08); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ========================
   CARDS
======================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.card-glow:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--glow-blue); }

/* ========================
   BADGE
======================== */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-gold { background: rgba(255,184,0,0.15); color: var(--gold); border: 1px solid rgba(255,184,0,0.3); }
.badge-blue { background: rgba(26,140,255,0.15); color: var(--primary); border: 1px solid rgba(26,140,255,0.3); }
.badge-teal { background: rgba(0,201,167,0.15); color: var(--teal); border: 1px solid rgba(0,201,167,0.3); }
.badge-red { background: rgba(255,59,92,0.15); color: var(--red); border: 1px solid rgba(255,59,92,0.3); }

/* ========================
   DIVIDER
======================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 40px 0;
}

/* ========================
   HEADER / NAV
======================== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: all var(--transition);
}
#site-header.scrolled {
  background: rgba(6, 13, 31, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--text-1);
  letter-spacing: 0.05em;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-1); background: rgba(255,255,255,0.07); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-coins {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 100px;
  font-size: 13px; font-weight: 700; color: var(--gold);
}
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 899;
  background: rgba(6, 13, 31, 0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 15px; color: var(--text-2); }
.nav-mobile a:hover { color: var(--text-1); background: rgba(255,255,255,0.07); }

/* ========================
   FOOTER
======================== */
#site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}
.footer-top { padding: 64px 0 48px; }
.footer-brand { margin-bottom: 20px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-3); max-width: 280px; line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px; color: var(--text-2);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--primary); }
.footer-disclaimer {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}
.footer-disclaimer h5 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-disclaimer p { font-size: 13px; color: var(--text-3); line-height: 1.7; }
.footer-disclaimer a { color: var(--primary); text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-left { font-size: 13px; color: var(--text-3); }
.footer-bottom-right { display: flex; align-items: center; gap: 6px; }
.footer-bottom-right .age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,59,92,0.1);
  border: 1px solid rgba(255,59,92,0.3);
  font-size: 11px; font-weight: 800;
  color: var(--red);
}

/* ========================
   AGE VERIFICATION MODAL
======================== */
#age-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(3, 9, 18, 0.97);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}
#age-modal.hidden { display: none; }
.age-modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.age-modal-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,140,255,0.15), rgba(0,201,167,0.15));
  border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
}
.age-modal-box h2 {
  font-size: 24px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-1), var(--text-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.age-modal-box p { font-size: 15px; color: var(--text-2); margin-bottom: 28px; line-height: 1.6; }
.age-checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(26,140,255,0.06);
  border: 1px solid rgba(26,140,255,0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  margin-bottom: 20px;
  text-align: left;
  transition: all var(--transition);
}
.age-checkbox-label:hover { border-color: rgba(26,140,255,0.4); background: rgba(26,140,255,0.1); }
.age-checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--primary);
  margin-top: 2px; cursor: pointer;
}
.age-checkbox-label span { font-size: 14px; color: var(--text-2); line-height: 1.5; }
#age-confirm-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; border: none;
  padding: 15px; border-radius: var(--radius-md);
  font-size: 16px; font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0.4; pointer-events: none;
}
#age-confirm-btn.enabled { opacity: 1; pointer-events: all; }
#age-confirm-btn.enabled:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,140,255,0.4); }
.age-disclaimer { font-size: 12px; color: var(--text-4); margin-top: 14px; line-height: 1.5; }

/* ========================
   COOKIE CONSENT
======================== */
#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 8888;
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  max-width: 900px; margin: 0 auto;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
#cookie-banner.hidden { display: none; }
.cookie-icon { font-size: 28px; flex-shrink: 0; }
.cookie-text { flex: 1; }
.cookie-text h4 { font-family: 'Orbitron', sans-serif; font-size: 14px; margin-bottom: 5px; }
.cookie-text p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ========================
   HERO SECTION
======================== */
.hero {
  position: relative; overflow: hidden;
  padding: 160px 0 100px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,140,255,0.12) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(26,140,255,0.15), transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease;
}
.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 19px; color: var(--text-2); margin-bottom: 40px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 70px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 13px; color: var(--text-3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-divider { width: 1px; background: var(--border-light); }

/* ========================
   GAMES SECTION
======================== */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover { transform: translateY(-8px); border-color: var(--border-light); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.game-card-thumb {
  height: 200px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.game-card-thumb .game-visual { font-size: 72px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.game-card-body { padding: 24px; }
.game-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.game-card h3 { font-size: 18px; font-weight: 700; }
.game-card p { font-size: 14px; color: var(--text-2); margin-bottom: 20px; line-height: 1.6; }
.game-card-meta { display: flex; gap: 12px; margin-bottom: 20px; }
.game-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-3); }
.game-card .btn { width: 100%; }

/* ========================
   FEATURES SECTION
======================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--glow-blue), 0 12px 40px rgba(0,0,0,0.3); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ========================
   CTA SECTION
======================== */
.cta-section {
  position: relative; overflow: hidden;
  padding: 90px 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,140,255,0.1), rgba(0,201,167,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 16px; }
.cta-content p { font-size: 17px; color: var(--text-2); margin-bottom: 36px; }

/* ========================
   PAGE HERO (Inner pages)
======================== */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(180deg, rgba(26,140,255,0.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .page-tag { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text-2); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ========================
   BREADCRUMB
======================== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-3);
  justify-content: center; margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-4); }

/* ========================
   CONTENT BLOCKS
======================== */
.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { font-size: 22px; margin-bottom: 14px; margin-top: 40px; color: var(--text-1); }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { font-size: 17px; margin-bottom: 10px; margin-top: 24px; color: var(--text-1); }
.content-block p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.content-block ul { margin-bottom: 16px; }
.content-block ul li { font-size: 15px; color: var(--text-2); line-height: 1.7; padding-left: 20px; position: relative; margin-bottom: 8px; }
.content-block ul li::before { content: '›'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.content-block a { color: var(--primary); text-decoration: underline; }
.content-block .highlight-box {
  background: rgba(26,140,255,0.07);
  border: 1px solid rgba(26,140,255,0.2);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
}
.content-block .highlight-box p { margin-bottom: 0; }
.content-block .warning-box {
  background: rgba(255,184,0,0.07);
  border: 1px solid rgba(255,184,0,0.2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
}
.content-block .warning-box p { margin-bottom: 0; color: var(--text-2); }

/* ========================
   FAQ ACCORDION
======================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-light); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question h4 { font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif; }
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 14px; color: var(--text-3);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(26,140,255,0.15); color: var(--primary); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ========================
   STEPS
======================== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Orbitron', sans-serif; font-size: 22px; font-weight: 800;
  box-shadow: 0 8px 24px rgba(26,140,255,0.4);
}
.step-card h3 { font-size: 16px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ========================
   TEAM / COMMUNITY CARDS
======================== */
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
}
.team-card h3 { font-size: 17px; margin-bottom: 5px; }
.team-card .role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ========================
   STATS BAR
======================== */
.stats-bar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item-num {
  font-family: 'Orbitron', sans-serif; font-size: 36px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-item-label { font-size: 13px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ========================
   ALERT / NOTICE BOX
======================== */
.notice-box {
  background: rgba(0,200,83,0.07);
  border: 1px solid rgba(0,200,83,0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 24px;
}
.notice-box .icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.notice-box p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 0; }

/* ========================
   HELP CENTER
======================== */
.help-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.help-cat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.help-cat:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--glow-blue); }
.help-cat-icon { font-size: 36px; margin-bottom: 14px; }
.help-cat h3 { font-size: 16px; margin-bottom: 6px; }
.help-cat p { font-size: 13px; color: var(--text-3); }

/* ========================
   RESPONSIBLE GAMING
======================== */
.rg-tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.rg-tool-card:hover { border-color: var(--teal); }
.rg-tool-icon { font-size: 32px; margin-bottom: 16px; }
.rg-tool-card h3 { font-size: 17px; margin-bottom: 8px; }
.rg-tool-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.org-links { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.org-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: all var(--transition);
}
.org-link:hover { border-color: var(--teal); color: var(--teal); }
.org-link-left { display: flex; align-items: center; gap: 12px; }
.org-link-icon { font-size: 20px; }
.org-link-text { font-size: 14px; font-weight: 600; }
.org-link-desc { font-size: 12px; color: var(--text-3); }
.org-link-arrow { color: var(--text-3); font-size: 16px; transition: transform var(--transition); }
.org-link:hover .org-link-arrow { transform: translateX(4px); }

/* ========================
   ANIMATIONS
======================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-float { animation: float 4s ease-in-out infinite; }

/* ========================
   PARTICLES BG
======================== */
.particles-bg {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .help-categories { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-divider { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-coins { display: none; }
  .hero { padding: 120px 0 70px; }
  #cookie-banner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 28px; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .age-modal-box { padding: 32px 24px; }
}
