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

:root {
  --felt-dark: #1a2d46;
  --felt-mid: #21344f;
  --felt-light: #406290;
  --gold: #dc4eed;
  --gold-dark: #9e38aa;
  --gold-glow: rgba(220, 78, 237, 0.31000000000000005);
  --red: #4ae778;
  --red-dark: #37ad5a;
  --text: #eceae8;
  --text-muted: rgba(236, 234, 232, 0.6599999999999999);
  --card-bg: rgba(236, 234, 232, 0.04);
  --border: rgba(220, 78, 237, 0.26);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--felt-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background pattern */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(64, 98, 144, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(220, 78, 237, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px),
    linear-gradient(180deg, #0e1826 0%, var(--felt-dark) 30%, #16263b 100%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(13, 22, 35, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

header.scrolled { padding: 10px 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px var(--gold-glow);
  position: relative;
}

.logo-icon::after {
  content: '♠';
  color: var(--felt-dark);
  font-weight: 900;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
}

.logo-text span {
  color: var(--gold);
}

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

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:active { transform: scale(0.97); }

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

.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(220, 78, 237, 0.5);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: rgba(220, 78, 237, 0.1);
}

.btn-lg { padding: 16px 36px; font-size: 17px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 78, 237, 0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, #92c8eb 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.download-btn:hover {
  border-color: var(--gold);
  background: rgba(220, 78, 237, 0.08);
  transform: translateY(-2px);
}

.download-btn .icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.download-btn .label {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.download-btn .store {
  font-size: 16px;
  font-weight: 700;
  display: block;
}

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

.stat-item .num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}

.stat-item .label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero visual - poker table */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.poker-table {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, var(--felt-light) 0%, var(--felt-mid) 50%, var(--felt-dark) 100%);
  border-radius: 50%;
  border: 8px solid #9e38aa;
  box-shadow:
    0 0 0 4px var(--gold-dark),
    0 0 0 8px #5e2166,
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 0 60px rgba(0,0,0,0.3);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

.poker-table::before {
  content: '';
  position: absolute;
  inset: 20%;
  border: 2px dashed rgba(220, 78, 237, 0.2);
  border-radius: 50%;
}

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

.card {
  width: 72px;
  height: 100px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  position: relative;
  transition: transform 0.3s;
}

.card:nth-child(1) { transform: rotate(-12deg) translateX(10px); z-index: 1; }
.card:nth-child(2) { transform: rotate(0deg); z-index: 3; }
.card:nth-child(3) { transform: rotate(12deg) translateX(-10px); z-index: 2; }

.card.red { color: var(--red); }
.card.black { color: #1a1a2e; }

.card .rank { font-size: 28px; line-height: 1; }
.card .suit { font-size: 22px; }

.chips-stack {
  position: absolute;
  bottom: 18%;
  right: 12%;
  display: flex;
  flex-direction: column-reverse;
  gap: -8px;
}

.chip {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px dashed rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.chip:nth-child(1) { background: var(--red); margin-left: 0; }
.chip:nth-child(2) { background: #2563eb; margin-left: 8px; margin-top: -12px; }
.chip:nth-child(3) { background: var(--gold-dark); margin-left: 16px; margin-top: -12px; }

.community-cards {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.community-cards .card {
  width: 44px;
  height: 62px;
  transform: none !important;
  font-size: 12px;
}

.community-cards .card .rank { font-size: 16px; }
.community-cards .card .suit { font-size: 14px; }

.pot-label {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  border: 1px solid var(--border);
}

/* Sections */
section { padding: 100px 0; }

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

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
}

.section-desc {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 16px;
}

.kw {
  color: var(--gold);
  font-weight: 700;
}

/* Ticker */
.ticker-bar {
  background: rgba(220, 78, 237, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 1;
}

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

.ticker-track span {
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About */
.about-section {
  background: rgba(0, 0, 0, 0.15);
}

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

.about-content .section-tag,
.about-content .section-title {
  text-align: left;
}

.about-lead {
  font-size: 17px;
  line-height: 1.8;
  margin: 20px 0 16px;
  color: var(--text);
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-list {
  list-style: none;
  margin: 24px 0 32px;
}

.about-list li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 15px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.about-stat-card.accent {
  background: linear-gradient(135deg, rgba(220, 78, 237, 0.15) 0%, rgba(220, 78, 237, 0.05) 100%);
  border-color: var(--gold);
}

.about-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}

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

/* Guide */
.guide-section {
  background: rgba(0, 0, 0, 0.2);
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.guide-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.guide-step:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.guide-step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(220, 78, 237, 0.3);
}

.guide-step-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.guide-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.guide-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.guide-tips {
  background: linear-gradient(135deg, rgba(220, 78, 237, 0.08) 0%, rgba(220, 78, 237, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}

.guide-tips h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gold);
}

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

.tip-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tip-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text);
}

.tip-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}

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

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

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--felt-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
}

.review-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Site Intro */
.site-section {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.site-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.site-main p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.site-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s;
}

.site-feature-item:hover {
  border-color: var(--gold);
}

.site-feature-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 78, 237, 0.1);
  border-radius: 12px;
}

.site-feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.site-feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.site-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(220, 78, 237, 0.06);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}

.site-notice-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.site-notice-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.site-notice-text strong {
  color: var(--gold);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(245,200,66,0.2) 0%, rgba(245,200,66,0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

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

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

/* Game modes */
.modes-section {
  background: rgba(0,0,0,0.2);
}

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

.mode-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}

.mode-card:hover { transform: scale(1.03); }

.mode-banner {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.mode-banner.m1 { background: linear-gradient(135deg, #406290, #1a2d46); }
.mode-banner.m2 { background: linear-gradient(135deg, #4ae778, #37ad5a); }
.mode-banner.m3 { background: linear-gradient(135deg, #101a27, #0e1826); }
.mode-banner.m4 { background: linear-gradient(135deg, #9e38aa, #0f1b2a); }

.mode-info { padding: 20px; }
.mode-info h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.mode-info p { font-size: 13px; color: var(--text-muted); }

/* Screenshots - 手机横屏 */
.screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 20px 0;
}

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

.phone-frame {
  width: 100%;
  background: linear-gradient(145deg, #2a2a2a 0%, #111 100%);
  border-radius: 20px;
  padding: 10px 14px;
  border: 2px solid rgba(220, 78, 237, 0.2);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.phone-frame:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.5),
    0 0 24px var(--gold-glow);
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 5px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  z-index: 2;
}

.screenshot-caption {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

/* Download CTA */
.download-section {
  text-align: center;
  position: relative;
}

.download-box {
  background: linear-gradient(135deg, rgba(245,200,66,0.12) 0%, rgba(245,200,66,0.03) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.download-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.download-box > * { position: relative; z-index: 1; }

.download-box h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 12px;
}

.download-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.qr-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

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

.qr-code {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 2px;
}

.qr-code span {
  background: #1a1a2e;
  border-radius: 1px;
}

.qr-code span.w { background: #fff; }

.qr-label {
  font-size: 14px;
  color: var(--text-muted);
}

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

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 32px;
  background: rgba(0,0,0,0.3);
}

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

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

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: var(--text-muted);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: #ff8a90;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(11, 20, 31, 0.94);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .poker-table { max-width: 340px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .modes-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .guide-steps { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .site-grid { grid-template-columns: 1fr; }
  .screenshots { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav { display: none; }
  .mobile-menu-btn { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-item .num { font-size: 22px; }
  .download-box { padding: 40px 24px; }
  .qr-row { gap: 32px; }
}

/* Animations on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Layout variant #13 */
.layout-header-solid header { backdrop-filter: none; background: var(--felt-dark); }

body { --tpl-id: 13; }
