:root {
  --bg: #08080c;
  --bg-soft: #101018;
  --surface: #14141c;
  --surface-2: #1b1b25;
  --border: rgba(255, 255, 255, 0.1);
  --text: #f4f4f7;
  --muted: #a3a3b1;
  --muted-2: #777784;
  --gold: #f4c430;
  --gold-2: #e0982a;
  --green: #16c784;
  --red: #ff6b6b;
  --blue: #5ee7ff;
  --purple: #c9a0ff;
  --radius: 8px;
  --wrap: 1120px;
  --content: 780px;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  --font: "Inter", "Arial", sans-serif;
  --font-display: "Arial Black", "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

p { color: var(--muted); }

ul { padding-left: 20px; }

li + li { margin-top: 8px; }

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin: 0 auto;
}

.content-col {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 12, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 800;
  font-size: 19px;
  text-decoration: none;
}

.brand-mark,
.casino-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #08080c;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #c8c8d2;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover { color: var(--gold); }

.age-pill,
.alert-pill,
.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.age-pill {
  padding: 7px 11px;
  border: 1px solid rgba(22, 199, 132, 0.34);
  background: rgba(22, 199, 132, 0.1);
  color: var(--green);
  font-size: 12px;
}

.alert-pill {
  padding: 8px 15px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 107, 107, 0.36);
  background: rgba(255, 107, 107, 0.12);
  color: var(--red);
  font-size: 13px;
}

.tag {
  padding: 5px 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #08080c;
  font-size: 11px;
  text-transform: uppercase;
}

.hero,
.review-hero,
.bonus-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 62px;
  border-bottom: 1px solid var(--border);
}

.hero::before,
.review-hero::before,
.bonus-hero::before {
  content: "";
  position: absolute;
  inset: -180px auto auto 45%;
  width: 620px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(244, 196, 48, 0.18), transparent 64%);
  pointer-events: none;
}

.hero-grid,
.review-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 42px;
  align-items: start;
}

.lead {
  max-width: 720px;
  color: #c5c5cf;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #08080c;
  box-shadow: 0 10px 28px rgba(244, 196, 48, 0.24);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #d8d8e0;
}

.hero-panel,
.quick-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  line-height: 1.1;
}

.metric span {
  color: var(--muted-2);
  font-size: 13px;
}

.section {
  padding: 70px 0;
}

.section-dark {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casino-list,
.bonus-list {
  display: grid;
  gap: 18px;
}

.casino-card,
.bonus-card {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.casino-card.featured,
.bonus-card.featured {
  border-color: rgba(244, 196, 48, 0.42);
}

.bonus-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.rank {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
}

.casino-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  font-size: 22px;
}

.casino-logo.purple { background: linear-gradient(135deg, var(--purple), #7c4dff); }
.casino-logo.blue { background: linear-gradient(135deg, var(--blue), #2c8cff); }

.rating {
  color: var(--gold);
  font-size: 14px;
}

.facts,
.quick-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.facts div,
.quick-facts div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

dt {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 3px 0 0;
  color: var(--text);
  font-weight: 700;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row span {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #d8d8e0;
  font-size: 12px;
}

.chip-row.large span {
  padding: 9px 12px;
  font-size: 14px;
}

.disclosure,
.cta-band {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.small-note,
.muted {
  color: var(--muted-2);
  font-size: 13px;
}

.score-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 36px;
}

.score-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.score-list strong {
  color: var(--gold);
  font-size: 22px;
}

.pros-cons,
.card-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.card,
.faq-item {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.table-wrap {
  overflow-x: auto;
  margin: 22px 0 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: var(--text);
}

.bonus-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.offer {
  margin-bottom: 6px;
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 900px) {
  .header-wrap,
  .hero-grid,
  .review-grid,
  .casino-card,
  .bonus-card,
  .pros-cons,
  .card-grid,
  .faq-grid,
  .bonus-metrics {
    grid-template-columns: 1fr;
  }

  .header-wrap,
  .main-nav {
    align-items: flex-start;
  }

  .header-wrap {
    padding: 16px 0;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .casino-card,
  .bonus-card {
    align-items: stretch;
  }

  .card-actions {
    justify-content: flex-start;
  }

  .facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .wrap,
  .content-col {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .hero,
  .review-hero,
  .bonus-hero,
  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: 40px;
  }

  .age-pill {
    display: none;
  }
}
