/* ===== Variables ===== */
:root {
  --bg-dark: #06200d;
  --bg-card: #132918;
  --bg-card-hover: #1c3a23;
  --primary: #9371d6;
  --primary-dark: #531bc4;
  --accent: #e52391;
  --accent-glow: rgba(229, 35, 145, 0.4);
  --green: #355088;
  --green-light: #3b61b2;
  --text: #edf3f0;
  --text-muted: #7ca993;
  --border: rgba(147, 113, 214, 0.15);
  --gradient-gold: linear-gradient(135deg, #9371d6 0%, #ef36be 100%);
  --gradient-dark: linear-gradient(180deg, #06200d 0%, #1c4526 100%);
  --font-display: 'Audiowide', sans-serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --radius: 6px;
  --radius-lg: 18px;
  --shadow-glow: 0 0 40px rgba(147, 113, 214, 0.15);
  --container-max: 1280px;
  --grid-size: 40px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ===== Background Effects ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(147, 113, 214, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 113, 214, 0.03) 1px, transparent 1px);
  background-size: var(--grid-size, 60px) var(--grid-size, 60px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 {
  width: 600px; height: 600px;
  background: rgba(147, 113, 214, 0.08);
  top: -200px; right: -100px;
}
.bg-glow-2 {
  width: 500px; height: 500px;
  background: rgba(229, 35, 145, 0.06);
  bottom: 20%; left: -150px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 32, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

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

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--gradient-gold);
  border-radius: 10px;
  color: #06200d;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
  background: var(--gradient-gold);
  color: #06200d;
  box-shadow: 0 4px 20px rgba(147, 113, 214, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 113, 214, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(147, 113, 214, 0.1);
  border: 1px solid rgba(147, 113, 214, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 6px;
  margin-top: 8px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

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

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

/* ===== Phone Mockup / Poker Table ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  padding: 12px;
  background: linear-gradient(145deg, #2a2a3a, #1a1a28);
  border-radius: 36px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.08);
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #0d2818;
}

.poker-table {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-felt {
  position: absolute;
  width: 85%; height: 55%;
  background: radial-gradient(ellipse, #1a6b3c 0%, #0f4d2a 70%, #0a3520 100%);
  border-radius: 50%;
  border: 4px solid #8b6914;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.4);
}

.community-cards {
  position: absolute;
  display: flex;
  gap: 4px;
  z-index: 2;
  top: 42%;
  transform: translateY(-50%);
}

.card {
  width: 36px; height: 50px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  animation: cardDeal 0.5s ease backwards;
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

.card span { font-size: 0.85rem; line-height: 1; }
.card-red { color: #e52391; }
.card-black { color: #1a1a2e; }
.card.mini { width: 24px; height: 34px; font-size: 0.5rem; }
.card.mini span { font-size: 0.6rem; }

@keyframes cardDeal {
  from { transform: translateY(-20px) rotate(-10deg); opacity: 0; }
  to { transform: translateY(0) rotate(0); opacity: 1; }
}

.pot {
  position: absolute;
  top: 52%;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.chip {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.5);
}
.chip-gold { background: var(--primary); }
.chip-red { background: var(--accent); margin-left: -8px; }
.chip-blue { background: #3498db; margin-left: -8px; }

.pot-amount {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--primary);
  margin-left: 4px;
}

.player-seat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 3;
}
.seat-top { top: 18%; left: 50%; transform: translateX(-50%); }
.seat-left { top: 45%; left: 8%; }
.seat-right { top: 45%; right: 8%; }
.seat-bottom { bottom: 12%; left: 50%; transform: translateX(-50%); }

.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: 2px solid rgba(255,255,255,0.3);
}
.seat-bottom .avatar {
  width: 34px; height: 34px;
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(147, 113, 214, 0.5);
}

.player-name {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}

.hole-cards {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.active .player-name { color: var(--primary); font-weight: 700; }

.floating-card {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.fc-1 { top: -20px; right: -30px; color: var(--text); animation-delay: 0s; }
.fc-2 { bottom: 40px; left: -40px; color: var(--accent); animation-delay: 2s; }

.floating-chip {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  top: 50%; right: -60px;
  opacity: 0.2;
  animation: float 5s ease-in-out infinite reverse;
}

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

.hero-scroll {
  position: absolute;
  bottom: 30px;
  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 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); }
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

.highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 113, 214, 0.1);
  border-radius: 14px;
  color: var(--primary);
  margin-bottom: 20px;
}
.feature-icon svg { width: 32px; height: 32px; }

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

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

/* ===== Gameplay ===== */
.gameplay {
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.5), transparent);
}

.gameplay-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.gameplay-intro {
  color: var(--text-muted);
  margin: 20px 0 32px;
  font-size: 1rem;
  line-height: 1.8;
}

.steps-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.steps-list li:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.5;
  flex-shrink: 0;
}

.steps-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}
.steps-list p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hand-ranks {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.hand-ranks h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 24px;
}

.ranks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ranks-list li:last-child { border-bottom: none; }

.rank-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  flex-shrink: 0;
}
.rank-badge.gold { background: rgba(147, 113, 214, 0.2); color: var(--primary); }
.rank-badge.silver { background: rgba(192, 192, 192, 0.15); color: #c0c0c0; }
.rank-badge.bronze { background: rgba(205, 127, 50, 0.15); color: #cd7f32; }

/* ===== Screenshots ===== */
.screenshots {
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.4), transparent);
  overflow: hidden;
}

.screenshots-gallery {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.screenshot-item:nth-child(even) {
  align-items: flex-end;
}

.screenshot-item:nth-child(even) .phone-landscape {
  transform: perspective(800px) rotateY(-3deg);
}

.screenshot-item:nth-child(odd) .phone-landscape {
  transform: perspective(800px) rotateY(3deg);
}

.phone-landscape {
  transition: transform 0.4s ease;
}

.screenshot-item:hover .phone-landscape {
  transform: perspective(800px) rotateY(0deg) scale(1.02);
}

.phone-landscape-frame {
  position: relative;
  width: min(100%, 640px);
  padding: 10px 14px;
  background: linear-gradient(145deg, #3a3a4a, #1e1e2e);
  border-radius: 20px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-landscape-frame::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.phone-landscape-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 800 / 360;
  border-radius: 10px;
  object-fit: cover;
  background: #0a1628;
}

.screenshot-item figcaption {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.screenshot-item:hover figcaption {
  color: var(--primary);
}

.screenshots-tip {
  text-align: center;
  margin-top: 48px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 16px 24px;
  background: rgba(147, 113, 214, 0.06);
  border: 1px solid rgba(147, 113, 214, 0.15);
  border-radius: var(--radius);
}

/* ===== About ===== */
.about {
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.3), transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin: 20px 0 36px;
}

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.about-block p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.about-list li::before {
  content: '♠';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.75rem;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

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

.about-card:hover {
  border-color: rgba(147, 113, 214, 0.3);
  box-shadow: var(--shadow-glow);
}

.about-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.about-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

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

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

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

/* ===== Download ===== */
.download-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 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, rgba(147, 113, 214, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.download-desc {
  color: var(--text-muted);
  margin: 16px 0 40px;
  font-size: 1.05rem;
}

.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: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: all 0.25s;
  min-width: 200px;
}
.dl-btn svg { width: 32px; height: 32px; flex-shrink: 0; }
.dl-btn:hover {
  background: rgba(147, 113, 214, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.dl-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.dl-platform {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.dl-ios:hover { color: var(--text); }
.dl-android:hover { color: var(--green-light); }
.dl-pc:hover { color: var(--primary); }

.qr-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

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

.qr-placeholder {
  width: 120px; height: 120px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  color: #06200d;
}
.qr-placeholder svg { width: 100%; height: 100%; }

.qr-box span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.download-note {
  text-align: left;
}
.download-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.9rem;
}
.download-note li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.download-note li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: rgba(6, 32, 13, 0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-tagline {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 12px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 12px;
  max-width: 360px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-badge {
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--primary);
  background: rgba(147, 113, 214, 0.08);
  border: 1px solid rgba(147, 113, 214, 0.2);
  border-radius: 50px;
}

.footer-social {
  margin-top: 24px;
}

.footer-social-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s;
}
.social-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(147, 113, 214, 0.1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-item a,
.contact-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-item a:hover { color: var(--text); }

.footer-legal {
  margin-bottom: 28px;
}

.footer-legal p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0.75;
  margin-bottom: 10px;
}
.footer-legal p:last-child { margin-bottom: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-meta {
  margin-top: 6px;
  font-size: 0.72rem !important;
  opacity: 0.6;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--accent) !important;
  opacity: 0.85;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gameplay-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .screenshot-item:nth-child(even) { align-items: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(6, 32, 13, 0.95);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .features-grid { grid-template-columns: 1fr; }
  .download-box { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-desc { max-width: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }
  .dl-btn { min-width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-contact { grid-template-columns: 1fr; }
}


/* ===== Variant 048 Layout Overrides ===== */
@media (min-width: 769px) { .about-content { order: 2; } .about-sidebar { order: 1; } }
@media (min-width: 769px) { .nav { justify-content: center; position: relative; } .logo { position: absolute; left: 24px; } .nav-links { margin-left: 0; } .nav-cta { position: absolute; right: 24px; } }
@media (min-width: 769px) { .nav-links { margin-left: 0; flex: 1; justify-content: center; } }
.feature-card, .about-card, .hand-ranks, .download-box { box-shadow: none; border-width: 1px; }
.section { padding: 120px 0; }
body { background: var(--gradient-dark); } .bg-grid { display: none; }