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

:root {
  --clr-bg-deep: #07080f;
  --clr-bg-card: rgba(255,255,255,0.04);
  --clr-bg-card-hover: rgba(255,255,255,0.08);
  --clr-surface: #0d1117;
  --clr-surface-2: #111827;
  --clr-neon-red: #ff2d55;
  --clr-neon-pink: #ff6b9d;
  --clr-neon-blue: #3b82f6;
  --clr-neon-cyan: #06b6d4;
  --clr-neon-gold: #f59e0b;
  --clr-neon-green: #10b981;
  --clr-text-primary: #f1f5f9;
  --clr-text-secondary: #94a3b8;
  --clr-text-muted: #64748b;
  --clr-border: rgba(255,255,255,0.08);
  --clr-border-glow: rgba(255,45,85,0.3);
  --grad-hero: linear-gradient(135deg, #07080f 0%, #1a0a1e 40%, #0a0f1e 100%);
  --grad-red: linear-gradient(135deg, #ff2d55, #ff6b9d);
  --grad-blue: linear-gradient(135deg, #3b82f6, #06b6d4);
  --grad-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
  --grad-card: linear-gradient(135deg, rgba(255,45,85,0.08), rgba(59,130,246,0.08));
  --shadow-neon-red: 0 0 20px rgba(255,45,85,0.4), 0 0 60px rgba(255,45,85,0.15);
  --shadow-neon-blue: 0 0 20px rgba(59,130,246,0.4), 0 0 60px rgba(59,130,246,0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg-deep);
  color: var(--clr-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--clr-neon-red); border-radius: var(--radius-pill); }

/* ===== FOCUS ===== */
:focus-visible { outline: 2px solid var(--clr-neon-red); outline-offset: 3px; border-radius: 4px; }

/* ===== UTILITY ===== */
.site-Bjw9Nx-container { max-width: 1100px; margin: 0 auto; padding: 0 var(--space-md); }
.site-Bjw9Nx-section { padding: var(--space-2xl) 0; }
.site-Bjw9Nx-section--alt { background: var(--clr-surface); }
.site-Bjw9Nx-section--alt2 { background: var(--clr-surface-2); }

.site-Bjw9Nx-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,45,85,0.12); border: 1px solid rgba(255,45,85,0.25);
  color: var(--clr-neon-pink); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.site-Bjw9Nx-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.site-Bjw9Nx-section-title span {
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-Bjw9Nx-section-lead {
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.site-Bjw9Nx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: var(--radius-pill);
  border: none; cursor: pointer; text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  position: relative; overflow: hidden; white-space: nowrap;
}

.site-Bjw9Nx-btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background var(--transition-fast);
}

.site-Bjw9Nx-btn:hover::after { background: rgba(255,255,255,0.08); }
.site-Bjw9Nx-btn:hover { transform: translateY(-2px); }
.site-Bjw9Nx-btn:active { transform: translateY(0); }

.site-Bjw9Nx-btn--primary {
  background: var(--grad-red);
  color: #fff;
  box-shadow: var(--shadow-neon-red);
}
.site-Bjw9Nx-btn--primary:hover { box-shadow: 0 0 30px rgba(255,45,85,0.6), 0 0 80px rgba(255,45,85,0.2); }

.site-Bjw9Nx-btn--secondary {
  background: transparent;
  color: var(--clr-text-primary);
  border: 1.5px solid var(--clr-border);
}
.site-Bjw9Nx-btn--secondary:hover { border-color: var(--clr-neon-red); color: var(--clr-neon-pink); }

.site-Bjw9Nx-btn--blue {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-neon-blue);
}

.site-Bjw9Nx-btn--lg { padding: 18px 44px; font-size: 1.1rem; }

/* ===== FLOATING PARTICLES ===== */
.site-Bjw9Nx-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}

.site-Bjw9Nx-particle {
  position: absolute; border-radius: 50%;
  animation: site-Bjw9Nx-float linear infinite;
  opacity: 0;
}

@keyframes site-Bjw9Nx-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1.2); opacity: 0; }
}

/* ===== HEADER ===== */
.site-Bjw9Nx-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7,8,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition-med);
}

.site-Bjw9Nx-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: var(--space-md);
}

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

.site-Bjw9Nx-logo__balloon {
  width: 38px; height: 38px;
  background: var(--grad-red);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: var(--shadow-neon-red);
  animation: site-Bjw9Nx-bob 3s ease-in-out infinite;
}

.site-Bjw9Nx-logo__balloon::after {
  content: '';
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 10px;
  background: var(--clr-neon-pink);
}

@keyframes site-Bjw9Nx-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.site-Bjw9Nx-logo__text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  background: var(--grad-red);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.site-Bjw9Nx-nav { display: none; }

.site-Bjw9Nx-nav__list {
  display: flex; align-items: center; gap: var(--space-md);
  list-style: none;
}

.site-Bjw9Nx-nav__link {
  color: var(--clr-text-secondary); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition-fast);
}
.site-Bjw9Nx-nav__link:hover { color: var(--clr-neon-pink); }

.site-Bjw9Nx-header__cta { flex-shrink: 0; }

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

.site-Bjw9Nx-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--clr-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.site-Bjw9Nx-hamburger.--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-Bjw9Nx-hamburger.--open span:nth-child(2) { opacity: 0; }
.site-Bjw9Nx-hamburger.--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-Bjw9Nx-mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(7,8,15,0.97); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-lg);
  padding: var(--space-xl);
}

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

.site-Bjw9Nx-mobile-nav__link {
  color: var(--clr-text-primary); text-decoration: none;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  transition: color var(--transition-fast);
}
.site-Bjw9Nx-mobile-nav__link:hover { color: var(--clr-neon-pink); }

@media (min-width: 768px) {
  .site-Bjw9Nx-nav { display: flex; }
  .site-Bjw9Nx-hamburger { display: none; }
}

/* ===== STICKY CTA ===== */
.site-Bjw9Nx-sticky-cta {
  position: fixed; bottom: var(--space-md); left: 50%; transform: translateX(-50%);
  z-index: 900; display: flex; gap: var(--space-sm);
  background: rgba(7,8,15,0.9); backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border-glow);
  border-radius: var(--radius-pill); padding: 8px 8px 8px 20px;
  align-items: center; gap: var(--space-sm);
  box-shadow: 0 8px 40px rgba(255,45,85,0.2);
  opacity: 0; transition: opacity var(--transition-med);
  pointer-events: none;
}

.site-Bjw9Nx-sticky-cta.--visible { opacity: 1; pointer-events: all; }

.site-Bjw9Nx-sticky-cta__text {
  font-size: 0.85rem; font-weight: 600; color: var(--clr-text-secondary);
  white-space: nowrap;
}

/* ===== HERO ===== */
.site-Bjw9Nx-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--grad-hero);
  overflow: hidden; padding-top: 68px;
}

.site-Bjw9Nx-hero__glow {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}

.site-Bjw9Nx-hero__glow--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,45,85,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: site-Bjw9Nx-pulse 4s ease-in-out infinite;
}

.site-Bjw9Nx-hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  bottom: -50px; left: -80px;
  animation: site-Bjw9Nx-pulse 5s ease-in-out infinite reverse;
}

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

.site-Bjw9Nx-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-xl); align-items: center;
  padding: var(--space-2xl) 0;
}

.site-Bjw9Nx-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,85,0.1); border: 1px solid rgba(255,45,85,0.3);
  color: var(--clr-neon-pink); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.site-Bjw9Nx-hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-neon-green);
  box-shadow: 0 0 8px var(--clr-neon-green);
  animation: site-Bjw9Nx-blink 1.5s ease-in-out infinite;
}

@keyframes site-Bjw9Nx-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.site-Bjw9Nx-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: var(--space-md);
}

.site-Bjw9Nx-hero__title-accent {
  background: var(--grad-red);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}

.site-Bjw9Nx-hero__title-sub {
  background: var(--grad-blue);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.site-Bjw9Nx-hero__desc {
  font-size: 1.1rem; color: var(--clr-text-secondary);
  max-width: 560px; margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.site-Bjw9Nx-hero__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.site-Bjw9Nx-hero__stats {
  display: flex; flex-wrap: wrap; gap: var(--space-md);
}

.site-Bjw9Nx-hero__stat {
  display: flex; flex-direction: column;
}

.site-Bjw9Nx-hero__stat-value {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  background: var(--grad-red);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.site-Bjw9Nx-hero__stat-label {
  font-size: 0.8rem; color: var(--clr-text-muted); font-weight: 500;
}

.site-Bjw9Nx-hero__visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.site-Bjw9Nx-balloon-visual {
  position: relative; width: 280px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}

.site-Bjw9Nx-balloon-main {
  width: 200px; height: 240px;
  background: var(--grad-red);
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  position: relative;
  box-shadow: var(--shadow-neon-red), inset 0 -20px 40px rgba(0,0,0,0.2);
  animation: site-Bjw9Nx-balloon-float 4s ease-in-out infinite;
}

.site-Bjw9Nx-balloon-main::before {
  content: '';
  position: absolute; top: 20%; left: 20%;
  width: 30%; height: 25%;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.site-Bjw9Nx-balloon-main::after {
  content: '';
  position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #ff2d55;
}

.site-Bjw9Nx-balloon-string {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 80px;
  background: linear-gradient(to bottom, var(--clr-neon-pink), transparent);
}

.site-Bjw9Nx-balloon-multiplier {
  position: absolute; top: 20px; right: -10px;
  background: var(--grad-gold);
  color: #000; font-family: var(--font-display);
  font-weight: 900; font-size: 1.4rem;
  padding: 8px 16px; border-radius: var(--radius-md);
  box-shadow: 0 0 20px rgba(245,158,11,0.5);
  animation: site-Bjw9Nx-counter-pop 2s ease-in-out infinite;
}

@keyframes site-Bjw9Nx-counter-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes site-Bjw9Nx-balloon-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.site-Bjw9Nx-orbit {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(255,45,85,0.2);
  animation: site-Bjw9Nx-spin linear infinite;
}

.site-Bjw9Nx-orbit--1 { width: 300px; height: 300px; animation-duration: 20s; }
.site-Bjw9Nx-orbit--2 { width: 380px; height: 380px; animation-duration: 30s; animation-direction: reverse; }

@keyframes site-Bjw9Nx-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.site-Bjw9Nx-orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-neon-red); top: -4px; left: 50%;
  box-shadow: 0 0 10px var(--clr-neon-red);
}

@media (min-width: 1024px) {
  .site-Bjw9Nx-hero__inner { grid-template-columns: 1fr 1fr; }
}

/* ===== OVERVIEW / TRUST BADGES ===== */
.site-Bjw9Nx-overview { padding: var(--space-xl) 0; }

.site-Bjw9Nx-trust-bar {
  display: flex; flex-wrap: wrap; gap: var(--space-md);
  justify-content: center; align-items: center;
  padding: var(--space-lg);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.site-Bjw9Nx-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--clr-text-secondary);
}

.site-Bjw9Nx-trust-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.site-Bjw9Nx-trust-icon--green { background: rgba(16,185,129,0.15); color: var(--clr-neon-green); }
.site-Bjw9Nx-trust-icon--blue { background: rgba(59,130,246,0.15); color: var(--clr-neon-blue); }
.site-Bjw9Nx-trust-icon--gold { background: rgba(245,158,11,0.15); color: var(--clr-neon-gold); }
.site-Bjw9Nx-trust-icon--red { background: rgba(255,45,85,0.15); color: var(--clr-neon-red); }

.site-Bjw9Nx-trust-divider {
  width: 1px; height: 30px; background: var(--clr-border);
  display: none;
}

@media (min-width: 768px) { .site-Bjw9Nx-trust-divider { display: block; } }

/* ===== WHAT IS BALLOON ===== */
.site-Bjw9Nx-what-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-xl); align-items: center;
}

.site-Bjw9Nx-what-content p { color: var(--clr-text-secondary); margin-bottom: var(--space-sm); }

.site-Bjw9Nx-what-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin: var(--space-md) 0;
}

.site-Bjw9Nx-what-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--clr-text-secondary);
}

.site-Bjw9Nx-what-list li::before {
  content: '🎈'; flex-shrink: 0; margin-top: 2px;
}

.site-Bjw9Nx-what-visual {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex; flex-direction: column; gap: var(--space-md);
  backdrop-filter: blur(10px);
}

.site-Bjw9Nx-game-screen {
  background: rgba(0,0,0,0.4); border-radius: var(--radius-md);
  padding: var(--space-lg); text-align: center;
  border: 1px solid var(--clr-border);
  position: relative; overflow: hidden;
}

.site-Bjw9Nx-game-screen__mult {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: site-Bjw9Nx-counter-pop 1.5s ease-in-out infinite;
}

.site-Bjw9Nx-game-screen__label {
  font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 4px;
}

.site-Bjw9Nx-game-screen__bar {
  margin-top: var(--space-sm);
  height: 6px; background: rgba(255,255,255,0.1); border-radius: var(--radius-pill);
  overflow: hidden;
}

.site-Bjw9Nx-game-screen__bar-fill {
  height: 100%; width: 65%;
  background: var(--grad-red);
  border-radius: var(--radius-pill);
  animation: site-Bjw9Nx-bar-grow 3s ease-in-out infinite;
}

@keyframes site-Bjw9Nx-bar-grow {
  0% { width: 5%; }
  70% { width: 75%; }
  100% { width: 5%; }
}

.site-Bjw9Nx-game-info-row {
  display: flex; justify-content: space-between; gap: var(--space-sm);
}

.site-Bjw9Nx-game-info-item {
  flex: 1; background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm); padding: 12px;
  text-align: center; border: 1px solid var(--clr-border);
}

.site-Bjw9Nx-game-info-item strong {
  display: block; font-family: var(--font-display); font-size: 1.1rem;
  color: var(--clr-neon-green);
}

.site-Bjw9Nx-game-info-item span { font-size: 0.75rem; color: var(--clr-text-muted); }

@media (min-width: 1024px) {
  .site-Bjw9Nx-what-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== HOW IT WORKS ===== */
.site-Bjw9Nx-steps {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-md); margin-top: var(--space-xl);
}

.site-Bjw9Nx-step {
  display: flex; gap: var(--space-md); align-items: flex-start;
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  transition: border-color var(--transition-med), background var(--transition-med);
}

.site-Bjw9Nx-step:hover {
  border-color: var(--clr-border-glow);
  background: var(--clr-bg-card-hover);
}

.site-Bjw9Nx-step__num {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--grad-red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.3rem;
  color: #fff; box-shadow: var(--shadow-neon-red);
}

.site-Bjw9Nx-step__content h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 6px;
}

.site-Bjw9Nx-step__content p { font-size: 0.9rem; color: var(--clr-text-secondary); }

@media (min-width: 768px) {
  .site-Bjw9Nx-steps { grid-template-columns: 1fr 1fr; }
}

/* ===== HOW TO PLAY ===== */
.site-Bjw9Nx-play-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-xl); align-items: start;
}

.site-Bjw9Nx-play-steps { display: flex; flex-direction: column; gap: var(--space-md); }

.site-Bjw9Nx-play-step {
  display: flex; gap: var(--space-md);
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); padding: var(--space-md);
  transition: border-color var(--transition-fast);
}

.site-Bjw9Nx-play-step:hover { border-color: rgba(59,130,246,0.4); }

.site-Bjw9Nx-play-step__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.site-Bjw9Nx-play-step__text h4 {
  font-weight: 700; font-size: 0.95rem; margin-bottom: 4px;
}

.site-Bjw9Nx-play-step__text p { font-size: 0.85rem; color: var(--clr-text-secondary); }

.site-Bjw9Nx-play-tips {
  background: var(--grad-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl); padding: var(--space-xl);
}

.site-Bjw9Nx-play-tips h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  margin-bottom: var(--space-md);
}

.site-Bjw9Nx-tip-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.site-Bjw9Nx-tip-list li {
  display: flex; gap: 10px; font-size: 0.9rem; color: var(--clr-text-secondary);
}

.site-Bjw9Nx-tip-list li::before { content: '💡'; flex-shrink: 0; }

@media (min-width: 1024px) {
  .site-Bjw9Nx-play-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== MULTIPLIERS ===== */
.site-Bjw9Nx-mult-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-lg); margin-top: var(--space-xl);
}

.site-Bjw9Nx-mult-card {
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  text-align: center; transition: transform var(--transition-fast), border-color var(--transition-fast);
  cursor: default;
}

.site-Bjw9Nx-mult-card:hover { transform: translateY(-4px); border-color: var(--clr-border-glow); }

.site-Bjw9Nx-mult-card__value {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  margin-bottom: 8px;
}

.site-Bjw9Nx-mult-card__value--green { color: var(--clr-neon-green); text-shadow: 0 0 20px rgba(16,185,129,0.4); }
.site-Bjw9Nx-mult-card__value--blue { color: var(--clr-neon-blue); text-shadow: 0 0 20px rgba(59,130,246,0.4); }
.site-Bjw9Nx-mult-card__value--gold { color: var(--clr-neon-gold); text-shadow: 0 0 20px rgba(245,158,11,0.4); }
.site-Bjw9Nx-mult-card__value--red { color: var(--clr-neon-red); text-shadow: 0 0 20px rgba(255,45,85,0.4); }

.site-Bjw9Nx-mult-card__label { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.site-Bjw9Nx-mult-card__desc { font-size: 0.82rem; color: var(--clr-text-muted); }

.site-Bjw9Nx-mult-table-wrap { overflow-x: auto; margin-top: var(--space-xl); }

.site-Bjw9Nx-mult-table {
  min-width: 600px; width: 100%; max-width: 1024px;
  border-collapse: collapse; font-size: 0.9rem;
}

.site-Bjw9Nx-mult-table th {
  background: rgba(255,45,85,0.1); color: var(--clr-neon-pink);
  font-weight: 700; padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.site-Bjw9Nx-mult-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-secondary);
}

.site-Bjw9Nx-mult-table tr:hover td { background: rgba(255,255,255,0.02); }

.site-Bjw9Nx-mult-table td:first-child { font-weight: 700; color: var(--clr-text-primary); }

@media (min-width: 768px) {
  .site-Bjw9Nx-mult-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .site-Bjw9Nx-mult-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== DEMO / FREE MODE ===== */
.site-Bjw9Nx-demo-inner {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-xl); align-items: center;
}

.site-Bjw9Nx-demo-card {
  background: var(--grad-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl); padding: var(--space-xl);
  text-align: center; cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.site-Bjw9Nx-demo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255,45,85,0.2);
}

.site-Bjw9Nx-demo-card__icon {
  font-size: 4rem; margin-bottom: var(--space-md);
  animation: site-Bjw9Nx-balloon-float 3s ease-in-out infinite;
  display: block;
}

.site-Bjw9Nx-demo-card__title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  margin-bottom: var(--space-sm);
}

.site-Bjw9Nx-demo-card__desc {
  color: var(--clr-text-secondary); font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.site-Bjw9Nx-demo-features { display: flex; flex-direction: column; gap: var(--space-md); }

.site-Bjw9Nx-demo-feature {
  display: flex; gap: var(--space-md); align-items: flex-start;
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); padding: var(--space-md);
}

.site-Bjw9Nx-demo-feature__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-sm); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}

.site-Bjw9Nx-demo-feature__text h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.site-Bjw9Nx-demo-feature__text p { font-size: 0.85rem; color: var(--clr-text-secondary); }

@media (min-width: 1024px) {
  .site-Bjw9Nx-demo-inner { grid-template-columns: 1fr 1fr; }
}

/* ===== APP / MOBILE ===== */
.site-Bjw9Nx-app-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-xl); align-items: center;
}

.site-Bjw9Nx-app-mockup {
  display: flex; justify-content: center;
}

.site-Bjw9Nx-phone {
  width: 220px; height: 420px;
  background: var(--clr-surface-2); border-radius: 36px;
  border: 2px solid var(--clr-border);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(255,45,85,0.1);
}

.site-Bjw9Nx-phone__notch {
  width: 80px; height: 24px;
  background: var(--clr-bg-deep); border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.site-Bjw9Nx-phone__screen {
  padding: var(--space-sm);
  display: flex; flex-direction: column; gap: 8px;
}

.site-Bjw9Nx-phone__game-area {
  background: rgba(0,0,0,0.5); border-radius: var(--radius-md);
  height: 160px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; border: 1px solid var(--clr-border);
}

.site-Bjw9Nx-phone__mult {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.site-Bjw9Nx-phone__balloon-mini {
  width: 50px; height: 60px;
  background: var(--grad-red); border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  box-shadow: 0 0 15px rgba(255,45,85,0.5);
  animation: site-Bjw9Nx-balloon-float 2s ease-in-out infinite;
}

.site-Bjw9Nx-phone__btn {
  background: var(--grad-red); border-radius: var(--radius-pill);
  padding: 10px; text-align: center;
  font-size: 0.75rem; font-weight: 700; color: #fff;
}

.site-Bjw9Nx-app-features { display: flex; flex-direction: column; gap: var(--space-md); }

.site-Bjw9Nx-app-feature {
  display: flex; gap: var(--space-md); align-items: center;
  padding: var(--space-md);
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.site-Bjw9Nx-app-feature:hover { border-color: rgba(59,130,246,0.3); }

.site-Bjw9Nx-app-feature__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(59,130,246,0.1);
}

.site-Bjw9Nx-app-feature__text h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.site-Bjw9Nx-app-feature__text p { font-size: 0.82rem; color: var(--clr-text-secondary); }

@media (min-width: 1024px) {
  .site-Bjw9Nx-app-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== STRATEGIES ===== */
.site-Bjw9Nx-strat-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-md); margin-top: var(--space-xl);
}

.site-Bjw9Nx-strat-card {
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.site-Bjw9Nx-strat-card:hover { transform: translateY(-3px); border-color: var(--clr-border-glow); }

.site-Bjw9Nx-strat-card__header {
  display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-sm);
}

.site-Bjw9Nx-strat-card__emoji { font-size: 1.8rem; }

.site-Bjw9Nx-strat-card__title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}

.site-Bjw9Nx-strat-card__level {
  margin-left: auto; font-size: 0.75rem; font-weight: 600;
  padding: 3px 10px; border-radius: var(--radius-pill);
}

.site-Bjw9Nx-strat-card__level--beginner { background: rgba(16,185,129,0.15); color: var(--clr-neon-green); }
.site-Bjw9Nx-strat-card__level--intermediate { background: rgba(245,158,11,0.15); color: var(--clr-neon-gold); }
.site-Bjw9Nx-strat-card__level--advanced { background: rgba(255,45,85,0.15); color: var(--clr-neon-red); }

.site-Bjw9Nx-strat-card p { font-size: 0.9rem; color: var(--clr-text-secondary); }

.site-Bjw9Nx-strat-disclaimer {
  margin-top: var(--space-xl);
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md); padding: var(--space-md);
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.85rem; color: var(--clr-text-secondary);
}

.site-Bjw9Nx-strat-disclaimer::before { content: '⚠️'; flex-shrink: 0; font-size: 1.1rem; }

@media (min-width: 768px) {
  .site-Bjw9Nx-strat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .site-Bjw9Nx-strat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== PROS & CONS ===== */
.site-Bjw9Nx-pros-cons {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-lg); margin-top: var(--space-xl);
}

.site-Bjw9Nx-pros-box, .site-Bjw9Nx-cons-box {
  border-radius: var(--radius-lg); padding: var(--space-xl);
}

.site-Bjw9Nx-pros-box {
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.2);
}

.site-Bjw9Nx-cons-box {
  background: rgba(255,45,85,0.06); border: 1px solid rgba(255,45,85,0.2);
}

.site-Bjw9Nx-pros-box h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--clr-neon-green); margin-bottom: var(--space-md);
  display: flex; align-items: center; gap: 8px;
}

.site-Bjw9Nx-cons-box h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--clr-neon-red); margin-bottom: var(--space-md);
  display: flex; align-items: center; gap: 8px;
}

.site-Bjw9Nx-check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.site-Bjw9Nx-check-list li {
  display: flex; gap: 10px; font-size: 0.9rem; color: var(--clr-text-secondary);
}

.site-Bjw9Nx-check-list--pro li::before { content: '✅'; flex-shrink: 0; }
.site-Bjw9Nx-check-list--con li::before { content: '❌'; flex-shrink: 0; }

@media (min-width: 768px) {
  .site-Bjw9Nx-pros-cons { grid-template-columns: 1fr 1fr; }
}

/* ===== FAQ ===== */
.site-Bjw9Nx-faq-list { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-xl); }

.site-Bjw9Nx-faq-item {
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color var(--transition-fast);
}

.site-Bjw9Nx-faq-item.--open { border-color: var(--clr-border-glow); }

.site-Bjw9Nx-faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); padding: var(--space-md) var(--space-lg);
  background: none; border: none; cursor: pointer; text-align: left;
  color: var(--clr-text-primary); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  transition: color var(--transition-fast);
}

.site-Bjw9Nx-faq-question:hover { color: var(--clr-neon-pink); }

.site-Bjw9Nx-faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform var(--transition-fast);
  margin-top: -4px;
}

.site-Bjw9Nx-faq-item.--open .site-Bjw9Nx-faq-chevron { transform: rotate(-135deg); margin-top: 4px; }

.site-Bjw9Nx-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--transition-med), padding var(--transition-med);
  padding: 0 var(--space-lg);
  font-size: 0.9rem; color: var(--clr-text-secondary); line-height: 1.7;
}

.site-Bjw9Nx-faq-item.--open .site-Bjw9Nx-faq-answer {
  max-height: 400px; padding: 0 var(--space-lg) var(--space-md);
}

/* ===== ABOUT / AUTHOR ===== */
.site-Bjw9Nx-about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-xl); align-items: start;
}

.site-Bjw9Nx-author-card {
  background: var(--grad-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl); padding: var(--space-xl);
  text-align: center;
}

.site-Bjw9Nx-author-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto var(--space-md);
  background: var(--grad-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-neon-red);
}

.site-Bjw9Nx-author-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  margin-bottom: 4px;
}

.site-Bjw9Nx-author-title {
  font-size: 0.85rem; color: var(--clr-neon-pink); font-weight: 600;
  margin-bottom: var(--space-md);
}

.site-Bjw9Nx-author-bio { font-size: 0.9rem; color: var(--clr-text-secondary); line-height: 1.7; }

.site-Bjw9Nx-author-badges {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: var(--space-md);
}

.site-Bjw9Nx-author-badge {
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06); border: 1px solid var(--clr-border);
  color: var(--clr-text-secondary);
}

.site-Bjw9Nx-about-content p { color: var(--clr-text-secondary); margin-bottom: var(--space-sm); font-size: 0.95rem; }

.site-Bjw9Nx-about-meta {
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); padding: var(--space-md);
  margin-top: var(--space-md);
  font-size: 0.82rem; color: var(--clr-text-muted);
  display: flex; flex-direction: column; gap: 6px;
}

.site-Bjw9Nx-about-meta strong { color: var(--clr-text-secondary); }

@media (min-width: 1024px) {
  .site-Bjw9Nx-about-grid { grid-template-columns: 1fr 2fr; }
}

/* ===== LEGAL ===== */
.site-Bjw9Nx-legal-box {
  background: rgba(245,158,11,0.05); border: 2px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-xl); padding: var(--space-xl);
}

.site-Bjw9Nx-legal-header {
  display: flex; align-items: center; gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.site-Bjw9Nx-legal-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(245,158,11,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}

.site-Bjw9Nx-legal-header h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--clr-neon-gold);
}

.site-Bjw9Nx-legal-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-md); margin-bottom: var(--space-lg);
}

.site-Bjw9Nx-legal-item {
  background: rgba(0,0,0,0.2); border-radius: var(--radius-md);
  padding: var(--space-md); border: 1px solid rgba(245,158,11,0.1);
}

.site-Bjw9Nx-legal-item h3 {
  font-size: 0.9rem; font-weight: 700; color: var(--clr-neon-gold);
  margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
}

.site-Bjw9Nx-legal-item p { font-size: 0.85rem; color: var(--clr-text-secondary); line-height: 1.6; }

.site-Bjw9Nx-legal-links {
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
  padding-top: var(--space-md); border-top: 1px solid rgba(245,158,11,0.15);
}

.site-Bjw9Nx-legal-link {
  color: var(--clr-neon-blue); text-decoration: none; font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.site-Bjw9Nx-legal-link:hover { color: var(--clr-neon-cyan); text-decoration: underline; }

.site-Bjw9Nx-age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,85,0.15); border: 2px solid var(--clr-neon-red);
  color: var(--clr-neon-red); font-family: var(--font-display);
  font-weight: 900; font-size: 1.1rem;
  padding: 8px 20px; border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .site-Bjw9Nx-legal-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CTA FINAL ===== */
.site-Bjw9Nx-cta-final {
  text-align: center; padding: var(--space-2xl) 0;
  position: relative; overflow: hidden;
}

.site-Bjw9Nx-cta-final__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,45,85,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.site-Bjw9Nx-cta-final__title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900; margin-bottom: var(--space-sm);
}

.site-Bjw9Nx-cta-final__desc {
  color: var(--clr-text-secondary); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto var(--space-xl);
}

.site-Bjw9Nx-cta-final__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
  justify-content: center; margin-bottom: var(--space-lg);
}

.site-Bjw9Nx-cta-final__note {
  font-size: 0.8rem; color: var(--clr-text-muted);
}

/* ===== FOOTER ===== */
.site-Bjw9Nx-footer {
  background: var(--clr-surface); border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.site-Bjw9Nx-footer__grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-xl); margin-bottom: var(--space-xl);
}

.site-Bjw9Nx-footer__brand p {
  font-size: 0.85rem; color: var(--clr-text-muted); margin-top: var(--space-sm);
  max-width: 280px; line-height: 1.6;
}

.site-Bjw9Nx-footer__col h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: var(--clr-text-primary); margin-bottom: var(--space-sm);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.site-Bjw9Nx-footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.site-Bjw9Nx-footer__links a {
  color: var(--clr-text-muted); text-decoration: none; font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.site-Bjw9Nx-footer__links a:hover { color: var(--clr-neon-pink); }

.site-Bjw9Nx-footer__bottom {
  border-top: 1px solid var(--clr-border); padding-top: var(--space-lg);
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
  justify-content: space-between; align-items: center;
}

.site-Bjw9Nx-footer__copy { font-size: 0.8rem; color: var(--clr-text-muted); }

.site-Bjw9Nx-footer__legal-links {
  display: flex; gap: var(--space-md); flex-wrap: wrap;
}

.site-Bjw9Nx-footer__legal-links a {
  font-size: 0.8rem; color: var(--clr-text-muted); text-decoration: none;
  transition: color var(--transition-fast);
}

.site-Bjw9Nx-footer__legal-links a:hover { color: var(--clr-neon-pink); }

.site-Bjw9Nx-footer__age {
  display: inline-flex; align-items: center;
  background: rgba(255,45,85,0.1); border: 1px solid rgba(255,45,85,0.2);
  color: var(--clr-neon-red); font-weight: 800; font-size: 0.8rem;
  padding: 3px 10px; border-radius: var(--radius-pill);
}

@media (min-width: 768px) {
  .site-Bjw9Nx-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ===== ANIMATIONS ===== */
.site-Bjw9Nx-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.site-Bjw9Nx-reveal--delay-1 { transition-delay: 0.1s; }
.site-Bjw9Nx-reveal--delay-2 { transition-delay: 0.2s; }
.site-Bjw9Nx-reveal--delay-3 { transition-delay: 0.3s; }

/* ===== COUNTER ===== */
.site-Bjw9Nx-counter { display: inline-block; }

.gen-hy7njz1v {
  color: rgb(241, 245, 249);
  font-family: Inter, sans-serif;
  font-size: 16px;
  padding: 40px 24px;
  box-sizing: border-box;
}

.gen-hy7njz1v .gen-strat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .gen-hy7njz1v .gen-strat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gen-hy7njz1v .gen-strat-grid {
    grid-template-columns: 1fr;
  }
}

.gen-hy7njz1v .site-Bjw9Nx-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.gen-hy7njz1v .site-Bjw9Nx-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.gen-hy7njz1v .site-Bjw9Nx-section-title span {
  color: #818cf8;
}

.gen-hy7njz1v .site-Bjw9Nx-section-lead {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(129, 140, 248, 0.35);
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card__emoji {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
  flex: 1;
  min-width: 80px;
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card__level {
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card__level--beginner {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card__level--intermediate {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card__level--advanced {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.gen-hy7njz1v .site-Bjw9Nx-strat-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
}

.gen-hy7njz1v .site-Bjw9Nx-strat-disclaimer {
  margin-top: 32px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.gen-hy7njz1v .site-Bjw9Nx-strat-disclaimer strong {
  color: #fbbf24;
}

.gen-ta8sz8fu {
  font-family: Inter, sans-serif;
  color: #f1f5f9;
  padding: 32px;
  box-sizing: border-box;
}

.gen-ta8sz8fu .gen-ta8sz8fu__pros-cons {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.gen-ta8sz8fu .gen-ta8sz8fu__box {
  flex: 1 1 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.1);
}

.gen-ta8sz8fu .site-Bjw9Nx-pros-box {
  border-top: 3px solid #22c55e;
}

.gen-ta8sz8fu .site-Bjw9Nx-cons-box {
  border-top: 3px solid #ef4444;
}

.gen-ta8sz8fu .site-Bjw9Nx-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.gen-ta8sz8fu .site-Bjw9Nx-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.gen-ta8sz8fu .site-Bjw9Nx-section-title span {
  color: #60a5fa;
}

.gen-ta8sz8fu .site-Bjw9Nx-section-lead {
  font-size: 1rem;
  color: rgba(241,245,249,0.75);
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
}

.gen-ta8sz8fu .gen-ta8sz8fu__box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gen-ta8sz8fu .site-Bjw9Nx-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gen-ta8sz8fu .site-Bjw9Nx-check-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  color: rgba(241,245,249,0.9);
}

.gen-ta8sz8fu .site-Bjw9Nx-check-list--pro li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.gen-ta8sz8fu .site-Bjw9Nx-check-list--con li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.gen-j6w3jrwj .gen-faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.gen-j6w3jrwj .gen-faq-item:hover {
  background: rgba(255,255,255,0.07);
}

.gen-j6w3jrwj .gen-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  color: rgb(241, 245, 249);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.gen-j6w3jrwj .gen-faq-question:hover {
  color: #a78bfa;
}

.gen-j6w3jrwj .gen-faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  font-size: 22px;
  line-height: 1;
  color: #a78bfa;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.gen-j6w3jrwj .gen-faq-question[aria-expanded="true"] .gen-faq-chevron {
  transform: rotate(180deg);
}

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

.gen-j6w3jrwj .gen-faq-answer.open {
  max-height: 400px;
}

.gen-j6w3jrwj .gen-faq-answer-inner {
  padding: 0 22px 18px 22px;
  color: rgba(241, 245, 249, 0.75);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
}

.gen-25k9mbox {
  font-family: Inter, sans-serif;
  color: rgb(241, 245, 249);
  padding: 60px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.gen-25k9mbox .gen-25k9mbox-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px 50px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.gen-25k9mbox .gen-25k9mbox-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gen-25k9mbox .gen-25k9mbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.gen-25k9mbox .gen-25k9mbox-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gen-25k9mbox .gen-25k9mbox-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.gen-25k9mbox .gen-25k9mbox-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #f1f5f9;
  letter-spacing: 0.01em;
}

.gen-25k9mbox .gen-25k9mbox-item p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  color: rgba(241,245,249,0.72);
}

.gen-25k9mbox .gen-25k9mbox-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gen-25k9mbox .gen-25k9mbox-sep {
  color: rgba(241,245,249,0.35);
  font-size: 14px;
}

@media (max-width: 700px) {
  .gen-25k9mbox .gen-25k9mbox-grid {
    grid-template-columns: 1fr;
  }
  .gen-25k9mbox .gen-25k9mbox-box {
    padding: 24px 18px;
  }
}

._extracted-style-4r2Z { display: inline-flex; }

._extracted-style-QQ6B { width: 4.54315px; height: 4.54315px; background: rgb(59, 130, 246); left: 16.3379%; animation-duration: 11.3411s; animation-delay: 3.32947s; box-shadow: rgb(59, 130, 246) 0px 0px 9.08629px; }

._extracted-style-nJl5 { width: 9.57159px; height: 9.57159px; background: rgb(245, 158, 11); left: 77.3374%; animation-duration: 8.4306s; animation-delay: 2.45685s; box-shadow: rgb(245, 158, 11) 0px 0px 19.1432px; }

._extracted-style-Fgtg { width: 8.5776px; height: 8.5776px; background: rgb(245, 158, 11); left: 50.8348%; animation-duration: 15.8543s; animation-delay: 3.18447s; box-shadow: rgb(245, 158, 11) 0px 0px 17.1552px; }

._extracted-style-GVN7 { width: 6.83551px; height: 6.83551px; background: rgb(255, 45, 85); left: 46.3238%; animation-duration: 14.9304s; animation-delay: 7.61473s; box-shadow: rgb(255, 45, 85) 0px 0px 13.671px; }

._extracted-style-3dzs { width: 6.75426px; height: 6.75426px; background: rgb(245, 158, 11); left: 45.6902%; animation-duration: 19.5066s; animation-delay: 1.07947s; box-shadow: rgb(245, 158, 11) 0px 0px 13.5085px; }

._extracted-style-Jx7C { width: 7.14403px; height: 7.14403px; background: rgb(255, 107, 157); left: 52.7273%; animation-duration: 19.8113s; animation-delay: 5.99899s; box-shadow: rgb(255, 107, 157) 0px 0px 14.2881px; }

._extracted-style-zUJw { width: 10.2039px; height: 10.2039px; background: rgb(59, 130, 246); left: 86.962%; animation-duration: 8.45184s; animation-delay: 3.1034s; box-shadow: rgb(59, 130, 246) 0px 0px 20.4078px; }

._extracted-style-sw82 { width: 9.55887px; height: 9.55887px; background: rgb(255, 45, 85); left: 41.2944%; animation-duration: 13.7316s; animation-delay: 2.71666s; box-shadow: rgb(255, 45, 85) 0px 0px 19.1177px; }

._extracted-style-sjwh { width: 4.40877px; height: 4.40877px; background: rgb(6, 182, 212); left: 12.6768%; animation-duration: 19.3381s; animation-delay: 4.06326s; box-shadow: rgb(6, 182, 212) 0px 0px 8.81754px; }

._extracted-style-8sPt { width: 11.6354px; height: 11.6354px; background: rgb(6, 182, 212); left: 79.2908%; animation-duration: 19.2148s; animation-delay: 6.36971s; box-shadow: rgb(6, 182, 212) 0px 0px 23.2708px; }

._extracted-style--U2Q { width: 11.566px; height: 11.566px; background: rgb(255, 107, 157); left: 97.2859%; animation-duration: 19.1489s; animation-delay: 2.74368s; box-shadow: rgb(255, 107, 157) 0px 0px 23.132px; }

._extracted-style-puDq { width: 8.83489px; height: 8.83489px; background: rgb(255, 107, 157); left: 81.6811%; animation-duration: 8.59239s; animation-delay: 3.84336s; box-shadow: rgb(255, 107, 157) 0px 0px 17.6698px; }

._extracted-style-bJ-w { width: 5.31537px; height: 5.31537px; background: rgb(6, 182, 212); left: 16.2288%; animation-duration: 8.00475s; animation-delay: 1.75994s; box-shadow: rgb(6, 182, 212) 0px 0px 10.6307px; }

._extracted-style-eFhs { width: 6.4289px; height: 6.4289px; background: rgb(255, 107, 157); left: 91.9982%; animation-duration: 19.3224s; animation-delay: 9.27686s; box-shadow: rgb(255, 107, 157) 0px 0px 12.8578px; }

._extracted-style-rRqY { width: 8.88864px; height: 8.88864px; background: rgb(245, 158, 11); left: 77.9061%; animation-duration: 17.1351s; animation-delay: 5.12581s; box-shadow: rgb(245, 158, 11) 0px 0px 17.7773px; }

._extracted-style-yIPy { width: 9.10684px; height: 9.10684px; background: rgb(255, 107, 157); left: 34.2392%; animation-duration: 11.6377s; animation-delay: 6.11641s; box-shadow: rgb(255, 107, 157) 0px 0px 18.2137px; }

._extracted-style-o6oo { width: 10.657px; height: 10.657px; background: rgb(255, 107, 157); left: 80.6632%; animation-duration: 9.26277s; animation-delay: 8.72886s; box-shadow: rgb(255, 107, 157) 0px 0px 21.314px; }

._extracted-style-BZ20 { width: 5.30434px; height: 5.30434px; background: rgb(255, 107, 157); left: 72.2614%; animation-duration: 17.9531s; animation-delay: 8.71094s; box-shadow: rgb(255, 107, 157) 0px 0px 10.6087px; }

._extracted-style-YeP_ { width: 9.96171px; height: 9.96171px; background: rgb(59, 130, 246); left: 89.1543%; animation-duration: 12.8147s; animation-delay: 0.609614s; box-shadow: rgb(59, 130, 246) 0px 0px 19.9234px; }

._extracted-style-nq-M { width: 10.1033px; height: 10.1033px; background: rgb(255, 45, 85); left: 47.9159%; animation-duration: 16.7698s; animation-delay: 6.65626s; box-shadow: rgb(255, 45, 85) 0px 0px 20.2065px; }

._extracted-style--48e { width: 4.41703px; height: 4.41703px; background: rgb(6, 182, 212); left: 87.7077%; animation-duration: 8.09102s; animation-delay: 1.18351s; box-shadow: rgb(6, 182, 212) 0px 0px 8.83406px; }

._extracted-style-bIPk { width: 7.39658px; height: 7.39658px; background: rgb(6, 182, 212); left: 10.5748%; animation-duration: 8.55918s; animation-delay: 9.86325s; box-shadow: rgb(6, 182, 212) 0px 0px 14.7932px; }

._extracted-style-POHp { width: 11.7553px; height: 11.7553px; background: rgb(6, 182, 212); left: 95.6527%; animation-duration: 8.75274s; animation-delay: 9.49456s; box-shadow: rgb(6, 182, 212) 0px 0px 23.5106px; }

._extracted-style-bx__ { width: 5.39894px; height: 5.39894px; background: rgb(255, 45, 85); left: 40.7203%; animation-duration: 12.9442s; animation-delay: 9.83865s; box-shadow: rgb(255, 45, 85) 0px 0px 10.7979px; }

._extracted-style-ck1U { width: 5.04048px; height: 5.04048px; background: rgb(59, 130, 246); left: 24.7492%; animation-duration: 8.76184s; animation-delay: 4.58683s; box-shadow: rgb(59, 130, 246) 0px 0px 10.081px; }

._extracted-style-deAP { width: 7.2076px; height: 7.2076px; background: rgb(6, 182, 212); left: 74.0612%; animation-duration: 17.5423s; animation-delay: 5.43154s; box-shadow: rgb(6, 182, 212) 0px 0px 14.4152px; }

._extracted-style-C9Um { width: 11.3549px; height: 11.3549px; background: rgb(6, 182, 212); left: 82.9996%; animation-duration: 10.3158s; animation-delay: 4.65547s; box-shadow: rgb(6, 182, 212) 0px 0px 22.7098px; }

._extracted-style-AKwn { width: 7.49953px; height: 7.49953px; background: rgb(255, 107, 157); left: 71.8206%; animation-duration: 13.6346s; animation-delay: 3.05815s; box-shadow: rgb(255, 107, 157) 0px 0px 14.9991px; }

._extracted-style-s6gF { width: 7.17242px; height: 7.17242px; background: rgb(59, 130, 246); left: 77.9305%; animation-duration: 8.65853s; animation-delay: 1.55672s; box-shadow: rgb(59, 130, 246) 0px 0px 14.3448px; }

._extracted-style-ki_e { width: 9.16803px; height: 9.16803px; background: rgb(255, 107, 157); left: 90.8374%; animation-duration: 16.0435s; animation-delay: 2.26976s; box-shadow: rgb(255, 107, 157) 0px 0px 18.3361px; }

._extracted-style-1Qe2 { width: 9.06614px; height: 9.06614px; background: rgb(255, 107, 157); left: 98.7907%; animation-duration: 14.2867s; animation-delay: 2.76073s; box-shadow: rgb(255, 107, 157) 0px 0px 18.1323px; }

._extracted-style-ezLm { width: 10.2475px; height: 10.2475px; background: rgb(255, 45, 85); left: 66.3322%; animation-duration: 14.1565s; animation-delay: 8.68206s; box-shadow: rgb(255, 45, 85) 0px 0px 20.495px; }

._extracted-style-fOeW { width: 8.57695px; height: 8.57695px; background: rgb(255, 45, 85); left: 85.5244%; animation-duration: 12.0294s; animation-delay: 7.70819s; box-shadow: rgb(255, 45, 85) 0px 0px 17.1539px; }

._extracted-style-vUDG { width: 5.59886px; height: 5.59886px; background: rgb(59, 130, 246); left: 45.7662%; animation-duration: 10.6513s; animation-delay: 1.48987s; box-shadow: rgb(59, 130, 246) 0px 0px 11.1977px; }

._extracted-style-hjNr { width: 11.0846px; height: 11.0846px; background: rgb(245, 158, 11); left: 62.8037%; animation-duration: 15.7676s; animation-delay: 4.52339s; box-shadow: rgb(245, 158, 11) 0px 0px 22.1691px; }

._extracted-style-7eF_ { width: 5.89934px; height: 5.89934px; background: rgb(245, 158, 11); left: 60.0033%; animation-duration: 16.3236s; animation-delay: 6.4884s; box-shadow: rgb(245, 158, 11) 0px 0px 11.7987px; }

._extracted-style-l4Ad { width: 7.87051px; height: 7.87051px; background: rgb(59, 130, 246); left: 54.3649%; animation-duration: 15.4313s; animation-delay: 6.5933s; box-shadow: rgb(59, 130, 246) 0px 0px 15.741px; }

._extracted-style-8j9c { width: 6.97614px; height: 6.97614px; background: rgb(59, 130, 246); left: 83.3904%; animation-duration: 11.804s; animation-delay: 4.35032s; box-shadow: rgb(59, 130, 246) 0px 0px 13.9523px; }

._extracted-style-Au-C { width: 9.28612px; height: 9.28612px; background: rgb(245, 158, 11); left: 92.95%; animation-duration: 8.12996s; animation-delay: 4.31783s; box-shadow: rgb(245, 158, 11) 0px 0px 18.5722px; }

._extracted-style-f6Lo { width: 7.12368px; height: 7.12368px; background: rgb(6, 182, 212); left: 44.685%; animation-duration: 18.3655s; animation-delay: 1.17999s; box-shadow: rgb(6, 182, 212) 0px 0px 14.2474px; }

._extracted-style-K0eP { width:100%; }

._extracted-style-mVKQ { margin-top: var(--space-lg); }

._extracted-style-sY6M { width:100%; }

._extracted-style-fsfg { text-align:left; padding: 0 0 var(--space-sm); color: var(--clr-text-muted); font-size: 0.85rem; }

._extracted-style-8F-y { background:rgba(16,185,129,0.1); }

._extracted-style-xILS { background:rgba(59,130,246,0.1); }

._extracted-style-CysM { background:rgba(245,158,11,0.1); }

._extracted-style-Okam { background:rgba(255,45,85,0.1); }

._extracted-style-6qaP { margin-top: var(--space-lg); }

._extracted-style-dv62 { margin-bottom:0; }

._extracted-style-PfTS { position:relative;z-index:1; }

._extracted-style-tyop { margin:0 auto var(--space-md); display:table; }

._extracted-style-1dgW { background:var(--grad-red);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }

._extracted-style-vuOG { margin-top:var(--space-sm); }