:root {
  --ink: #111514;
  --muted: #5d6763;
  --line: #d7dfda;
  --paper: #f5f7f4;
  --panel: #ffffff;
  --band: #e7eee9;
  --graphite: #1d2422;
  --green: #1f7a4d;
  --green-deep: #105533;
  --copper: #c47a3a;
  --cream: #fff8eb;
  --shadow: 0 16px 34px rgba(17, 21, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  overflow-x: hidden;
}
a { color: var(--green-deep); font-weight: 800; text-decoration: none; }
a:hover { text-decoration: underline; }
.shell { width: calc(100% - 36px); max-width: 1200px; margin: 0 auto; }

.notice {
  padding: 9px 16px;
  text-align: center;
  font-size: 14px;
}
.notice.affiliate { background: var(--graphite); color: #fff; }
.notice.age { background: var(--cream); color: #5c3515; border-bottom: 1px solid #ead3b8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 244, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
}
.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--graphite);
  color: #fff;
  border-bottom: 4px solid var(--copper);
  font-size: 14px;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}
.nav-links a { color: #27312e; font-weight: 900; }
.badge-18 {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green-deep);
  font-weight: 900;
}

section { padding: 72px 0; }
.hero {
  min-height: 600px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(17,21,20,.98), rgba(16,85,51,.94) 58%, rgba(196,122,58,.80)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 2px, transparent 2px 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 44px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero h1, .page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero p { max-width: 700px; color: #eef7f1; font-size: 18px; }
.eyebrow {
  margin: 0 0 14px;
  color: #ffd49c;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}
.hero-actions, .casino-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  border: 1px solid transparent;
  text-decoration: none;
}
.button.primary { background: var(--copper); color: #fff; box-shadow: 0 14px 30px rgba(196, 122, 58, .32); }
.button.secondary { background: #fff; color: var(--ink); border-color: var(--line); }

.hero-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-board div {
  min-height: 150px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 -4px 0 rgba(196,122,58,.75);
}
.hero-board strong { color: #fff; font-size: 36px; }
.hero-board span { color: #eef7f1; font-weight: 900; }

h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.12; margin: 0 0 18px; text-transform: uppercase; }
h3 { margin: 0 0 8px; font-size: 20px; }
.alt { background: var(--band); }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.method-grid article, .content-panel, .casino-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.method-grid article { padding: 22px; }
.method-grid article h3 {
  border-bottom: 3px solid var(--copper);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.section-heading { max-width: 780px; margin-bottom: 24px; }
.section-heading p { color: var(--muted); }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 900;
  cursor: pointer;
}
.filter-btn.active { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.ranking-list { display: grid; gap: 14px; }
.casino-card {
  display: grid;
  grid-template-columns: 60px 178px minmax(0, 1fr) 214px;
  gap: 18px;
  padding: 18px;
  align-items: center;
}
.rank {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green-deep);
  color: #fff;
  font-weight: 900;
}
.logo-tile {
  min-height: 80px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f1f5f2);
  border: 1px solid var(--line);
}
.logo-tile img, .review-logo { max-width: 100%; height: auto; object-fit: contain; }
.casino-main h3 { font-size: 24px; text-transform: uppercase; }
.meta { color: var(--muted); font-size: 14px; font-weight: 850; }
.licence-row { display: flex; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.licence-row span { color: var(--green-deep); font-weight: 900; }

.page-hero {
  color: #fff;
  background:
    linear-gradient(115deg, rgba(17,21,20,.98), rgba(16,85,51,.94)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 2px, transparent 2px 80px);
}
.page-hero.compact { padding: 78px 0; min-height: auto; }
.page-hero p { max-width: 760px; color: #eef7f1; font-size: 18px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(280px, .68fr); gap: 20px; align-items: start; }
.content-panel { padding: 28px; }
.muted-panel { background: #fbfcfa; }
.facts { display: grid; gap: 10px; margin: 0 0 18px; }
.facts div { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
dt { font-weight: 900; color: #33413b; }
dd { margin: 0; }
.checklist { padding-left: 18px; }
.checklist li { margin-bottom: 8px; }
.split-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .6fr); gap: 24px; align-items: center; }
.support-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.support-links a {
  min-height: 58px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.site-footer {
  background: var(--graphite);
  color: #e8efeb;
  padding: 52px 0 22px;
}
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 26px; }
.footer-brand { color: #fff; margin-bottom: 12px; }
.site-footer h2 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.site-footer a { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.operator-warning {
  color: #fff;
  background: rgba(31,122,77,.18);
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  padding: 12px;
  font-weight: 900;
}
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); color: #bdc9c4; font-size: 13px; }
[hidden] { display: none !important; }

@media (max-width: 900px) {
  .nav-shell { align-items: center; padding: 14px 0; flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; overflow-x: auto; max-width: 100%; padding-bottom: 4px; }
  .hero-grid, .two-col, .split-band, .footer-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .casino-card { grid-template-columns: 48px minmax(0, 1fr); }
  .logo-tile { grid-column: 2; }
  .casino-main, .casino-actions { grid-column: 1 / -1; }
  .casino-actions .button { flex: 1 1 180px; }
}

@media (max-width: 560px) {
  .shell { width: 368px; max-width: calc(100vw - 22px); margin-left: 11px; margin-right: auto; }
  .hero-copy, .section-heading, .content-panel, .casino-main, .method-grid article { min-width: 0; max-width: 100%; }
  .notice { padding: 9px 12px; font-size: 13px; overflow-wrap: anywhere; }
  section { padding: 48px 0; }
  .hero { min-height: auto; padding: 54px 0; }
  .hero h1, .page-hero h1 { font-size: 27px; max-width: calc(100vw - 24px); overflow-wrap: anywhere; }
  .hero h1 span { display: block; }
  h2 { font-size: 23px; max-width: calc(100vw - 24px); overflow-wrap: anywhere; }
  .hero p, .page-hero p, .method-grid p, .casino-main p { font-size: 16px; max-width: 100%; overflow-wrap: anywhere; }
  .hero-board, .method-grid, .support-links { grid-template-columns: 1fr; }
  .hero-board div { min-height: 108px; }
  .facts div { grid-template-columns: 1fr; gap: 2px; }
  .button { width: 100%; }
  .nav-shell { gap: 12px; }
  .nav-links { flex-wrap: wrap; overflow: visible; row-gap: 6px; }
  .brand-mark { font-size: 18px; }
}
