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

:root {
  --bg-deep: #030712;
  --bg-dark: #0a1628;
  --bg-surface: #0f2044;
  --bg-card: #142a54;
  --bg-card-hover: #1a3366;
  --gold: #f0b429;
  --gold-light: #fdd663;
  --gold-dark: #c68a0a;
  --teal: #00c9b1;
  --teal-light: #4de8d4;
  --teal-dark: #008f7e;
  --blue: #1e90ff;
  --blue-light: #60b4ff;
  --text-primary: #f0f4ff;
  --text-secondary: #a8b4d8;
  --text-muted: #6b7fa3;
  --border: rgba(240, 180, 41, 0.18);
  --border-teal: rgba(0, 201, 177, 0.2);
  --error: #ff4757;
  --success: #2ed573;
  --shadow-gold: 0 0 30px rgba(240, 180, 41, 0.25);
  --shadow-teal: 0 0 30px rgba(0, 201, 177, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

.stars-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: var(--op, 0.8); transform: scale(1); }
}

.nebula {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.nebula-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,177,0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.nebula-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,180,41,0.05) 0%, transparent 70%);
  bottom: 100px; left: -100px;
}

.nebula-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,144,255,0.04) 0%, transparent 70%);
  top: 40%; left: 40%;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

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

p { line-height: 1.7; color: var(--text-secondary); }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; position: relative; z-index: 1; }
.section-sm { padding: 60px 0; position: relative; z-index: 1; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e8a020);
  color: #0a0e1a;
  box-shadow: 0 4px 20px rgba(240,180,41,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,180,41,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.btn-secondary:hover {
  background: rgba(0,201,177,0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0;
  width: 100%;
  background: rgba(3, 7, 18, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
  display: block;
}

.mobile-nav a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 550px;
  z-index: 1;
}

.planet-orbit {
  position: relative;
  width: 100%; height: 100%;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240,180,41,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin var(--speed, 20s) linear infinite;
}

.orbit-ring::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold);
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring:nth-child(2) { width: 200px; height: 200px; --speed: 8s; }
.orbit-ring:nth-child(2)::after { background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.orbit-ring:nth-child(3) { width: 320px; height: 320px; --speed: 14s; }
.orbit-ring:nth-child(4) { width: 440px; height: 440px; --speed: 20s; animation-direction: reverse; }

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffeaa7, var(--gold), #c68a0a);
  box-shadow: 0 0 60px rgba(240,180,41,0.4), 0 0 120px rgba(240,180,41,0.15);
  animation: float-planet 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

@keyframes orbit-spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes float-planet { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.05); } }

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

.section-tag {
  display: inline-block;
  background: rgba(0,201,177,0.1);
  border: 1px solid rgba(0,201,177,0.3);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 16px; }

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.card:hover::before { opacity: 1; }

/* ─── GAMES SECTION ─────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(240,180,41,0.35);
}

.game-card-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-thumb-slots { background: linear-gradient(135deg, #0a1628, #1a2e58, #0d2040); }
.game-card-thumb-roulette { background: linear-gradient(135deg, #0a1628, #1a3020, #0d2818); }
.game-card-thumb-blackjack { background: linear-gradient(135deg, #0a1628, #2a1a18, #1e0e0c); }

.game-card-icon {
  font-size: 5rem;
  animation: float-game 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(240,180,41,0.4));
}

@keyframes float-game {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

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

.game-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.game-card-info h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.game-card-info p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-card-players {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── FEATURES ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-icon-gold { background: rgba(240,180,41,0.12); }
.feature-icon-teal { background: rgba(0,201,177,0.12); }
.feature-icon-blue { background: rgba(30,144,255,0.12); }

.feature-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { font-size: 0.88rem; line-height: 1.65; }

/* ─── BANNER ─────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(240,180,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.65; margin-bottom: 24px; }

.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-disclaimer {
  background: rgba(240,180,41,0.05);
  border: 1px solid rgba(240,180,41,0.15);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-disclaimer p + p { margin-top: 8px; }

.footer-disclaimer a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(0,201,177,0.4);
}

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

.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.footer-age { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

.age-badge {
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ─── AGE MODAL ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.hidden { display: none; }

.age-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), var(--shadow-gold);
}

.age-modal-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  animation: float-planet 4s ease-in-out infinite;
}

.age-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.age-modal p {
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.age-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.age-check-label:hover { background: rgba(255,255,255,0.07); }

.age-check-label input[type="checkbox"] {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
}

.age-check-label span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

#age-confirm-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

#age-confirm-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.age-modal-footer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 900px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 8888;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  flex-wrap: wrap;
}

.cookie-banner.hidden { display: none; }

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-text a { color: var(--teal); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ─── CONTENT SECTIONS ─────────────────────────────────────── */
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
}

.content-block h3 {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.content-block p { font-size: 0.92rem; margin-bottom: 12px; }
.content-block p:last-child { margin-bottom: 0; }

.content-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.content-block ul li {
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

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

/* ─── SOCIAL LINKS ─────────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-link:hover {
  background: rgba(240,180,41,0.1);
  border-color: rgba(240,180,41,0.3);
  color: var(--gold);
}

/* ─── BALANCE CHIP ─────────────────────────────────────────── */
.balance-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,180,41,0.08);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  cursor: default;
}

/* ─── CONTACT FORM ─────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--teal);
  background: rgba(0,201,177,0.05);
  box-shadow: 0 0 0 3px rgba(0,201,177,0.1);
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-select option { background: var(--bg-dark); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-card);
  cursor: pointer;
  border: none;
  text-align: left;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-chevron {
  font-size: 0.8rem;
  color: var(--teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(255,255,255,0.02);
}

.faq-answer-inner {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── STEP CARDS ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(240,180,41,0.15);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}

.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step-card p { font-size: 0.87rem; }

/* ─── TEAM CARDS ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.team-card:hover {
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 2px solid var(--border);
}

.team-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--teal); }
.team-card p { font-size: 0.82rem; margin-top: 10px; line-height: 1.5; }

/* ─── STATS ROW ─────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.stat-box {
  text-align: center;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat-box-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box-label { font-size: 0.85rem; color: var(--text-muted); }

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

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0,201,177,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-content h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-content p { font-size: 0.85rem; margin: 0; }

/* ─── RESPONSIBLE GAMING ─────────────────────────────────────── */
.warning-box {
  background: rgba(255,71,87,0.08);
  border: 1px solid rgba(255,71,87,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
}

.warning-box h3 { color: #ff6b7a; margin-bottom: 12px; }
.warning-box p { font-size: 0.9rem; margin: 0; }

.help-org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.help-org-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.help-org-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.help-org-card h4 { font-size: 0.9rem; color: var(--teal); margin-bottom: 6px; }
.help-org-card p { font-size: 0.8rem; margin: 0; }

/* ─── COMMUNITY PAGE ─────────────────────────────────────────── */
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.leaderboard-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.leaderboard-table tr:last-child td { border-bottom: none; }

.rank-gold { color: var(--gold); font-weight: 700; font-family: 'Orbitron', sans-serif; }
.rank-silver { color: #c0c0c0; font-weight: 700; font-family: 'Orbitron', sans-serif; }
.rank-bronze { color: #cd7f32; font-weight: 700; font-family: 'Orbitron', sans-serif; }

/* ─── TOAST NOTIFICATION ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-primary);
  z-index: 7777;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 320px;
  box-shadow: var(--shadow-teal);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { width: 400px; height: 400px; right: -20px; }
}

@media (max-width: 900px) {
  .games-grid, .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .help-org-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cookie-banner { flex-direction: column; gap: 16px; bottom: 16px; }
  .section { padding: 60px 0; }
  .age-modal { padding: 36px 24px; }
  .hero-content { text-align: center; }
  .hero-actions, .hero-stats { justify-content: center; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
