/* ============================================
   BDG Win — Premium Dark Theme + Yellow Glow
   ============================================ */

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

/* === CSS Custom Properties === */
:root {
  --bg-primary: #06060e;
  --bg-secondary: #0d0d1a;
  --bg-card: #111128;
  --bg-card-hover: #1a1a3a;
  --bg-navbar: rgba(10, 10, 20, 0.75);

  --yellow-primary: #FFD700;
  --yellow-secondary: #FFC107;
  --yellow-glow: rgba(255, 215, 0, 0.35);
  --yellow-subtle: rgba(255, 215, 0, 0.08);
  --yellow-border: rgba(255, 215, 0, 0.15);
  --yellow-text: #FFEB3B;
  --orange-accent: #FFA500;

  --text-primary: #ffffff;
  --text-secondary: #a0a0c0;
  --text-muted: #6a6a8e;

  --border-default: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 215, 0, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;

  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-yellow: 0 0 40px rgba(255, 215, 0, 0.15);
  --shadow-glow: 0 0 80px rgba(255, 215, 0, 0.1);

  --transition-fast: 0.2s ease;
  --transition-medium: 0.35s ease;
  --transition-slow: 0.5s ease;

  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;

  --container-max: 1200px;
  --navbar-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: var(--yellow-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--yellow-text);
}

ul, ol {
  list-style: none;
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--yellow-primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* === CTA Button === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  color: #111;
  box-shadow: 0 4px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.45);
  color: #000;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: btnShimmer 3s infinite;
}

@keyframes btnShimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.btn-outline {
  background: transparent;
  color: var(--yellow-primary);
  border: 2px solid var(--yellow-border);
}

.btn-outline:hover {
  background: var(--yellow-subtle);
  border-color: var(--yellow-primary);
  transform: translateY(-2px);
  color: var(--yellow-primary);
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: var(--bg-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-default);
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: var(--yellow-border);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.nav-brand .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #111;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.nav-brand span {
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow-primary);
  transition: width var(--transition-medium);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

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

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-height) + 40px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes heroGlow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--yellow-primary);
  font-weight: 600;
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow-primary);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .glow-text {
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent), var(--yellow-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

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

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

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow-primary);
  line-height: 1;
  margin-bottom: 4px;
}

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

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--yellow-border);
  box-shadow: var(--shadow-yellow);
  animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--yellow-primary), transparent, var(--orange-accent));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.hero-game-showcase {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--yellow-border);
  box-shadow: var(--shadow-yellow);
  animation: floatUp 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-game-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-primary), var(--orange-accent), var(--yellow-primary));
  background-size: 200% auto;
  animation: textShimmer 3s linear infinite;
}

.game-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.game-mini-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  border: 1px solid var(--border-default);
  transition: all var(--transition-medium);
  cursor: pointer;
}

.game-mini-card:hover {
  border-color: var(--yellow-border);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.1);
}

.game-mini-card .game-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.game-mini-card .game-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Particle Canvas */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Grid Background */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* === Ambassadors Section === */
.ambassadors {
  position: relative;
}

.ambassadors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ambassador-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-default);
  background: var(--bg-card);
  transition: all var(--transition-medium);
  cursor: pointer;
  position: relative;
}

.ambassador-card:hover {
  transform: translateY(-8px);
  border-color: var(--yellow-border);
  box-shadow: var(--shadow-yellow);
}

.ambassador-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.ambassador-card:hover img {
  transform: scale(1.05);
}

/* === Features Section === */
.features {
  background: var(--bg-secondary);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-default);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--transition-medium);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

/* === Games Section === */
.games {
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 1200px;
}

.games-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.game-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-default);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.game-tab:hover {
  border-color: var(--yellow-border);
  color: var(--text-primary);
}

.game-tab.active {
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  color: #111;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.games-panel {
  display: none;
}

.games-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

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

.game-card:hover {
  border-color: var(--yellow-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-yellow);
}

.game-card-image {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.game-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-card));
}

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

.game-card-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

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

.game-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yellow-subtle);
  color: var(--yellow-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  margin-top: 10px;
}

/* === How to Play Section === */
.how-to-play {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow-primary), var(--orange-accent));
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--bg-card);
  border: 2px solid var(--yellow-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow-primary);
  transition: all var(--transition-medium);
}

.step-card:hover .step-number {
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  color: #111;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  transform: scale(1.1);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === Download Section === */
.download-section {
  position: relative;
  overflow: hidden;
}

.download-wrapper {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
  border: 1px solid var(--yellow-border);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.download-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  animation: heroGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.download-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.download-features {
  margin: 24px 0 32px;
}

.download-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--text-secondary);
}

.download-features li .check-icon {
  width: 24px;
  height: 24px;
  background: var(--yellow-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.download-visual {
  text-align: center;
  position: relative;
}

.phone-mockup {
  width: 260px;
  height: 500px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 36px;
  border: 3px solid var(--yellow-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-yellow);
  animation: floatUp 6s ease-in-out infinite;
}

.phone-mockup .phone-screen {
  padding: 40px 20px 20px;
  text-align: center;
}

.phone-mockup .phone-notch {
  width: 120px;
  height: 24px;
  background: var(--bg-primary);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.phone-mockup .app-icon {
  width: 80px;
  height: 80px;
  margin: 40px auto 20px;
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #111;
  font-weight: 900;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.phone-mockup .app-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.phone-mockup .app-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === Bonuses Section === */
.bonuses {
  background: var(--bg-secondary);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border-default);
  transition: all var(--transition-medium);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
  transition: all 0.6s ease;
  pointer-events: none;
}

.bonus-card:hover::before {
  top: -50%;
  left: -50%;
}

.bonus-card:hover {
  border-color: var(--yellow-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-yellow);
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.bonus-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-amount {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
}

/* === Testimonials === */
.testimonials {
  position: relative;
}

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

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-default);
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  border-color: var(--yellow-border);
  box-shadow: var(--shadow-yellow);
}

.testimonial-stars {
  color: var(--yellow-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--yellow-primary), var(--orange-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111;
  font-size: 1rem;
}

.testimonial-author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* === FAQ Section === */
.faq {
  background: var(--bg-secondary);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

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

.faq-item {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.faq-item:hover {
  border-color: var(--yellow-border);
}

.faq-item.active {
  border-color: var(--yellow-primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
}

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

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

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow-subtle);
  color: var(--yellow-primary);
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: all var(--transition-medium);
}

.faq-item.active .faq-icon {
  background: var(--yellow-primary);
  color: #111;
  transform: rotate(45deg);
}

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

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* === Footer === */
.footer {
  background: var(--bg-primary);
  padding: 60px 0 0;
  border-top: 1px solid var(--border-default);
}

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

.footer-brand {
  max-width: 300px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition-medium);
}

.footer-social a:hover {
  background: var(--yellow-primary);
  color: #111;
  border-color: var(--yellow-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 1rem;
}

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

.footer-column ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--yellow-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-default);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--yellow-primary);
}

/* === Scroll Reveal Animation === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-timeline::before {
    display: none;
  }

  .download-wrapper {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .download-visual {
    order: -1;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-default);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links.active + .nav-cta,
  .nav-links.active ~ .nav-cta {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 220px;
    z-index: 1000;
  }

  .nav-links.active + .nav-cta .btn,
  .nav-links.active ~ .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  }

  .hamburger {
    display: flex;
  }

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

  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-stats {
    gap: 24px;
    justify-content: center;
  }

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

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .game-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

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

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

  .download-wrapper {
    padding: 28px;
  }

  .phone-mockup {
    width: 200px;
    height: 380px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .games-tabs {
    gap: 8px;
  }

  .game-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .game-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Overlay for mobile nav === */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* === Marquee for trusted banner === */
.trust-banner {
  background: linear-gradient(90deg, var(--yellow-primary), var(--orange-accent));
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.trust-banner .marquee-content {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
  gap: 48px;
}

.trust-banner .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111;
  font-size: 0.9rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Video Guides Section === */
.video-guides {
  position: relative;
  background: var(--bg-card);
}

.video-guides-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.video-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--yellow-primary);
  padding: 32px;
  transition: all var(--transition-medium);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-subtle);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.video-card-info {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.video-card-embed {
  flex: 1.5;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.video-card-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px) {
  .video-card {
    flex-direction: column-reverse;
    padding: 24px;
    gap: 24px;
  }
}

.video-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yellow-subtle);
  color: var(--yellow-primary);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.video-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.video-card-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* === Reddit Content Section === */
.reddit-content {
  background: var(--bg-card);
}

.reddit-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 900px;
  margin: 40px auto 0;
  box-shadow: var(--shadow-dark);
}

.reddit-body p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.reddit-body p b, .reddit-body p strong {
  color: var(--yellow-primary);
}

.reddit-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
  text-align: center;
}

.reddit-source-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
}

.reddit-source-link:hover {
  color: #FF4500; /* Reddit Orange */
}

@media (max-width: 768px) {
  .reddit-card {
    padding: 24px;
  }
}

/* === Floating Telegram Button === */
.telegram-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #0088cc, #00a2ff);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.telegram-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6);
  color: white;
}

.telegram-float-btn .telegram-float-text {
  position: absolute;
  right: 70px;
  background: #0088cc;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.telegram-float-btn:hover .telegram-float-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .telegram-float-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  /* Hide telegram button when menu is open to avoid overlap */
  .nav-overlay.active ~ .telegram-float-btn {
    display: none;
  }
}
