:root {
  color-scheme: light;
  --burgundy: #5b1a2e;
  --wine: #7b2335;
  --cream: #f4ece2;
  --paper: #fff8ee;
  --charcoal: #1c1a18;
  --ink: #25201d;
  --muted: #756b61;
  --gold: #c9a24b;
  --gold-dark: #9a741f;
  --line: rgba(91, 26, 46, 0.18);
  --shadow: 0 26px 70px rgba(28, 26, 24, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.skip {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--gold);
  color: #17120d;
  padding: 8px 12px;
}
.skip:focus { transform: translateY(0); }

.cn-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 44px);
  background: #0e0d0c;
  color: var(--cream);
  border-bottom: 1px solid rgba(201, 162, 75, 0.38);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}
.brand span,
.footer-brand strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  justify-content: center;
  align-items: center;
}
.nav-menu a,
.language-switcher a {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  color: rgba(244, 236, 226, 0.86);
}
.nav-menu a:hover,
.language-switcher a:hover,
.language-switcher a[aria-current="true"] { color: var(--gold); }
.language-switcher {
  display: flex;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(201, 162, 75, 0.36);
}
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.button-gold {
  background: linear-gradient(180deg, #e7c362, var(--gold));
  color: #1b140a;
  border-color: #e8cd7c;
}
.button-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.button:hover { transform: translateY(-1px); }

.hero {
  min-height: clamp(560px, calc(100vh - 150px), 720px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #160e0d;
  color: var(--cream);
  border-bottom: 1px solid rgba(201, 162, 75, 0.32);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 9, 8, 0.9), rgba(20, 10, 9, 0.5) 46%, rgba(10, 8, 7, 0.16)),
    url("/assets/img/hero-casino-noir.webp") center / cover no-repeat;
}
.hero-inner {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 112px);
  padding: 34px 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
}
h1 { font-size: clamp(3rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 4.2rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2.2rem); }
.lede {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 690px;
  color: inherit;
}
.hero .lede { color: rgba(244, 236, 226, 0.88); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}
.disclosure,
.note,
.legal-note,
.updated {
  color: var(--muted);
  font-size: 0.88rem;
}
.hero .disclosure { color: rgba(244, 236, 226, 0.72); max-width: 520px; }

.paper {
  background: var(--paper);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 6vw, 88px);
}
.feature-spread {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}
.section-label {
  margin: 0 0 18px;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}
.text-link {
  color: var(--wine);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.editorial-frame {
  margin: 0;
  border: 1px solid rgba(201, 162, 75, 0.42);
  box-shadow: var(--shadow);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.comparison { padding-top: clamp(36px, 5vw, 72px); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th {
  background: var(--wine);
  color: var(--cream);
  text-transform: uppercase;
  font-size: 0.76rem;
  padding: 13px 14px;
}
td {
  padding: 15px 14px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
}
.geo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.geo-grid a {
  min-height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px;
}
.geo-grid span { font-family: var(--serif); font-size: 1.5rem; }
.geo-grid small { color: var(--wine); text-transform: uppercase; font-weight: 800; }
.rg-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 6vw, 88px);
  color: var(--cream);
  background: linear-gradient(90deg, var(--wine), #41101f);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.rg-strip p { margin: 4px 0 0; color: rgba(244, 236, 226, 0.75); }

.article-page {
  background: var(--cream);
  min-height: 70vh;
}
.breadcrumbs {
  padding: 22px clamp(18px, 6vw, 88px);
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}
.breadcrumbs a { color: var(--wine); text-decoration: none; }
.article-hero {
  padding: clamp(50px, 9vw, 118px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(110deg, rgba(91, 26, 46, 0.95), rgba(28, 26, 24, 0.8)),
    url("/assets/img/og-casino-noir.webp") center / cover;
  color: var(--cream);
}
.article-hero .updated,
.article-hero .disclosure { color: rgba(244, 236, 226, 0.72); }
.article-body {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 18px;
  font-size: 1.08rem;
}
.article-body .dropcap::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 5.8rem;
  line-height: 0.74;
  padding-right: 12px;
  color: var(--wine);
}
blockquote {
  margin: 42px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.08;
}
.editorial-list { padding-left: 22px; }
.editorial-list li { margin: 10px 0; }
.vip-cards,
.score-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(28px, 5vw, 62px) clamp(18px, 6vw, 88px);
  background: #1b1512;
}
.vip-card,
.score-panel {
  color: var(--cream);
}
.vip-card {
  border: 1px solid rgba(201, 162, 75, 0.48);
  padding: 28px;
  background: linear-gradient(145deg, rgba(91, 26, 46, 0.55), rgba(28, 26, 24, 0.86));
}
.seal {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}
.score-panel {
  grid-template-columns: 220px 1fr;
  align-items: center;
}
.score {
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
}
.score-panel dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
}
.score-panel dt { color: var(--gold); }
.score-panel dd { margin: 0; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq summary {
  cursor: pointer;
  color: var(--wine);
  font-weight: 800;
}
.sitemap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
}
.sitemap-list a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  text-decoration: none;
  color: var(--wine);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(42px, 7vw, 82px) clamp(18px, 6vw, 88px) 28px;
  background: #0e0d0c;
  color: rgba(244, 236, 226, 0.82);
}
.site-footer nav,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer strong { color: var(--gold); text-transform: uppercase; }
.site-footer a { text-decoration: none; color: rgba(244, 236, 226, 0.82); }
.footer-note {
  grid-column: 1 / -1;
  color: rgba(244, 236, 226, 0.58);
  border-top: 1px solid rgba(201, 162, 75, 0.26);
  padding-top: 22px;
}
.badge-18 {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-weight: 800;
}

.age-gate,
.cookie-banner {
  position: fixed;
  z-index: 50;
}
.age-gate {
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(14, 13, 12, 0.78);
}
.age-gate[hidden],
.cookie-banner[hidden] { display: none; }
.modal-panel {
  max-width: 520px;
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
}
.modal-panel h2 { font-size: 2.6rem; }
.cookie-banner {
  right: 18px;
  bottom: 18px;
  width: min(520px, calc(100% - 36px));
  display: flex;
  gap: 12px;
  align-items: center;
  background: #0e0d0c;
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 14px;
  box-shadow: var(--shadow);
}
.cookie-banner p { margin: 0 auto 0 0; }
.indexnow-admin {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 18px;
}
.indexnow-admin textarea {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  padding: 16px;
  font: 14px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.indexnow-admin pre {
  white-space: pre-wrap;
  background: #17120d;
  color: var(--cream);
  padding: 16px;
  min-height: 80px;
}

@media (max-width: 980px) {
  .cn-header {
    grid-template-columns: auto auto 1fr;
    gap: 14px;
  }
  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    border: 1px solid rgba(201, 162, 75, 0.42);
    background: transparent;
    color: var(--gold);
    padding: 10px 12px;
    text-transform: uppercase;
  }
  .nav-menu {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
    padding-top: 12px;
  }
  .nav-menu.is-open { display: flex; }
  .header-cta { display: none; }
  .language-switcher { justify-self: end; }
  .feature-spread,
  .vip-cards,
  .score-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .geo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rg-strip { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .cn-header {
    min-height: 74px;
    padding: 12px 14px;
    grid-template-columns: 1fr auto;
  }
  .brand span { font-size: 1.25rem; }
  .brand img { width: 36px; height: 36px; }
  .language-switcher {
    grid-column: 1 / -1;
    justify-self: start;
    gap: 7px;
    padding: 7px;
    flex-wrap: wrap;
  }
  .hero { min-height: 620px; }
  .hero-inner { margin-left: 18px; padding: 42px 0; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .button { width: 100%; }
  .section-head { align-items: start; flex-direction: column; }
  .geo-grid { grid-template-columns: 1fr; }
  .sitemap-list { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
}
