/* ===== WPT Poker — Cutting-edge Design System ===== */

:root {
  --bg-primary: #10060b;
  --bg-secondary: #1f0d15;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(111, 241, 39, 0.3);

  --gold: #6ff127;
  --gold-dark: #50bc14;
  --gold-glow: rgba(111, 241, 39, 0.4);
  --accent: #55f1db;
  --text-primary: #f5f5f7;
  --text-secondary: rgba(245, 245, 247, 0.6);
  --text-muted: rgba(245, 245, 247, 0.35);

  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Background Effects ===== */

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 241, 39, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(85, 241, 219, 0.1) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(134, 45, 183, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 15s ease-in-out infinite;
}

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

@keyframes orbPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* ===== Typography ===== */

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

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

/* ===== Header ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(16, 6, 11, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon svg {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-text em {
  font-style: normal;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0f;
  box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.btn-nav {
  background: rgba(111, 241, 39, 0.1);
  color: var(--gold);
  border: 1px solid rgba(111, 241, 39, 0.2);
  padding: 10px 20px;
}

.btn-nav:hover {
  background: rgba(111, 241, 39, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(111, 241, 39, 0.3);
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.btn-outline:hover {
  background: rgba(111, 241, 39, 0.1);
  border-color: var(--gold);
}

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  z-index: 1;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== Hero Phone Showcase ===== */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.phone-showcase {
  position: relative;
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s var(--ease-out);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-showcase:hover {
  transform: rotateY(-2deg) rotateX(1deg);
  animation-play-state: paused;
}

@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-6deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-6deg) rotateX(3deg) translateY(-12px); }
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 620px;
  background: radial-gradient(ellipse, rgba(111, 241, 39, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.phone-device {
  position: relative;
  z-index: 1;
}

.phone-bezel {
  width: 290px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2a32 0%, #0f0f14 40%, #1a1a22 100%);
  border-radius: 44px;
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-display {
  width: 100%;
  aspect-ratio: 390 / 844;
  border-radius: 36px;
  overflow: hidden;
  background: #0a0a0f;
  position: relative;
}

.phone-app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone-button {
  position: absolute;
  right: -3px;
  top: 120px;
  width: 3px;
  height: 56px;
  background: linear-gradient(to bottom, #3a3a42, #1a1a22);
  border-radius: 0 2px 2px 0;
}

.phone-button::before {
  content: '';
  position: absolute;
  right: 0;
  top: 70px;
  width: 3px;
  height: 36px;
  background: linear-gradient(to bottom, #3a3a42, #1a1a22);
  border-radius: 0 2px 2px 0;
}

.phone-reflection {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) scaleY(-0.3);
  width: 240px;
  height: 500px;
  background: linear-gradient(to bottom, rgba(111, 241, 39, 0.08) 0%, transparent 60%);
  border-radius: 44px;
  opacity: 0.4;
  filter: blur(20px);
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Marquee ===== */

.marquee-section {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  flex-shrink: 0;
}

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

/* ===== Sections ===== */

section {
  position: relative;
  z-index: 1;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ===== Partners ===== */

.partners {
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo {
  opacity: 0.4;
  transition: opacity 0.3s;
}

.partner-logo:hover {
  opacity: 0.8;
}

.partner-logo span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* ===== Live Ticker ===== */

.live-ticker {
  background: linear-gradient(90deg, rgba(111, 241, 39, 0.06) 0%, rgba(85, 241, 219, 0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-inner {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ticker-item em {
  font-style: normal;
  margin-right: 6px;
}

.ticker-item strong {
  color: var(--gold);
  font-weight: 600;
}

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

/* ===== Game Modes ===== */

.game-modes {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.mode-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
  cursor: default;
}

.mode-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.mode-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(111, 241, 39, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(111, 241, 39, 0.15);
}

.mode-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mode-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.mode-tags {
  display: flex;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.mode-tags li {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.mode-stat {
  text-align: center;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.mode-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

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

/* ===== How It Works ===== */

.how-it-works {
  padding: 120px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(111, 241, 39, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--gold);
  background: rgba(111, 241, 39, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(111, 241, 39, 0.2);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-top: 80px;
  position: relative;
}

.step-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.9rem;
}

/* ===== Leaderboard ===== */

.leaderboard {
  margin-top: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.lb-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.lb-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.lb-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.lb-table {
  padding: 0 8px 8px;
}

.lb-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr 120px;
  align-items: center;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: background 0.2s;
}

.lb-row:not(.lb-head):hover {
  background: rgba(255, 255, 255, 0.03);
}

.lb-head {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lb-rank {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-muted);
}

.lb-rank.gold { color: var(--gold); }
.lb-rank.silver { color: #c0c0c0; }
.lb-rank.bronze { color: #cd7f32; }

.lb-player {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.lb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--hue), 60%, 45%) 0%, hsl(calc(var(--hue) + 40), 50%, 30%) 100%);
  flex-shrink: 0;
}

.lb-prize {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  text-align: right;
}

/* ===== Promo Banner ===== */

.promo-banner {
  padding: 80px 0;
}

.promo-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, rgba(111, 241, 39, 0.08) 0%, rgba(16, 6, 11, 0.9) 60%);
  border: 1px solid rgba(111, 241, 39, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.promo-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(111, 241, 39, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.promo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.promo-content > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 420px;
}

.promo-perks {
  list-style: none;
  margin-bottom: 32px;
}

.promo-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.promo-perks svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.promo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
}

.promo-chip-stack {
  position: relative;
  width: 160px;
  height: 160px;
}

.p-chip {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #0a0a0f;
  box-shadow: 0 8px 32px var(--gold-glow);
  left: calc(var(--i) * 20px);
  top: calc(var(--i) * -12px);
  animation: chipFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.5s);
}

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

/* ===== Reviews ===== */

.reviews {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}

.rating-stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
}

.reviews-carousel {
  margin-top: 48px;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: var(--border-hover);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--hue), 55%, 45%) 0%, hsl(calc(var(--hue) + 30), 45%, 28%) 100%);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
}

.review-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-btn:hover {
  border-color: var(--gold);
  background: rgba(111, 241, 39, 0.1);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== News ===== */

.news {
  padding: 120px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.news-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.news-card:not(.news-featured) {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: stretch;
}

.news-image-link {
  display: block;
  text-decoration: none;
}

.news-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.news-featured .news-image {
  aspect-ratio: 16 / 9;
}

.news-image-sm {
  height: 100%;
  min-height: 120px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.news-card:hover .news-image img {
  transform: scale(1.06);
}

.news-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 6, 11, 0.5) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.news-featured .news-image::after {
  opacity: 1;
}

.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: #0a0a0f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 1;
}

.news-body,
.news-content {
  padding: 24px 28px;
}

.news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 8px 0 10px;
  line-height: 1.4;
}

.news-featured h3 {
  font-size: 1.35rem;
  margin: 10px 0 12px;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.news-card h3 a:hover {
  color: var(--gold);
}

.news-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-featured p {
  margin-bottom: 16px;
}

.news-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}

.news-link:hover {
  opacity: 0.8;
}

/* ===== FAQ ===== */

.faq {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

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

.faq-item p {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== System Requirements ===== */

.system-requirements {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sys-req {
  text-align: center;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 160px;
}

.sys-req strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.sys-req span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== Sticky CTA ===== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(16, 6, 11, 0.92);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.sticky-cta-text span {
  font-size: 0.8rem;
  color: var(--gold);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ===== About WPT ===== */

.about {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.about-header {
  text-align: left;
  margin-bottom: 28px;
}

.about-header .section-title {
  text-align: left;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-highlight {
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color 0.3s;
}

.about-highlight:hover {
  border-color: var(--border-hover);
}

.about-highlight-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-highlight-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--gold-glow);
}

.about-badge-year {
  font-size: 0.55rem;
  font-weight: 700;
  color: #0a0a0f;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0a0a0f;
  line-height: 1;
}

.about-timeline {
  position: relative;
  padding-left: 24px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(111, 241, 39, 0.1));
}

.timeline-item {
  position: relative;
  padding: 0 0 24px 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--bg-primary);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
}

.timeline-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-out);
}

.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ===== Features Bento Grid ===== */

.features {
  padding: 120px 0;
}

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

.bento-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.bento-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.bento-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover .bento-glow {
  opacity: 1;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.bento-wide {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bento-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.bento-icon svg {
  width: 100%;
  height: 100%;
}

.bento-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tournament-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}

.tournament-ring {
  width: 120px;
  height: 120px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
  animation: ringSpin 10s linear infinite;
}

.tournament-ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
}

@keyframes ringSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bento-avatars {
  display: flex;
}

.mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(calc(var(--i) * 60), 50%, 40%) 0%, hsl(calc(var(--i) * 60 + 30), 40%, 25%) 100%);
  border: 3px solid var(--bg-secondary);
  margin-left: calc(var(--i) * -12px);
}

/* ===== Tournaments ===== */

.tournaments {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.tournament-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

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

.tournament-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

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

.tc-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(111, 241, 39, 0.1);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}

.tc-badge.hot {
  background: rgba(85, 241, 219, 0.15);
  color: var(--accent);
}

.tournament-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tc-prize {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
}

.tc-meta {
  list-style: none;
}

.tc-meta li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tc-meta li span {
  color: var(--text-muted);
}

/* ===== Download ===== */

.download {
  padding: 120px 0;
}

.download-card {
  position: relative;
  background: linear-gradient(135deg, rgba(111, 241, 39, 0.05) 0%, rgba(85, 241, 219, 0.03) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.download-content {
  position: relative;
  z-index: 1;
}

.download-content .section-title {
  margin-bottom: 16px;
}

.download-content > p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 48px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  min-width: 200px;
}

.dl-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.dl-btn:hover {
  border-color: var(--gold);
  background: rgba(111, 241, 39, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.dl-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.dl-store {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-code {
  width: 100px;
  height: 100px;
  padding: 8px;
  background: #fff;
  border-radius: var(--radius-sm);
}

.qr-code svg {
  width: 100%;
  height: 100%;
}

.qr-section p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== Footer ===== */

.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

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

.footer-tagline {
  display: block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 12px;
  max-width: 320px;
}

.footer-contact {
  margin-top: 20px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--gold);
}

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

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--border-hover);
  background: rgba(111, 241, 39, 0.08);
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  text-align: center;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 20px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span {
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* ===== Reveal Animations ===== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .hero-visual {
    order: -1;
  }

  .phone-showcase {
    transform: none;
    animation: none;
  }

  .phone-showcase:hover {
    transform: none;
  }

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

  .bento-large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-column: span 2;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .tournament-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-connector {
    display: none;
  }

  .promo-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .promo-visual {
    display: none;
  }

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

  .news-featured {
    grid-row: span 1;
  }

  .news-card:not(.news-featured) {
    grid-template-columns: 1fr;
  }

  .news-image-sm {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .lb-row {
    grid-template-columns: 40px 1fr 100px;
    font-size: 0.8rem;
  }

  .lb-row span:nth-child(3) {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(16, 6, 11, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

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

  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }

  .download-card {
    padding: 48px 24px;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dl-btn {
    width: 100%;
    max-width: 280px;
  }

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

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-desc {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-email {
    justify-content: center;
  }

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

  .stat-divider {
    display: none;
  }

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

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-header .section-title {
    text-align: center;
  }

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

  .phone-bezel {
    width: 260px;
  }

  .phone-glow {
    width: 280px;
    height: 540px;
  }

  .mode-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mode-stat {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 16px;
  }

  .mode-tags {
    justify-content: center;
  }

  .partners-logos {
    gap: 24px;
  }

  .review-card {
    flex: 0 0 85%;
    min-width: 260px;
  }

  .promo-card {
    padding: 32px 24px;
  }

  .lb-row {
    grid-template-columns: 36px 1fr 90px;
    padding: 12px 12px;
  }

  .sticky-cta-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .system-requirements {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
