/* ═══════════════════════════════════════════════════════════════
   LizardPub.it — Casino Non AAMS 2026
   Design: "Tavolo Verde Dorato" — Dark luxury Italian gambling
   ═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --bg-base:       #0b120d;
  --bg-card:       #111c14;
  --bg-surface:    #182219;
  --bg-raised:     #1e2d20;
  --color-gold:    #d4af37;
  --color-gold-lt: #f0d060;
  --color-gold-dk: #a88a20;
  --color-green:   #009246;
  --color-green-lt:#00b355;
  --color-red:     #ce2b37;
  --color-red-lt:  #e83d4a;
  --color-white:   #f0ece4;
  --text-primary:  #ede9e0;
  --text-secondary:#8eaa8e;
  --text-muted:    #5a7060;
  --border-gold:   rgba(212,175,55,.22);
  --border-card:   rgba(212,175,55,.14);
  --glow-gold:     0 0 24px rgba(212,175,55,.18);
  --shadow-card:   0 6px 32px rgba(0,0,0,.55);
  --radius-card:   14px;
  --radius-btn:    8px;
  --container:     1140px;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Source Sans 3', 'Segoe UI', sans-serif;
  --header-h:      66px;
  --transition:    0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11,18,13,.96);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav — hidden on mobile */
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--color-gold-lt);
  background: rgba(212,175,55,.08);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--color-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-header-cta:hover {
  background: var(--color-red-lt);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,146,70,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(206,43,55,.08) 0%, transparent 60%),
    var(--bg-base);
}

/* Decorative casino elements */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.deco-suit {
  position: absolute;
  font-size: clamp(60px, 10vw, 120px);
  opacity: .04;
  font-family: serif;
  line-height: 1;
  user-select: none;
}
.deco-suit.spade  { top: 10%; left: 3%; transform: rotate(-15deg); }
.deco-suit.heart  { top: 55%; left: 2%; transform: rotate(10deg); color: var(--color-red); opacity: .05; }
.deco-suit.diamond{ top: 15%; right: 5%; transform: rotate(20deg); color: var(--color-red); opacity: .05; }
.deco-suit.club   { bottom: 8%; right: 3%; transform: rotate(-8deg); opacity: .04; }

.deco-chip {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.deco-chip.c1 {
  width: 140px; height: 140px;
  background: conic-gradient(var(--color-gold) 0deg 40deg, transparent 40deg 80deg, var(--color-gold) 80deg 120deg, transparent 120deg 160deg, var(--color-gold) 160deg 200deg, transparent 200deg 240deg, var(--color-gold) 240deg 280deg, transparent 280deg 320deg, var(--color-gold) 320deg 360deg);
  top: -20px; right: 15%;
}
.deco-chip.c2 {
  width: 90px; height: 90px;
  background: conic-gradient(var(--color-green) 0deg 40deg, transparent 40deg 80deg, var(--color-green) 80deg 120deg, transparent 120deg 160deg, var(--color-green) 160deg 200deg, transparent 200deg 240deg, var(--color-green) 240deg 280deg, transparent 280deg 320deg, var(--color-green) 320deg 360deg);
  bottom: 10%; left: 8%;
}
.deco-chip.c3 {
  width: 60px; height: 60px;
  background: conic-gradient(var(--color-red) 0deg 40deg, transparent 40deg 80deg, var(--color-red) 80deg 120deg, transparent 120deg 160deg, var(--color-red) 160deg 200deg, transparent 200deg 240deg, var(--color-red) 240deg 280deg, transparent 280deg 320deg, var(--color-red) 320deg 360deg);
  top: 30%; right: 4%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(212,175,55,.12);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--color-gold);
  position: relative;
}

.hero-lead {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 32px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-item strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--color-gold-lt);
  line-height: 1;
}
.stat-item span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.stat-sep {
  color: var(--border-gold);
  font-size: 28px;
  line-height: 1;
  padding: 0 4px;
}

.italian-flag-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 80px;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}
.italian-flag-strip span { flex: 1; }
.f-green { background: var(--color-green); }
.f-white { background: #ffffff; }
.f-red   { background: var(--color-red); }

/* ═══════════════════════════════════════
   LISTING SECTION
═══════════════════════════════════════ */
.listing-section {
  padding: 60px 0 72px;
  background:
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(0,146,70,.06) 0%, transparent 70%),
    var(--bg-base);
}

.listing-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--color-gold-lt);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.25;
}
.listing-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}

/* Casino Cards List */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── CASINO CARD ── */
.casino-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 48px 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.casino-card:hover {
  border-color: rgba(212,175,55,.4);
  box-shadow: var(--shadow-card), var(--glow-gold);
  transform: translateY(-2px);
}

/* Featured card */
.casino-card.card-featured {
  border-color: rgba(212,175,55,.45);
  background: linear-gradient(135deg, #141f16 0%, #0f1a12 100%);
  box-shadow: 0 4px 24px rgba(0,0,0,.6), 0 0 0 1px rgba(212,175,55,.2);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--color-gold);
  color: #0b120d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 12px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}

/* Rank */
.card-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rank-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Brand */
.card-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo-wrap {
  flex-shrink: 0;
  width: 110px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  overflow: hidden;
  padding: 4px 8px;
}
.brand-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.08);
}
.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
}
.star-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.stars {
  color: var(--color-gold);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}
.rating-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold-lt);
}

/* Bonus block */
.card-bonus-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bonus-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-gold-dk);
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 4px;
  padding: 2px 8px;
  width: fit-content;
}
.bonus-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.bonus-desc strong {
  color: var(--color-gold-lt);
  font-weight: 700;
}

/* Features */
.card-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.3;
}
.chk {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* CTA */
.card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--color-green) 0%, #007a3d 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,146,70,.35);
  letter-spacing: .02em;
  min-width: 130px;
  text-align: center;
}
.btn-play:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,146,70,.5);
}
.cta-terms {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  max-width: 140px;
}

/* ═══════════════════════════════════════
   MAIN CONTENT / PROSE
═══════════════════════════════════════ */
.main-content {
  padding: 72px 0 80px;
  background:
    linear-gradient(180deg, var(--bg-base) 0%, rgba(14,22,16,.98) 100%);
}

.prose-wrap {
  max-width: 860px;
}

/* Headings */
.prose-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--color-gold-lt);
  margin: 52px 0 16px;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-gold);
}
.prose-wrap h2:first-child,
.prose-wrap h2:first-of-type {
  margin-top: 0;
}

.prose-wrap h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
  color: var(--color-white);
  margin: 36px 0 12px;
  line-height: 1.3;
}
.prose-wrap h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gold);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-body);
}

/* Paragraphs */
.prose-wrap p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.prose-wrap p:last-child { margin-bottom: 0; }

/* Strong/em in prose */
.prose-wrap strong { color: var(--color-white); font-weight: 700; }
.prose-wrap em { color: var(--color-gold-lt); font-style: italic; }

/* Lists */
.prose-wrap ul,
.prose-wrap ol {
  margin: 16px 0 24px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prose-wrap ul li,
.prose-wrap ol li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.75;
  list-style: none;
}
.prose-wrap ul li::before {
  content: '♦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-size: 10px;
  top: 6px;
}
.prose-wrap ol { counter-reset: list-counter; }
.prose-wrap ol li { counter-increment: list-counter; }
.prose-wrap ol li::before {
  content: counter(list-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 14px;
}

/* Tables */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 28px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-gold);
}

.prose-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--bg-card);
}
.prose-wrap table td {
  padding: 11px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: top;
}
.prose-wrap table td p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.prose-wrap table tr:first-child td {
  background: rgba(212,175,55,.1);
  color: var(--color-gold-lt);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.prose-wrap table tr:last-child td { border-bottom: none; }
.prose-wrap table tr:hover td { background: rgba(255,255,255,.02); }

/* FAQ section styling */
#faq {
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.prose-wrap h2#faq,
#faq + h3,
#faq ~ h3 {
  /* FAQ H3s */
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #080e09;
  border-top: 1px solid var(--border-gold);
  padding: 52px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 280px; }
.footer-brand img { height: 38px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: flex-start;
}
.footer-nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-gold-lt); }

/* Responsible gambling */
.footer-responsible {
  background: rgba(206,43,55,.08);
  border: 1px solid rgba(206,43,55,.2);
  border-radius: 10px;
  padding: 18px 22px;
}
.responsible-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.resp-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.footer-responsible strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-red-lt);
  margin-bottom: 5px;
}
.footer-responsible p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Disclaimer */
.footer-disclaimer p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 16px;
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.04);
}

/* Copyright */
.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-copy p {
  font-size: 12px;
  color: var(--text-muted);
}
.back-to-top {
  font-size: 13px;
  color: var(--color-gold-dk);
  transition: color var(--transition);
}
.back-to-top:hover { color: var(--color-gold-lt); }

/* ═══════════════════════════════════════
   SCROLL ANCHOR OFFSETS
═══════════════════════════════════════ */
#listing,
#come-scegliere,
#bonus,
#faq {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .casino-card {
    grid-template-columns: 40px 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 14px;
  }
  .card-rank       { grid-column: 1; grid-row: 1; }
  .card-brand      { grid-column: 2 / 4; grid-row: 1; }
  .card-bonus-block{ grid-column: 1 / 3; grid-row: 2; }
  .card-features   { grid-column: 3 / 4; grid-row: 2; }
  .card-cta        { grid-column: 1 / 4; grid-row: 3; flex-direction: row; justify-content: center; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
═══════════════════════════════════════ */
@media (max-width: 640px) {

  /* Header: hide desktop nav, keep button */
  .header-nav { display: none; }
  .btn-header-cta { margin-left: auto; }

  /* Hero */
  .hero { padding: 44px 0 40px; }
  .hero-stats { gap: 8px; }
  .stat-sep { font-size: 20px; }
  .hero-badge { font-size: 11px; }

  /* Listing */
  .listing-section { padding: 44px 0 52px; }

  /* Casino cards — single column stack */
  .casino-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 18px;
  }

  /* First card prominent for above-fold */
  .casino-card:first-child {
    border-color: rgba(212,175,55,.4);
    box-shadow: var(--shadow-card), var(--glow-gold);
  }

  .card-brand {
    width: 100%;
    justify-content: flex-start;
  }
  .brand-logo-wrap {
    width: 90px;
    height: 36px;
  }
  .brand-name { font-size: 15px; }

  .card-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .btn-play { width: 100%; padding: 14px 20px; font-size: 16px; }
  .cta-terms { max-width: 100%; text-align: center; }

  .card-features li { font-size: 13px; }

  /* Prose */
  .main-content { padding: 48px 0 56px; }
  .prose-wrap h2 { font-size: 20px; margin-top: 40px; }
  .prose-wrap h3 { font-size: 17px; margin-top: 28px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-brand { max-width: 100%; }
  .footer-nav { gap: 6px 16px; }

  /* No horizontal scroll on body */
  .hero-deco { opacity: .5; }
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* Hero entrance */
.hero-badge    { animation: fadeInUp .5s ease both; }
.hero-title    { animation: fadeInUp .6s ease .1s both; }
.hero-lead     { animation: fadeInUp .6s ease .2s both; }
.hero-stats    { animation: fadeInUp .6s ease .3s both; }
.listing-title { animation: fadeInUp .5s ease .1s both; }

/* Gold shimmer on featured card rank */
.card-featured .rank-num {
  background: linear-gradient(90deg, rgba(212,175,55,.1) 0%, rgba(240,208,96,.25) 50%, rgba(212,175,55,.1) 100%);
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}

/* Pulse on CTA button */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,146,70,.35); }
  50%       { box-shadow: 0 4px 28px rgba(0,146,70,.6); }
}
.btn-play {
  animation: pulse-green 3s ease-in-out infinite;
}
.btn-play:hover { animation: none; }

/* ═══════════════════════════════════════
   UTILITY — prevent horizontal overflow
═══════════════════════════════════════ */
html, body { max-width: 100%; overflow-x: hidden; }

/* Tables: horizontal scroll on mobile only */
@media (max-width: 640px) {
  .table-scroll { border-radius: 8px; }
}

/* ═══════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════ */
@media print {
  .site-header, .hero-deco, .btn-play, .btn-header-cta { display: none; }
  body { background: #fff; color: #000; }
}
