/* ==========================================================================
   CasinoBuitenland — Luxe Emerald & Gold Theme
   ========================================================================== */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Surfaces */
  --bg-deep:      #06120c;
  --bg-felt:      #0a1b14;
  --bg-card:      #0f261c;
  --bg-elev:      #163627;
  --bg-glass:     rgba(20, 50, 36, 0.55);

  /* Gold palette */
  --gold:         #e7c14a;
  --gold-light:   #f7e08a;
  --gold-dark:    #a87f1a;
  --gold-deep:    #6e5410;
  --gold-grad:    linear-gradient(135deg, #f7e08a 0%, #e7c14a 35%, #b88a1d 70%, #f4d76a 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(247,224,138,0.18), rgba(184,138,29,0.10));

  /* Text */
  --text:         #f5ecd0;
  --text-strong:  #fff7df;
  --text-muted:   #b6ad8b;
  --text-dim:     #8a8466;

  /* Lines & accents */
  --line:         rgba(231, 193, 74, 0.18);
  --line-strong:  rgba(231, 193, 74, 0.45);
  --accent-red:   #d34540;
  --accent-green: #38b27a;
  --accent-rose:  #e8748d;

  /* Shadow & glow */
  --shadow-card:  0 10px 30px -12px rgba(0,0,0,0.65), 0 4px 14px -8px rgba(0,0,0,0.5);
  --shadow-gold:  0 8px 30px -8px rgba(231,193,74,0.45), 0 2px 8px -2px rgba(231,193,74,0.35);
  --glow-gold:    0 0 24px rgba(231,193,74,0.35);

  /* Layout */
  --container:    1200px;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    18px;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(231,193,74,0.07), transparent 40%),
    radial-gradient(circle at 88% 22%, rgba(56,178,122,0.06), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(231,193,74,0.05), transparent 50%);
}

/* Subtle felt grain across the body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.35;
  z-index: 0;
}

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

a { color: var(--gold-light); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: var(--bg-deep); }

/* Scrollbar */
html { scrollbar-color: var(--gold-dark) var(--bg-felt); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-felt); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  color: var(--text-strong);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 700; letter-spacing: 1px; }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); margin-top: 3rem; margin-bottom: 1.1rem;
     position: relative; padding-bottom: .6rem; }
h2::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 64px; height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin: 2rem 0 .8rem; color: var(--gold-light); }
h4 { font-size: 1.1rem; margin: 1.4rem 0 .6rem; color: var(--gold-light); font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: 0.4px; }

p { margin-bottom: 1.05rem; color: var(--text); }
p strong { color: var(--text-strong); font-weight: 600; }
em { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; color: var(--gold-light); font-size: 1.08em; }

ul, ol { margin: 0 0 1.2rem 0; padding-left: 1.4rem; }
ul li, ol li { margin-bottom: .55rem; color: var(--text); position: relative; }
ul { list-style: none; padding-left: 0; }
ul li { padding-left: 1.6rem; }
ul li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-size: .75rem;
  line-height: 1.7;
  text-shadow: 0 0 8px rgba(231,193,74,0.6);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; position: relative; z-index: 1; }

.section { padding: 3rem 0; }
.section--tight { padding: 1.5rem 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 18, 12, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }
.brand img { height: 48px; width: auto; }
.brand-tag {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: .9rem;
  border-left: 1px solid var(--line-strong);
  padding-left: .9rem;
}
@media (min-width: 900px) { .brand-tag { display: inline; } }

.nav { display: none; }
.nav ul { display: flex; gap: 1.6rem; list-style: none; padding: 0; margin: 0; }
.nav ul li { padding: 0; margin: 0; }
.nav ul li::before { display: none; }
.nav a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  letter-spacing: .3px; position: relative; padding: .35rem 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--gold-grad);
  transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }
@media (min-width: 1000px) { .nav { display: block; } }

.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 .55rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800; font-size: .85rem;
  letter-spacing: .5px;
  box-shadow: inset 0 0 12px rgba(231,193,74,0.15);
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4rem 0 2.5rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(231,193,74,0.18), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(56,178,122,0.12), transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 1.2rem;
  padding: .35rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--gold-grad-soft);
}
.hero h1 {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 30px rgba(231,193,74,0.15);
}
.hero-sub {
  max-width: 740px; margin: 1.4rem auto 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}
.hero-meta {
  margin-top: 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem .8rem;
  font-size: .82rem; color: var(--text-dim); letter-spacing: .4px;
}
.hero-meta span {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(15, 38, 28, 0.5);
}
.hero-meta span::before { content: '✓'; color: var(--gold); font-weight: bold; }

/* Animated gold sparkle in hero */
.hero-sparkle {
  position: absolute; top: 30%; left: 8%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold), 0 0 24px var(--gold);
  animation: sparkle 4s ease-in-out infinite;
}
.hero-sparkle.s2 { top: 65%; left: auto; right: 12%; animation-delay: 1.5s; }
.hero-sparkle.s3 { top: 18%; left: auto; right: 30%; animation-delay: 2.8s; }
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ---------- Author byline ---------- */
.byline {
  text-align: center; color: var(--text-dim); font-size: .85rem;
  margin: -.5rem 0 2rem; font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}
.byline strong { color: var(--gold-light); font-style: normal; font-family: 'Manrope', sans-serif; font-weight: 600; }

/* ---------- Casino Comparison Cards (top 6) ---------- */
.casino-list { display: grid; gap: 1.25rem; margin-top: 1rem; }

.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem 1.25rem;
  background:
    linear-gradient(135deg, rgba(22, 54, 39, 0.7), rgba(15, 38, 28, 0.85));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.casino-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad);
  opacity: .55;
  transition: opacity .3s ease;
}
.casino-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card), 0 0 24px -8px rgba(231,193,74,0.35);
}
.casino-card:hover::before { opacity: 1; }

.casino-card[data-rank="1"] {
  background:
    linear-gradient(135deg, rgba(231, 193, 74, 0.10), rgba(15, 38, 28, 0.85));
  border-color: rgba(231,193,74,0.38);
}
.casino-card[data-rank="1"]::before { opacity: 1; height: 3px; }

.rank-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 56px;
  font-family: 'Cinzel', serif;
}
.rank-badge .num {
  font-size: 1.6rem; font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rank-badge .lbl {
  display: block; margin-top: .25rem;
  font-size: .65rem; color: var(--text-dim);
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
}

.casino-info { min-width: 0; }
.casino-name {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 .3rem;
  letter-spacing: .5px;
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
}
.casino-name .badge-best {
  font-family: 'Manrope', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: .2rem .55rem;
  background: var(--gold-grad);
  color: var(--bg-deep);
  border-radius: 100px;
  box-shadow: var(--shadow-gold);
}
.casino-bonus {
  color: var(--gold-light); font-weight: 600; font-size: 1.02rem;
  margin-bottom: .35rem;
}
.casino-meta {
  display: flex; flex-wrap: wrap; gap: .4rem .9rem;
  font-size: .82rem; color: var(--text-muted);
}
.casino-meta span { display: inline-flex; align-items: center; gap: .3rem; }
.casino-meta .dot { color: var(--gold); }

.casino-actions {
  display: flex; flex-direction: column; align-items: flex-end; gap: .7rem;
  min-width: 130px;
}

/* Star rating */
.stars {
  display: inline-flex; align-items: center; gap: .35rem;
}
.stars-icons { display: inline-flex; gap: 1px; }
.star {
  width: 14px; height: 14px;
  color: var(--gold-deep);
}
.star.filled { color: var(--gold); filter: drop-shadow(0 0 3px rgba(231,193,74,0.45)); }
.star.half { color: var(--gold); opacity: .55; }
.stars-score {
  font-family: 'Cinzel', serif;
  font-size: .92rem; font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .5px;
}

/* Spelen button — gold shimmer */
.btn-play {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  background: var(--gold-grad);
  background-size: 200% 200%;
  color: #181000;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  animation: shimmer 5s ease-in-out infinite;
}
.btn-play::after {
  content: ''; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: skewX(-20deg);
  transition: left .8s ease;
}
.btn-play:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px -8px rgba(231,193,74,0.65), var(--glow-gold);
}
.btn-play:hover::after { left: 130%; }
.btn-play:active { transform: translateY(0) scale(1); }
.btn-play .arrow { transition: transform .25s ease; }
.btn-play:hover .arrow { transform: translateX(3px); }

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- Casino Detail Sections ---------- */
.casino-detail {
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  position: relative;
}
.casino-detail h3 { margin-top: 0; }
.casino-detail .detail-cta {
  margin-top: 1.2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
}
.casino-detail .detail-cta .small-note {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--text-dim); font-size: .95rem;
}

/* ---------- Tables ---------- */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(10, 27, 20, 0.7);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
th, td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
th {
  background: linear-gradient(180deg, rgba(231,193,74,0.10), rgba(231,193,74,0.04));
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .78rem;
  white-space: nowrap;
}
tr:last-child td { border-bottom: none; }
tbody tr { transition: background .25s ease; }
tbody tr:hover { background: rgba(231,193,74,0.04); }
td strong { color: var(--text-strong); }

/* ---------- Two-Column (pros / cons) ---------- */
.split {
  display: grid; gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; } }

.split-card {
  padding: 1.6rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.split-card.pros { border-top: 3px solid var(--accent-green); }
.split-card.cons { border-top: 3px solid var(--accent-red); }
.split-card h3 {
  margin-top: 0; font-size: 1.1rem;
  display: flex; align-items: center; gap: .55rem;
}
.split-card.pros h3 { color: var(--accent-green); }
.split-card.cons h3 { color: var(--accent-rose); }
.split-card ul li::before { font-size: .9rem; }
.split-card.pros ul li::before { content: '✓'; color: var(--accent-green); text-shadow: none; }
.split-card.cons ul li::before { content: '✕'; color: var(--accent-rose); text-shadow: none; }

/* ---------- Info Cards Grid ---------- */
.info-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 1.5rem 0;
}
.info-card {
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.info-card .icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gold-grad-soft);
  border: 1px solid var(--line-strong);
  margin-bottom: .9rem;
  color: var(--gold);
}
.info-card h4 { margin-top: 0; color: var(--gold-light); }
.info-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { margin: 1.5rem 0; display: grid; gap: .7rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-strong);
  list-style: none;
  user-select: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Manrope', sans-serif;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding-top: 1rem;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Highlight callout ---------- */
.callout {
  margin: 1.8rem 0;
  padding: 1.4rem 1.5rem 1.4rem 1.5rem;
  background: linear-gradient(135deg, rgba(231,193,74,0.08), rgba(56,178,122,0.05));
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  position: relative;
}
.callout::before {
  content: '★';
  position: absolute; top: -10px; left: 18px;
  background: var(--bg-deep);
  color: var(--gold);
  padding: 0 .4rem;
  font-size: .9rem;
}
.callout p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 4rem;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.4)),
    var(--bg-felt);
  border-top: 1px solid var(--line);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}
.footer-inner {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-col h5 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { padding-left: 0; list-style: none; margin: 0; }
.footer-col ul li { padding-left: 0; margin-bottom: .55rem; font-size: .92rem; color: var(--text-muted); }
.footer-col ul li::before { display: none; }
.footer-col a { color: var(--text-muted); transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-about p {
  color: var(--text-muted); font-size: .92rem; line-height: 1.7;
}
.footer-about img { height: 56px; margin-bottom: 1rem; }

.responsible-banner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 1rem 0 2rem;
}
.responsible-banner .age-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-red);
  color: white;
  font-weight: 800; font-size: .9rem;
  flex-shrink: 0;
}
.responsible-banner p {
  margin: 0; font-size: .85rem; color: var(--text-muted); flex: 1; min-width: 220px;
}
.responsible-banner strong { color: var(--text-strong); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .82rem; color: var(--text-dim);
}

/* ---------- Section anchor offset (for sticky header) ---------- */
section[id], h2[id] { scroll-margin-top: 90px; }

/* ---------- Mobile refinements ---------- */
@media (max-width: 640px) {
  .casino-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "actions";
    padding: 1.2rem 1.1rem;
    gap: 1rem;
  }
  .rank-badge {
    position: absolute; top: 12px; right: 14px;
    width: auto; flex-direction: row; gap: .35rem;
  }
  .rank-badge .num { font-size: 1.2rem; }
  .rank-badge .lbl { margin-top: 0; }
  .casino-info { grid-area: info; }
  .casino-actions {
    grid-area: actions;
    flex-direction: row; align-items: center; justify-content: space-between;
    width: 100%;
    padding-top: .8rem;
    border-top: 1px dashed var(--line);
  }
  .btn-play { padding: .8rem 1.4rem; font-size: .85rem; }
  .casino-name { font-size: 1.2rem; padding-right: 70px; }
  .section { padding: 2rem 0; }
  .hero { padding: 2.5rem 0 1.5rem; }
  th, td { padding: .75rem .85rem; font-size: .85rem; }
  .casino-detail { padding: 1.5rem 1.1rem; }
  .footer-inner { padding: 2rem 0 1rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
