/* ═══════════════════════════════════════════
   eCribbage Plus — Marketing Site Styles
   ═══════════════════════════════════════════ */

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

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #ffd700;
  --gold-dim: #b8860b;
  --gold-glow: rgba(255, 215, 0, 0.3);
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --text: #e8e4dc;
  --text-dim: #9a9490;
  --accent-red: #c0392b;
  --accent-spade: #2c3e50;
  --suit-heart: #e74c3c;
  --suit-diamond: #e67e22;
  --suit-club: #2ecc71;
  --suit-spade: #3498db;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-height: 72px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: #ffe566; }

img { max-width: 100%; height: auto; }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.08);
  transition: all 0.3s ease;
  height: var(--nav-height);
}
.site-nav.scrolled {
  height: var(--nav-height);
  background: rgba(10, 10, 15, 0.95);
  border-bottom-color: rgba(255, 215, 0, 0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
  overflow: visible;
}
.site-nav, .nav-inner {
  overflow: visible;
}
.nav-logo-img {
  height: 200px;
  width: auto;
  margin-top: 10px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}
.plus-glow {
  display: block;
  position: absolute;
  right: 70px;
  top: 65px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0.2) 40%, transparent 70%);
  z-index: 1002;
  pointer-events: none;
  animation: plusGlow 2s ease-in-out infinite;
}
@keyframes plusGlow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.8);
  }
}
.logo-e { color: var(--gold); }
.logo-crib { color: var(--text); }
.logo-plus {
  font-family: 'Inter', sans-serif;
  color: var(--gold);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 3px;
  animation: plusPulse 2s ease-in-out infinite;
  margin-left: 8px;
}
.plus-short { display: none; }
.logo-version {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 215, 0, 0.4);
  margin-left: 6px;
  letter-spacing: 0.5px;
  align-self: flex-end;
  margin-bottom: 2px;
}
.nav-cta-mobile { display: none; }
@media (max-width: 768px) {
  .plus-full { display: none; }
  .plus-short { display: inline; }
  .nav-cta-mobile { display: inline-flex !important; }
}
@keyframes plusPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px var(--gold-glow); }
  50% { opacity: 0.6; text-shadow: none; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0a0a0f !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--gold-glow);
  color: #0a0a0f !important;
}
.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);
  transition: all 0.3s;
  border-radius: 1px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--nav-height) 24px 24px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(184, 134, 11, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(184, 134, 11, 0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero-banner {
  position: relative;
  max-width: 720px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 40px 20px rgba(0, 0, 0, 0.9),
    0 0 80px 40px rgba(0, 0, 0, 0.6);
  border: none;
  margin-bottom: 20px;
}
.hero-banner img {
  width: 100%;
  display: block;
}
.hero-text {
  text-align: center;
  position: relative;
}
.hero-text h1 {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 6px;
  text-shadow: 0 2px 20px rgba(255, 215, 0, 0.2);
}
.hero-tagline {
  text-align: center;
  position: relative;
  margin-bottom: 4px;
}
.hero-intro {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--text);
  font-style: italic;
  font-weight: 400;
}
.hero-plus {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-weight: 900;
  font-style: normal;
  color: var(--gold);
  font-size: 1.3em;
  text-shadow: 0 0 20px var(--gold-glow);
  animation: plusPulse 2s ease-in-out infinite;
}
.hero-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1000px;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .hero-perks {
    grid-template-columns: 1fr;
  }
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  min-height: 0;
}
.perk-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateX(4px);
}
.perk-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.perk-text {
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--text);
  font-weight: 400;
  line-height: 1.4;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0a0a0f;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
  color: #0a0a0f;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(255, 215, 0, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Section Layout ── */
.section {
  padding: 60px 24px;
  position: relative;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

/* Alternating section backgrounds */
.section-alt {
  background: linear-gradient(180deg, rgba(17, 17, 24, 0.6) 0%, rgba(10, 10, 15, 0.6) 100%);
}

/* ── Feature Cards Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 215, 0, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0);
}
.feature-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Game Variants Cards ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.game-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.game-card-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}
.game-card-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}
.game-card-body p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.65;
}
.game-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  margin-top: 10px;
  font-weight: 600;
}
.game-tag.popular { background: rgba(231, 76, 60, 0.15); color: #e74c3c; }
.game-tag.strategic { background: rgba(46, 204, 113, 0.15); color: #2ecc71; }
.game-tag.unique { background: rgba(52, 152, 219, 0.15); color: #3498db; }

/* Coming Soon diagonal banner */
.game-card.coming-soon {
  position: relative;
  overflow: hidden;
}
.game-card.coming-soon::after {
  content: 'COMING SOON';
  position: absolute;
  top: 16px;
  right: -38px;
  background: rgba(255, 215, 0, 0.12);
  color: rgba(255, 215, 0, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 40px;
  transform: rotate(35deg);
  border: 1px solid rgba(255, 215, 0, 0.15);
  z-index: 1;
}

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ── Quote / Testimonial ── */
.quote-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: 'Cinzel Decorative', serif;
  font-size: 120px;
  color: rgba(255, 215, 0, 0.08);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.quote-block blockquote {
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.quote-block cite {
  font-size: 14px;
  color: var(--text-dim);
  font-style: normal;
}

/* ── Timeline / About ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(255, 215, 0, 0.1));
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 12px var(--gold-glow);
}
.timeline-item h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}
.timeline-item .year {
  font-size: 13px;
  color: var(--gold-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.timeline-item p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ── HAL Section ── */
.hal-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hal-visual {
  position: relative;
  text-align: center;
}
.hal-eye {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff0000 0%, #990000 40%, #330000 70%, #0a0a0f 100%);
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.5);
  animation: halGlow 3s ease-in-out infinite;
  position: relative;
}
.hal-eye::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
}
@keyframes halGlow {
  0%, 100% { box-shadow: 0 0 60px rgba(255, 0, 0, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.5); }
  50% { box-shadow: 0 0 80px rgba(255, 0, 0, 0.5), inset 0 0 30px rgba(0, 0, 0, 0.5); }
}
.hal-levels {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}
.hal-level {
  background: var(--bg-card);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
}
.hal-level strong {
  display: block;
  color: #ff4444;
  font-family: 'Cinzel', serif;
  font-size: 14px;
}
.hal-level span {
  font-size: 11px;
  color: var(--text-dim);
}
.hal-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}
.hal-info p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── Tournament Section ── */
.tourney-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.tourney-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.tourney-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}
.tourney-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}
.tourney-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}
.tourney-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.12) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: clamp(24px, 4vw, 42px);
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  max-width: 300px;
}
.footer-brand .logo-e,
.footer-brand .logo-crib {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 28px;
  font-weight: 400;
}
.footer-brand .logo-plus {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 900;
}
.footer-tagline {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 8px;
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.footer-col a {
  color: var(--text-dim);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.footer-bottom p {
  color: var(--text-dim);
  font-size: 12px;
}

/* ── Page Header (subpages) ── */
.page-header {
  padding: calc(var(--nav-height) + 48px) 24px 48px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(17, 17, 24, 0.8) 0%, var(--bg-dark) 100%);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 134, 11, 0.06) 0%, transparent 60%);
}
.page-header h1 {
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}
.page-header p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ── Page Content ── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.page-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--gold);
  margin: 48px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── Suited Decoration (floating card suits) ── */
.suit-deco {
  position: absolute;
  font-size: 200px;
  opacity: 0.02;
  pointer-events: none;
  font-family: serif;
}

/* ── Scroll Animations (disabled — content visible immediately) ── */

/* ── Responsive ── */
@media (max-width: 768px) {
  /* Shrink logo for mobile */
  .nav-logo-img { height: 60px; margin-top: 5px; }

  .nav-toggle { display: flex; z-index: 1002; }

  .nav-links {
    position: absolute;
    top: calc(var(--nav-height) - 4px);
    right: 12px;
    width: auto;
    min-width: 200px;
    background: #111118;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 1001;
    display: none;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 15px;
    color: var(--text-dim);
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover { color: var(--gold); background: rgba(255, 215, 0, 0.05); }
  .nav-links .nav-cta {
    margin: 8px 12px;
    padding: 10px 20px !important;
    font-size: 14px !important;
    text-align: center !important;
    border-bottom: none;
  }

  /* Play Now button in top bar (separate from dropdown) */
  .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    color: #0a0a0f !important;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 8px;
  }

  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 32px); padding-bottom: 48px; }
  .hero-banner { margin-bottom: 32px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .hal-section { grid-template-columns: 1fr; }
  .hal-visual { order: -1; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }

  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
}
