/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #FFD700;
  --gold-dark: #e6ac00;
  --gold-glow: rgba(255, 215, 0, 0.4);
  --neon-green: #39ff14;
  --neon-blue: #00d4ff;
  --neon-purple: #bf40ff;
  --neon-pink: #ff2d75;
  --neon-orange: #ff6a00;
  --dark-bg: #0a0a1a;
  --dark-card: #12122a;
  --dark-surface: #1a1a3e;
  --dark-border: rgba(255, 255, 255, 0.06);
  --white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-mid: rgba(255, 255, 255, 0.7);
  --text-bright: rgba(255, 255, 255, 0.9);
  --transition: 0.3s ease;
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-bright);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Poppins', 'Segoe UI', sans-serif; font-weight: 700; line-height: 1.15; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 14px;
  color: var(--white);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.section-title p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

.section-title .accent {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}

.nav-brand span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-download-nav {
  background: linear-gradient(135deg, var(--gold), #ff8c00) !important;
  color: var(--dark-bg) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease !important;
}

.btn-download-nav:hover {
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px) scale(1.03);
}

.btn-download-nav::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: var(--transition);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated background grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Glowing orbs */
.hero .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero .glow-orb.gold {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 70%);
  top: -10%;
  right: -5%;
}

.hero .glow-orb.red {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 45, 117, 0.15), transparent 70%);
  bottom: -5%;
  left: -5%;
  animation-delay: 4s;
}

.hero .glow-orb.purple {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(191, 64, 255, 0.12), transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), #ff8c00, var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  color: var(--dark-bg);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
  transform: translateY(-3px);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
}

/* Pulsing ring around board */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gold), var(--neon-pink), var(--neon-purple), var(--gold));
  background-size: 300% 300%;
  animation: borderGlow 4s ease infinite;
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-board {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.hero-float {
  position: absolute;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.hero-float.dice {
  top: -25px;
  right: -35px;
  width: 65px;
  height: 65px;
  background: var(--dark-card);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.15);
}

.hero-float.coin {
  bottom: -15px;
  left: -25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  animation-delay: 1.5s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.4);
}

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

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark-card);
  padding: 40px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.03), transparent);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  position: relative;
}

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

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.stat-label {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
}

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

.feature-card {
  background: var(--dark-card);
  padding: 40px 30px;
  border-radius: var(--radius);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--neon-orange));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.08);
}

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

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.06));
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== GAME MODES SECTION ===== */
.game-modes {
  padding: 120px 0;
  background: var(--dark-card);
  position: relative;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

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

.mode-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 44px 32px;
  color: var(--white);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.mode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 26, 0.92) 100%);
  z-index: 1;
}

.mode-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.mode-card.online {
  background: linear-gradient(135deg, #ff2d75, #c73a52, #8b1a3a);
  box-shadow: 0 0 40px rgba(255, 45, 117, 0.15);
}
.mode-card.online:hover { box-shadow: 0 0 60px rgba(255, 45, 117, 0.3); border-color: rgba(255, 45, 117, 0.3); }

.mode-card.local {
  background: linear-gradient(135deg, #00d4ff, #0f3460, #0a1628);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15);
}
.mode-card.local:hover { box-shadow: 0 0 60px rgba(0, 212, 255, 0.3); border-color: rgba(0, 212, 255, 0.3); }

.mode-card.computer {
  background: linear-gradient(135deg, #bf40ff, #533483, #2a1a40);
  box-shadow: 0 0 40px rgba(191, 64, 255, 0.15);
}
.mode-card.computer:hover { box-shadow: 0 0 60px rgba(191, 64, 255, 0.3); border-color: rgba(191, 64, 255, 0.3); }

.mode-icon {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  margin-bottom: 18px;
}

.mode-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.mode-card p {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== BOARDS SECTION ===== */
.boards {
  padding: 120px 0;
  background: var(--dark-bg);
}

.boards-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.board-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid var(--dark-border);
}

.board-item:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.1);
}

.board-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.board-item:hover img { transform: scale(1.1); }

.board-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 26, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.board-item:hover .board-overlay { opacity: 1; }

.board-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PROGRESSION SECTION ===== */
.progression {
  padding: 120px 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.progression::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04), transparent 70%);
  border-radius: 50%;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.progress-card {
  background: linear-gradient(135deg, var(--dark-surface), var(--dark-card));
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.progress-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 215, 0, 0.06);
}

.progress-icon {
  font-size: 3rem;
  margin-bottom: 18px;
}

.progress-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.progress-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 120px 0;
  background: var(--dark-bg);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--dark-card);
}

.faq-item:hover { border-color: rgba(255, 215, 0, 0.2); }

.faq-item.active { border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 20px rgba(255, 215, 0, 0.05); }

.faq-question {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-bright);
  background: transparent;
  transition: var(--transition);
  width: 100%;
  border: none;
  text-align: left;
  font-family: inherit;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: var(--text-dim);
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  color: var(--dark-bg);
  border-color: transparent;
  transform: rotate(45deg);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== CTA / DOWNLOAD SECTION ===== */
.cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 215, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta h2 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta p {
  color: var(--text-dim);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.btn-glow {
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  color: var(--dark-bg);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.1);
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.cta-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-card);
  color: var(--text-dim);
  padding: 70px 0 30px;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
  color: var(--text-dim);
}

.footer-brand .nav-brand { margin-bottom: 8px; }

.footer-links h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer-links ul li a {
  font-size: 0.9rem;
  color: var(--text-dim);
}

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

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

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

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 60px;
  background: var(--dark-bg);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--dark-card);
  padding: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--dark-border);
}

.legal-content h1 {
  font-size: 2rem;
  color: var(--white);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 14px;
  margin-bottom: 10px;
}

.legal-content .update-date {
  color: var(--text-dim);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 28px;
  display: block;
}

.legal-content h2 {
  color: var(--white);
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 10px;
}

.legal-content h3 {
  color: var(--text-mid);
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.legal-content ul {
  padding-left: 24px;
  list-style: disc;
  margin-bottom: 14px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--text-mid);
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: var(--text-mid);
}

.legal-content .highlight {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.15);
  padding: 18px;
  border-left: 4px solid var(--gold);
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-content .highlight strong { color: var(--gold); }
.legal-content .highlight li { color: var(--text-mid); }

.legal-content .warning {
  background: rgba(255, 45, 117, 0.08);
  border: 1px solid rgba(255, 45, 117, 0.15);
  padding: 18px;
  border-left: 4px solid var(--neon-pink);
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-content .warning strong { color: var(--neon-pink); }
.legal-content .warning li { color: var(--text-mid); }

.legal-content .contact-info {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-top: 36px;
}

.legal-content .contact-info a {
  color: var(--neon-blue);
  text-decoration: underline;
}

.legal-content .contact-info a:hover { color: var(--gold); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.2rem; }
  .hero-image-wrapper { width: 340px; height: 340px; }
  .features-grid, .modes-grid, .boards-gallery, .progress-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-card);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: all 0.4s ease;
    border-left: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active { right: 0; }

  .hamburger { display: flex; }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 { font-size: 2.5rem; }

  .hero-subtitle { margin: 0 auto 36px; }

  .hero-buttons { justify-content: center; }

  .hero-image-wrapper { width: 280px; height: 280px; }

  .section-title h2 { font-size: 2.2rem; }

  .features-grid, .modes-grid, .boards-gallery, .progress-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid { gap: 30px; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .cta h2 { font-size: 2.2rem; }

  .cta-stats { flex-direction: column; gap: 10px; }

  .legal-content { padding: 26px; margin: 0 12px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .btn { padding: 14px 28px; font-size: 0.85rem; }
  .hero-image-wrapper { width: 240px; height: 240px; }
  .section-title h2 { font-size: 1.8rem; }
}
