/* ========================================
   HH Poker — Cyber Neon Download Site
   ======================================== */

:root {
  --bg-deep: #060404;
  --bg-card: rgba(13, 13, 18, 0.75);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --neon-green: #4bbe6c;
  --neon-green-dim: #3e9257;
  --neon-gold: #ecb01c;
  --neon-purple: #5ba3bd;
  --neon-cyan: #8848ae;
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --red-suit: #ff4466;
  --gradient-neon: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
  --gradient-gold: linear-gradient(135deg, #ecb01c 0%, #ffaa00 100%);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --nav-height: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

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

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

ul { list-style: none; }

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

.container {
  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");
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(75, 190, 108, 0.5);
}

.logo-text .accent {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--neon-green);
}

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

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

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-neon);
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(75, 190, 108, 0.3);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-neon);
  color: var(--bg-deep);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(75, 190, 108, 0.35);
}

.btn-ghost {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--neon-green);
  background: rgba(75, 190, 108, 0.05);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(75, 190, 108, 0.08);
  top: -10%;
  right: -5%;
  animation: glow-drift 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(91, 163, 189, 0.06);
  bottom: -10%;
  left: -10%;
  animation: glow-drift 10s ease-in-out infinite reverse;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  width: 80px;
  height: 112px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0.6;
}

.floating-card .suit {
  font-size: 1.2rem;
  margin-top: -4px;
}

.floating-card .suit.red { color: var(--red-suit); }

.card-1 { top: 15%; left: 8%; animation: float 6s ease-in-out infinite; transform: rotate(-15deg); }
.card-2 { top: 20%; right: 10%; animation: float 7s ease-in-out infinite 1s; transform: rotate(12deg); }
.card-3 { bottom: 25%; left: 12%; animation: float 5s ease-in-out infinite 0.5s; transform: rotate(8deg); }
.card-4 { bottom: 20%; right: 8%; animation: float 8s ease-in-out infinite 2s; transform: rotate(-10deg); }

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--neon-green);
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.title-line { display: block; }

.title-accent {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(75, 190, 108, 0.3);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-green);
}

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

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

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Section Common ---- */
section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--neon-green);
  margin-bottom: 16px;
  text-shadow: 0 0 15px rgba(75, 190, 108, 0.4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

/* ---- Download ---- */
.download {
  background: linear-gradient(180deg, transparent 0%, rgba(75, 190, 108, 0.02) 50%, transparent 100%);
}

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

.download-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.download-card:hover {
  transform: translateY(-8px);
  border-color: rgba(75, 190, 108, 0.3);
}

.download-card .card-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(75, 190, 108, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

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

.download-card.featured {
  border-color: rgba(75, 190, 108, 0.25);
  background: linear-gradient(180deg, rgba(75, 190, 108, 0.05) 0%, var(--bg-card) 100%);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gradient-neon);
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.platform-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.platform-icon img {
  width: 100%;
  height: 100%;
}

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

.platform-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.platform-specs {
  text-align: left;
  margin-bottom: 28px;
}

.platform-specs li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.platform-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon-green);
  font-weight: 700;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.download-btn:hover {
  border-color: var(--neon-green);
  background: rgba(75, 190, 108, 0.08);
  box-shadow: 0 0 20px rgba(75, 190, 108, 0.15);
}

.download-btn.primary {
  background: var(--gradient-neon);
  color: var(--bg-deep);
  border: none;
  font-weight: 700;
}

.download-btn.primary:hover {
  box-shadow: 0 8px 30px rgba(75, 190, 108, 0.3);
  transform: translateY(-2px);
}

.download-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.download-note a {
  color: var(--neon-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-note a:hover { color: var(--neon-cyan); }

/* ---- About ---- */
.about {
  background: linear-gradient(180deg, transparent 0%, rgba(75, 190, 108, 0.02) 40%, transparent 100%);
}

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

.about-intro h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(75, 190, 108, 0.3);
}

.about-intro p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-intro p strong {
  color: var(--text-primary);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.value-item:hover {
  border-color: rgba(75, 190, 108, 0.2);
  background: rgba(75, 190, 108, 0.04);
}

.value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(75, 190, 108, 0.08);
  border-radius: 12px;
}

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

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

.about-stats-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid rgba(75, 190, 108, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}

.about-stat {
  text-align: center;
  padding: 16px 8px;
}

.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(75, 190, 108, 0.3);
  margin-bottom: 6px;
}

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

.about-timeline {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 16px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 20px;
  position: relative;
}

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

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 56px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(75, 190, 108, 0.3) 0%, rgba(75, 190, 108, 0.05) 100%);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-green);
  text-align: right;
  padding-top: 2px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid rgba(75, 190, 108, 0.4);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.timeline-dot.active {
  background: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 12px rgba(75, 190, 108, 0.5);
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 0;
}

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

.highlight-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.highlight-card:hover {
  border-color: rgba(75, 190, 108, 0.25);
  transform: translateY(-4px);
}

.highlight-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  margin-bottom: 12px;
}

.highlight-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

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

.feature-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  border-color: rgba(75, 190, 108, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--neon-green);
  margin-bottom: 20px;
}

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

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ---- Game Modes ---- */
.modes {
  background: linear-gradient(180deg, transparent 0%, rgba(91, 163, 189, 0.03) 50%, transparent 100%);
}

.modes-showcase {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.mode-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-glass);
}

.mode-tab {
  flex: 1;
  padding: 18px 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.mode-tab:hover { color: var(--text-secondary); }

.mode-tab.active {
  color: var(--neon-green);
  background: rgba(75, 190, 108, 0.05);
}

.mode-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

.mode-panels { position: relative; min-height: 360px; }

.mode-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  animation: fadeIn 0.4s ease;
}

.mode-panel.active { display: grid; }

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

.mode-visual {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.poker-table {
  position: relative;
  width: 280px;
  height: 160px;
  border-radius: 80px;
  overflow: visible;
}

.table-felt {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, #0d4a2a 0%, #062818 70%, #031a0f 100%);
  border-radius: 80px;
  border: 4px solid #3d2817;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.community-cards {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 4px;
}

.mini-card {
  width: 36px;
  height: 50px;
  background: linear-gradient(145deg, #fff, #e8e8e8);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pot-chip {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gradient-gold);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
}

.hole-cards-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.hole-cards-display .mini-card { width: 40px; height: 56px; font-size: 0.7rem; }

.short-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 10px;
  background: var(--neon-purple);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50px;
}

.trophy-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 3rem;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.prize-pool {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  white-space: nowrap;
}

.player-count {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.mode-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mode-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.mode-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.mode-tags span {
  padding: 6px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

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

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(75, 190, 108, 0.2);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--neon-green);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

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

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

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 56px;
  background: linear-gradient(135deg, rgba(75, 190, 108, 0.08) 0%, rgba(91, 163, 189, 0.08) 100%);
  border: 1px solid rgba(75, 190, 108, 0.15);
  border-radius: calc(var(--radius) + 4px);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(75, 190, 108, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.cta-text p {
  color: var(--text-secondary);
}

/* ---- Footer ---- */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-glass);
}

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

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

.footer-tagline {
  font-weight: 600;
  color: var(--text-secondary) !important;
  margin-top: 14px !important;
}

.footer-desc {
  max-width: 280px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 16px !important;
  font-size: 0.85rem !important;
}

.footer-contact a {
  color: var(--neon-green);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--neon-cyan);
}

.footer-contact span {
  color: var(--text-muted);
}

.footer-social-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

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

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--neon-green); }

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  transition: var(--transition);
}

.social-links a svg { width: 18px; height: 18px; }

.social-links a:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: 0 0 15px rgba(75, 190, 108, 0.2);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-glass);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  margin-top: 8px;
  font-size: 0.75rem !important;
  opacity: 0.7;
}

/* ---- App Showcase ---- */
.app-showcase {
  background: linear-gradient(180deg, transparent 0%, rgba(136, 72, 174, 0.03) 50%, transparent 100%);
  overflow: hidden;
}

.app-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(75, 190, 108, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: glow-drift 6s ease-in-out infinite;
}

.phone-device {
  position: relative;
  width: 280px;
  background: linear-gradient(160deg, #1a1a24 0%, #0a0a10 100%);
  border-radius: 40px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(75, 190, 108, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #0a0a10;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 520px;
  background: #0d0d14;
  border-radius: 32px;
  overflow: hidden;
}

.phone-home-bar {
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 10px auto 4px;
}

.app-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.app-screen.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

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

/* App details side */
.app-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.app-screen-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  color: var(--text-secondary);
}

.app-tab:hover {
  border-color: rgba(75, 190, 108, 0.2);
  color: var(--text-primary);
}

.app-tab.active {
  border-color: rgba(75, 190, 108, 0.4);
  background: rgba(75, 190, 108, 0.06);
  color: var(--text-primary);
}

.tab-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--neon-green);
  opacity: 0.6;
}

.app-tab.active .tab-num { opacity: 1; }

.tab-label {
  font-size: 1rem;
  font-weight: 600;
}

.app-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.app-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(75, 190, 108, 0.08);
  border: 1px solid rgba(75, 190, 108, 0.15);
  border-radius: 12px;
  font-size: 1.2rem;
}

.app-feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.app-feature-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- News ---- */
.news {
  background: linear-gradient(180deg, transparent 0%, rgba(91, 163, 189, 0.02) 50%, transparent 100%);
}

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

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(75, 190, 108, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.news-card-featured {
  grid-column: span 1;
}

.news-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-deep);
}

.news-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-card:hover .news-thumb-img {
  transform: scale(1.08);
}

.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 8, 0.4) 100%);
  pointer-events: none;
}

.news-category {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(75, 190, 108, 0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--neon-green);
}

.news-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-body time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.news-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

.news-body h3 a {
  transition: var(--transition);
}

.news-body h3 a:hover {
  color: var(--neon-green);
}

.news-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-green);
  transition: var(--transition);
}

.news-link:hover {
  color: var(--neon-cyan);
}

.news-more {
  text-align: center;
  margin-top: 48px;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .download-grid,
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .app-showcase-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .phone-stage { order: -1; }

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

  .mode-panel.active {
    grid-template-columns: 1fr;
  }

  .mode-visual { padding: 32px; }

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

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

  .nav-toggle { display: flex; }

  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-glass);
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .floating-card { display: none; }

  .mode-tabs { flex-wrap: wrap; }

  .mode-tab { flex: 1 1 50%; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 36px 24px;
  }

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

  .news-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .app-screen-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .app-tab {
    flex: 1;
    min-width: 100px;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    text-align: center;
  }

  .tab-num { font-size: 0.7rem; }
  .tab-label { font-size: 0.8rem; }

  .about-highlights {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

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

  .hero-actions { flex-direction: column; align-items: center; }

  .btn { width: 100%; justify-content: center; }
}
