@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --ink: #111111;
  --muted: #686868;
  --line: #dddddd;
  --soft: #f5f5f3;
  --paper: #ffffff;
  --black: #050505;
  --red: #c9232b;
  --red-dark: #a81920;
  --gold: #f0b323;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-shell {
  min-width: 320px;
  overflow: clip;
}

.container {
  width: min(1680px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border: 2px solid var(--red);
}

.skip-link:focus {
  top: 16px;
}

.red-rule {
  height: 6px;
  background: var(--red);
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--black);
  color: #fff;
}

.header-top {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-slot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 215px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.brand-slot {
  width: 190px;
  min-width: 190px;
  height: 56px;
  padding: 0;
  justify-content: center;
  font-size: 0;
  background-color: #fff;
  background-image: url("./images/WagerMark-Insights.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: calc(100% - 14px) auto;
  border-radius: 3px;
}

.brand-slot > * {
  display: none;
}

.brand-slot__mark {
  display: none !important;
}

.brand-slot small {
  display: block;
  margin-top: 5px;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #aaa;
}

.brand-slot__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-style: normal;
  font-size: 26px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.main-nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #f05a61;
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #333;
  background: #111;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.topic-bar {
  border-top: 1px solid #2a2a2a;
  background: #121212;
}

.topic-bar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  font-size: 12px;
}

.topic-bar__inner::-webkit-scrollbar {
  display: none;
}

.topic-bar__inner a {
  color: #c7c7c7;
}

.topic-bar__label {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-right: 4px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero {
  position: relative;
  padding: 28px 0 58px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 63%, rgba(245, 245, 243, 0.95) 63%),
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(201, 35, 43, 0.04) 10px 11px);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: #777;
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(45px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -3.5px;
}

.hero-deck {
  max-width: 760px;
  margin: 24px 0 0;
  color: #444;
  font-size: 18px;
  line-height: 1.65;
}

.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-size: 13px;
}

.byline small {
  display: block;
  margin-top: 2px;
  color: #777;
}

.avatar-placeholder {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--red);
  color: #fff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
}

.button--outline {
  border: 2px solid #171717;
  background: #fff;
  color: #171717;
}

.button--light {
  background: #fff;
  color: #090909;
}

.button--full {
  width: 100%;
}

.text-link,
.review-link {
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.image-slot {
  position: relative;
  min-height: 345px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px dashed #9f9f9f;
  background:
    linear-gradient(45deg, transparent 49.7%, #d2d2d2 49.8% 50.2%, transparent 50.3%),
    linear-gradient(-45deg, transparent 49.7%, #d2d2d2 49.8% 50.2%, transparent 50.3%),
    #ececea;
  color: #686868;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
}

.image-slot::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.image-slot__icon {
  font-size: 34px;
}

.image-slot--compact {
  width: 122px;
  min-height: 80px;
  flex: 0 0 122px;
  background:
    linear-gradient(45deg, transparent 49.5%, #e1e1e1 49.6% 50.4%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, #e1e1e1 49.6% 50.4%, transparent 50.5%),
    #f7f7f5;
  font-size: 8px;
}

.image-slot--compact .image-slot__icon {
  font-size: 20px;
}

.hero-visual .image-slot {
  border: 0;
  background-color: #080808;
  background-image: url("./images/casino-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero-visual .image-slot::after,
.hero-visual .image-slot > * {
  display: none;
}

.hero-visual {
  position: relative;
}

.hero-score {
  display: none;
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 130px;
  height: 92px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-score strong {
  font-size: 30px;
  line-height: 1;
}

.hero-score span {
  margin-top: 5px;
  color: #ccc;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-strip strong {
  font-size: 14px;
}

.trust-strip span {
  color: #777;
  font-size: 11px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 235px;
  gap: 66px;
  padding-top: 64px;
  padding-bottom: 84px;
}

.article {
  min-width: 0;
}

.article p {
  color: #3e3e3e;
}

.editor-note {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  margin-bottom: 58px;
  padding: 24px 26px;
  border-left: 5px solid var(--red);
  background: var(--soft);
}

.editor-note strong {
  font-size: 14px;
}

.editor-note p {
  margin: 0;
  font-size: 13px;
}

.content-section {
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.content-section:first-of-type {
  padding-top: 0;
}

.anchor-section {
  scroll-margin-top: 20px;
}

.content-section > h2,
.section-heading h2,
.key-insights h2,
.responsible-panel h2,
.author-card h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}

.content-section > p {
  max-width: 790px;
  margin: 0 0 20px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.updated-chip {
  flex: 0 0 auto;
  margin-bottom: 8px;
  padding: 5px 9px;
  background: #ebf7ec;
  color: #20702a;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 210px 110px minmax(180px, 1fr) 155px;
  grid-template-areas:
    "brand rating offer actions"
    "brand facts facts actions";
  align-items: center;
  gap: 10px 18px;
  padding: 22px 22px 22px 30px;
  border: 1px solid #d7d7d7;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.035);
}

.casino-card:hover {
  border-color: #bcbcbc;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.06);
}

.rank-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: #202020;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.casino-brand {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-list .image-slot--compact {
  border: 1px solid #242424;
  background-color: #161616;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.casino-list .image-slot--compact::after,
.casino-list .image-slot--compact > * {
  display: none;
}

.casino-list .casino-card:nth-child(1) .image-slot--compact {
  background-image: url("./images/cloud9-logo.webp");
}

.casino-list .casino-card:nth-child(2) .image-slot--compact {
  background-image: url("./images/richman96-logo.webp");
}

.casino-list .casino-card:nth-child(3) .image-slot--compact {
  background-image: url("./images/livebet777-logo.webp");
}

.casino-list .casino-card:nth-child(4) .image-slot--compact {
  background-image: url("./images/ipay777-logo.webp");
}

.casino-list .casino-card:nth-child(5) .image-slot--compact {
  background-image: url("./images/imperium777-logo.webp");
}

.casino-list .casino-card:nth-child(6) .image-slot--compact {
  background-image: url("./images/winfortune777-logo.webp");
}

.casino-list .casino-card:nth-child(7) .image-slot--compact {
  background-image: url("./images/spectre007-logo.webp");
}

.casino-list .casino-card:nth-child(8) .image-slot--compact {
  background-image: url("./images/pokies99-logo.webp");
}

.casino-name h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.casino-name span {
  color: #777;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.rating-block {
  grid-area: rating;
}

.rating-score strong {
  font-size: 27px;
  line-height: 1;
}

.rating-score span {
  color: #777;
  font-size: 11px;
}

.stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1px;
}

.verification-stars {
  margin-top: 5px;
  color: #676767;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.rating-block small,
.offer-block small {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 9px;
}

.offer-block {
  grid-area: offer;
}

.offer-block > span {
  display: block;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.offer-block strong {
  display: block;
  max-width: 280px;
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.35;
}

.casino-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 3px 0 0;
}

.casino-facts div {
  padding-top: 8px;
  border-top: 1px solid #e5e5e5;
}

.casino-facts dt {
  color: #888;
  font-size: 9px;
}

.casino-facts dd {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
}

.casino-actions {
  grid-area: actions;
  text-align: center;
}

.review-link {
  display: inline-block;
  margin-top: 8px;
  color: #555;
  font-size: 10px;
}

.show-more {
  display: flex;
  margin: 24px auto 0;
}

.key-insights {
  margin-top: 66px;
  padding: 46px;
  background: var(--black);
  color: #fff;
}

.key-insights h2 {
  max-width: 700px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 32px;
}

.insight-grid > div {
  padding-top: 20px;
  border-top: 1px solid #444;
}

.insight-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.insight-grid h3 {
  margin: 10px 0 7px;
  font-size: 16px;
}

.insight-grid p {
  margin: 0;
  color: #bfbfbf;
  font-size: 12px;
}

.table-scroll {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 730px;
  border-collapse: collapse;
  font-size: 12px;
}

th {
  padding: 15px;
  background: #111;
  color: #fff;
  font-size: 10px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

td {
  padding: 17px 15px;
  border-bottom: 1px solid #e6e6e6;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:nth-child(even) {
  background: #f8f8f7;
}

.table-score {
  display: inline-grid;
  width: 36px;
  height: 30px;
  place-items: center;
  background: #ebf7ec;
  color: #1b6b25;
  font-weight: 900;
}

.table-score--unrated {
  background: #ededeb;
  color: #4e4e4e;
}

.table-domain {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 9px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.mini-cta {
  display: inline-block;
  padding: 8px 10px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  white-space: nowrap;
}

.split-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.split-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}

.score-ring {
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 9px solid #ededed;
  border-top-color: var(--red);
  border-radius: 50%;
}

.score-ring strong {
  font-size: 22px;
  line-height: 1;
}

.score-ring span {
  margin-top: 5px;
  color: #777;
  font-size: 8px;
  text-transform: uppercase;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: #d9d9d9;
  border: 1px solid #d9d9d9;
}

.method-grid article {
  position: relative;
  min-height: 150px;
  padding: 28px 28px 24px 78px;
  background: #fff;
}

.method-grid article > span {
  position: absolute;
  left: 22px;
  top: 27px;
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
}

.method-grid h3 {
  margin: 0 0 7px;
  font-size: 16px;
}

.method-grid p {
  margin: 0;
  color: #606060;
  font-size: 12px;
}

.pull-quote {
  position: relative;
  margin-top: 34px;
  padding: 36px 40px 34px 80px;
  background: #f1f1ef;
}

.pull-quote > span {
  position: absolute;
  left: 28px;
  top: 11px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 70px;
}

.pull-quote blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  color: #777;
  font-size: 11px;
  font-style: normal;
}

.info-panel {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid #e2b7b9;
  background: #fff5f5;
}

.info-panel__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.info-panel h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.info-panel p {
  margin: 0;
  font-size: 13px;
}

.legal-alert {
  scroll-margin-top: 20px;
  margin: 28px 0 0;
  padding: 25px 28px;
  border-left: 6px solid var(--red);
  background: #151515;
  color: #fff;
}

.legal-alert__label {
  display: block;
  margin-bottom: 8px;
  color: #ff6b70;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.legal-alert h3 {
  max-width: 840px;
  margin: 0 0 10px;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.12;
}

.legal-alert p {
  max-width: 920px;
  margin: 0;
  color: #dedede;
  font-size: 13px;
}

.legal-alert__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-alert__actions a {
  padding: 10px 13px;
  border: 1px solid #555;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.legal-alert__actions a:first-child {
  border-color: var(--red);
  background: var(--red);
}

.numbered-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  margin: 28px 0 0;
  background: #d8d8d8;
  list-style: none;
  counter-reset: withdrawal-step;
}

.numbered-checklist li {
  position: relative;
  min-height: 132px;
  padding: 25px 24px 24px 72px;
  background: #fff;
  counter-increment: withdrawal-step;
}

.numbered-checklist li::before {
  content: counter(withdrawal-step, decimal-leading-zero);
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.numbered-checklist strong,
.numbered-checklist span {
  display: block;
}

.numbered-checklist strong {
  margin-bottom: 6px;
  font-size: 15px;
}

.numbered-checklist span {
  color: #5f5f5f;
  font-size: 12px;
  line-height: 1.55;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.concept-grid article {
  min-height: 220px;
  padding: 25px;
  border-top: 4px solid var(--red);
  background: #f3f3f1;
}

.concept-grid article > span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.concept-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.concept-grid p {
  margin: 0;
  color: #606060;
  font-size: 12px;
}

.info-panel--neutral {
  border-color: #d4d4d4;
  background: #f7f7f5;
}

.info-panel--neutral .info-panel__icon {
  background: #262626;
}

.record-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 28px;
  padding: 1px;
  background: #d8d8d8;
}

.record-grid > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  min-height: 112px;
  padding: 24px;
  background: #fff;
}

.record-grid > div > strong {
  color: var(--red);
  font-size: 12px;
}

.record-grid span {
  color: #666;
  font-size: 12px;
  line-height: 1.55;
}

.record-grid b {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 15px;
}

.source-note {
  max-width: none !important;
  margin-top: 20px !important;
  padding: 14px 16px;
  border-left: 3px solid #777;
  background: #f3f3f1;
  color: #555 !important;
  font-size: 11px !important;
}

.source-note a,
.source-list a {
  color: #151515;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-list {
  max-width: 860px;
  padding-left: 22px;
  margin: 25px 0 0;
}

.source-list li {
  padding: 7px 0;
  color: #555;
  font-size: 13px;
}

.media-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
}

.media-split h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -1.6px;
}

.media-split .image-slot {
  min-height: 340px;
}

.check-list {
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 27px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 13px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.payment-grid article {
  padding: 22px 18px;
  border: 1px solid var(--line);
}

.payment-logo {
  display: grid;
  width: 100%;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  background: #f2f2f0;
  color: #777;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
}

.payment-grid h3 {
  min-height: 40px;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.35;
}

.payment-grid dl {
  margin: 0;
}

.payment-grid dl > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid #e6e6e6;
  font-size: 10px;
}

.payment-grid dt {
  color: #777;
}

.payment-grid dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.fine-print {
  margin-top: 15px !important;
  color: #777 !important;
  font-size: 10px;
}

.feature-list {
  margin-top: 30px;
  border-top: 1px solid #d8d8d8;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #d8d8d8;
}

.feature-list strong {
  color: var(--red);
  font-size: 12px;
}

.feature-list span {
  color: #555;
  font-size: 13px;
}

.feature-list b {
  display: block;
  margin-bottom: 3px;
  color: #111;
  font-size: 15px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.game-grid article {
  border: 1px solid var(--line);
}

.game-image {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(45deg, transparent 49.7%, #d3d3d3 49.8% 50.2%, transparent 50.3%),
    linear-gradient(-45deg, transparent 49.7%, #d3d3d3 49.8% 50.2%, transparent 50.3%),
    #ececea;
  color: #555;
}

.game-image span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.game-image small {
  margin-top: 4px;
  font-size: 8px;
}

.game-grid h3 {
  margin: 18px 18px 5px;
  font-size: 15px;
}

.game-grid p {
  margin: 0 18px 20px;
  font-size: 11px;
}

.responsible-panel {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 50px;
  align-items: center;
  margin: 60px 0 0;
  padding: 46px;
  background: var(--red);
  color: #fff;
}

.responsible-panel .eyebrow {
  color: #fff;
  opacity: 0.75;
}

.responsible-panel h2 {
  max-width: 590px;
}

.responsible-panel p {
  margin: 0;
  color: #fff;
  opacity: 0.88;
  font-size: 13px;
}

.responsible-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.responsible-actions span {
  font-size: 9px;
  opacity: 0.7;
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid #ccc;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-item button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 2px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.faq-answer {
  padding: 0 56px 22px 2px;
}

.faq-answer p {
  margin: 0;
  font-size: 13px;
}

.author-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  margin-top: 58px;
  padding: 30px;
  background: #f2f2f0;
}

.author-photo {
  display: grid;
  min-height: 170px;
  place-items: center;
  border: 1px dashed #aaa;
  background:
    linear-gradient(45deg, transparent 49.7%, #d5d5d5 49.8% 50.2%, transparent 50.3%),
    linear-gradient(-45deg, transparent 49.7%, #d5d5d5 49.8% 50.2%, transparent 50.3%),
    #e5e5e3;
  color: #777;
  font-size: 9px;
  font-weight: 900;
}

.author-card h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.author-card p {
  margin: 0 0 15px;
  font-size: 13px;
}

.author-card a {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.sidebar {
  min-width: 0;
}

.sidebar-card {
  position: sticky;
  top: 22px;
  margin-bottom: 20px;
  padding: 23px;
  border-top: 4px solid var(--red);
  background: #f3f3f1;
}

.sidebar-card > p {
  margin: 0 0 15px;
  color: #222;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.sidebar-card nav {
  display: flex;
  flex-direction: column;
}

.sidebar-card nav a {
  padding: 9px 0;
  border-bottom: 1px solid #d6d6d4;
  color: #555;
  font-size: 12px;
}

.sidebar-card nav a:hover {
  color: var(--red);
}

.sidebar-card--dark {
  position: static;
  margin-top: 20px;
  background: #101010;
  color: #fff;
}

.sidebar-card--dark h3 {
  margin: 12px 0 8px;
  font-size: 17px;
  line-height: 1.3;
}

.sidebar-card--dark p {
  margin: 0 0 15px;
  color: #aaa;
  font-size: 11px;
}

.sidebar-card--dark a {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sidebar-card__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.site-footer {
  background: #020202;
  color: #fff;
}

.footer-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-intro p {
  max-width: 550px;
  margin: 18px 0 0;
  color: #e8e8e8;
  font-size: 14px;
}

.brand-slot--footer {
  min-width: 230px;
  width: 230px;
  height: 67px;
  font-size: 24px;
  background-size: calc(100% - 18px) auto;
}

.social-placeholder {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #1d1d1d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.social-placeholder > :first-child {
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  padding-top: 31px;
  padding-bottom: 31px;
  border-top: 1px solid #303030;
  border-bottom: 1px solid #303030;
}

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  position: relative;
  padding: 5px 0 5px 12px;
  color: #d8d8d8;
  font-size: 12px;
}

.footer-links li::before {
  content: "·";
  position: absolute;
  left: 1px;
  color: var(--red);
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-responsible {
  padding-top: 28px;
  padding-bottom: 30px;
  text-align: center;
}

.footer-responsible h3 {
  margin: 0 0 16px;
  font-size: 14px;
}

.support-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 26px;
}

.support-logos > div:not(.age-mark) {
  display: grid;
  min-width: 105px;
  height: 34px;
  place-items: center;
  border: 1px dashed #777;
  color: #bbb;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.age-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.footer-responsible p {
  max-width: 930px;
  margin: 17px auto 8px;
  color: #d4d4d4;
  font-size: 10px;
  font-style: italic;
  line-height: 1.55;
}

.footer-responsible small {
  color: #888;
  font-size: 9px;
}

@media (max-width: 1060px) {
  .container {
    width: min(1180px, calc(100% - 40px));
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    gap: 38px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 40px;
  }

  .casino-card {
    grid-template-columns: 180px 96px minmax(160px, 1fr) 135px;
    padding-right: 16px;
    padding-left: 25px;
  }

  .image-slot--compact {
    width: 110px;
    flex-basis: 110px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #0b0b0b;
    border-top: 1px solid #333;
  }

  .main-nav--open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid #292929;
  }

  .hero {
    background: #f7f7f5;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 620px;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .casino-card {
    grid-template-columns: 180px 100px minmax(180px, 1fr);
    grid-template-areas:
      "brand rating offer"
      "brand facts facts"
      "brand actions actions";
  }

  .casino-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .casino-actions .button {
    max-width: 210px;
  }

  .payment-grid,
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .red-rule {
    height: 4px;
  }

  .header-top {
    min-height: 78px;
  }

  .brand-slot {
    min-width: auto;
    font-size: 16px;
  }

  .brand-slot__mark {
    width: 35px;
    height: 35px;
    font-size: 21px;
  }

  .main-nav {
    top: 82px;
  }

  .topic-bar__inner {
    width: 100%;
    padding-right: 16px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .hero {
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 60px);
    letter-spacing: -2.3px;
  }

  .hero-deck {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .image-slot {
    min-height: 260px;
  }

  .hero-score {
    right: -6px;
  }

  .trust-strip__grid > div {
    min-height: 82px;
    padding: 15px;
  }

  .trust-strip strong {
    font-size: 12px;
  }

  .article-layout {
    padding-top: 44px;
    padding-bottom: 60px;
  }

  .editor-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .content-section {
    padding: 45px 0;
  }

  .content-section > h2,
  .section-heading h2,
  .key-insights h2,
  .responsible-panel h2,
  .split-heading h2,
  .media-split h2 {
    font-size: 32px;
    letter-spacing: -1.2px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .casino-card {
    grid-template-columns: 1fr 80px;
    grid-template-areas:
      "brand rating"
      "offer offer"
      "facts facts"
      "actions actions";
    gap: 18px 12px;
    padding: 24px 18px 22px 27px;
  }

  .casino-brand {
    flex-direction: row;
    align-items: center;
  }

  .image-slot--compact {
    width: 92px;
    min-height: 62px;
    flex-basis: 92px;
  }

  .casino-facts {
    gap: 8px;
  }

  .casino-actions {
    display: block;
  }

  .casino-actions .button {
    max-width: none;
  }

  .key-insights {
    margin: 50px -14px 0;
    padding: 36px 22px;
  }

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

  .split-heading {
    align-items: flex-start;
  }

  .score-ring {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
    border-width: 7px;
  }

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

  .pull-quote {
    padding: 40px 24px 28px;
  }

  .pull-quote > span {
    left: 20px;
    top: -2px;
    font-size: 58px;
  }

  .pull-quote blockquote {
    font-size: 18px;
  }

  .media-split {
    grid-template-columns: 1fr;
  }

  .media-split .image-slot {
    order: -1;
    min-height: 260px;
  }

  .payment-grid,
  .game-grid {
    grid-template-columns: 1fr 1fr;
  }

  .responsible-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-right: -14px;
    margin-left: -14px;
    padding: 36px 24px;
  }

  .author-card {
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px;
  }

  .author-photo {
    min-height: 130px;
  }

  .footer-intro {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 440px) {
  .brand-slot small {
    display: none;
  }

  .topic-bar__inner {
    gap: 19px;
  }

  .topic-bar__label {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .byline {
    align-items: flex-start;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .casino-card {
    grid-template-columns: 1fr 67px;
  }

  .casino-brand {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .casino-facts div {
    display: flex;
    justify-content: space-between;
  }

  .payment-grid,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .feature-list > div {
    grid-template-columns: 38px 1fr;
  }

  .author-card {
    grid-template-columns: 1fr;
  }

  .author-photo {
    max-width: 150px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
}

@media (max-width: 900px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-grid article {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .legal-alert {
    padding: 22px 20px;
  }

  .legal-alert__actions {
    flex-direction: column;
  }

  .legal-alert__actions a {
    text-align: center;
  }

  .numbered-checklist,
  .record-grid {
    grid-template-columns: 1fr;
  }

  .numbered-checklist li {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Requested dark showcase treatment for the ten operator cards. */
.casino-list {
  gap: 16px;
}

.casino-list .casino-card {
  grid-template-columns: 155px 140px minmax(185px, 1fr) 145px;
  grid-template-areas:
    "brand rating offer actions"
    "facts facts facts facts";
  gap: 0 18px;
  min-height: 226px;
  padding: 30px 24px 0;
  overflow: hidden;
  border: 1px solid #2f2f2f;
  background:
    radial-gradient(circle at 12% 12%, rgba(183, 105, 18, 0.52), transparent 28%),
    linear-gradient(105deg, #160b02 0%, #050505 40%, #000 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.casino-list .casino-card:hover {
  border-color: #7b551f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.casino-list .rank-badge {
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: #151515;
  font-size: 14px;
}

.casino-list .casino-brand {
  align-items: center;
  align-self: center;
  gap: 9px;
  text-align: center;
}

.casino-list .image-slot--compact {
  width: 145px;
  min-height: 88px;
  flex-basis: 145px;
  border: 0;
  background-color: transparent;
}

.casino-list .casino-name h3 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.casino-list .casino-name span {
  color: #b8b8b8;
  font-size: 9px;
}

.casino-list .rating-block {
  position: relative;
  align-self: center;
  min-height: 108px;
  padding: 14px 10px 12px;
  border: 1px solid #363636;
  border-radius: 4px;
  background: #1a1a1a;
  text-align: center;
}

.casino-list .rating-block::before {
  content: "Expert Rating";
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
}

.casino-list .rating-score {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
}

.casino-list .rating-score strong {
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.casino-list .rating-score span {
  padding-bottom: 2px;
  color: #cacaca;
  font-size: 10px;
}

.casino-list .stars {
  display: inline-block;
  margin-left: 4px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}

.casino-list .rating-block small {
  margin-top: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.casino-list .offer-block {
  align-self: center;
}

.casino-list .offer-block > span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.casino-list .offer-block strong {
  max-width: 330px;
  margin-top: 4px;
  color: #fff;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}

.casino-list .bonus-percent {
  font-size: 30px;
  letter-spacing: -1px;
}

.casino-list .offer-block small {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 6px;
  border: 1px solid rgba(255, 82, 82, 0.65);
  background: rgba(201, 26, 33, 0.2);
  color: #ffd2d2;
  font-size: 7px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.45px;
}

.casino-list .casino-actions {
  align-self: center;
}

.casino-list .casino-actions .button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #d00000;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.casino-list .casino-actions .button:hover,
.casino-list .casino-actions .button:focus-visible {
  background: #ed1717;
}

.casino-list .casino-facts {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 27px -24px 0;
  padding: 17px 28px;
  border-top: 1px solid #343434;
  background: rgba(0, 0, 0, 0.58);
}

.casino-list .casino-facts div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0;
  border: 0;
}

.casino-list .casino-facts dt {
  color: #d2d2d2;
  font-size: 10px;
  white-space: nowrap;
}

.casino-list .casino-facts dd {
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
}

/* Generated Q-style 3D game category art. */
.game-grid .game-image {
  min-height: 145px;
  background-color: #080808;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.game-grid article:nth-child(1) .game-image {
  background-image: url("./images/game-slots-3d.webp");
}

.game-grid article:nth-child(2) .game-image {
  background-image: url("./images/game-live-casino-3d.webp");
}

.game-grid article:nth-child(3) .game-image {
  background-image: url("./images/game-table-games-3d.webp");
}

.game-grid article:nth-child(4) .game-image {
  background-image: url("./images/game-jackpots-3d.webp");
}

.footer-links {
  display: none;
}

.footer-responsible {
  border-top: 1px solid #303030;
}

@media (max-width: 1060px) {
  .casino-list .casino-card {
    grid-template-columns: 145px 130px minmax(170px, 1fr) 135px;
    gap: 0 14px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .casino-list .image-slot--compact {
    width: 132px;
    flex-basis: 132px;
  }

  .casino-list .offer-block strong {
    font-size: 20px;
  }

  .casino-list .bonus-percent {
    font-size: 27px;
  }

  .casino-list .casino-facts {
    margin-right: -20px;
    margin-left: -20px;
  }
}

@media (max-width: 780px) {
  .casino-list .casino-card {
    grid-template-columns: minmax(0, 1fr) 150px;
    grid-template-areas:
      "brand rating"
      "offer actions"
      "facts facts";
    gap: 22px 24px;
  }

  .casino-list .casino-brand {
    flex-direction: row;
    justify-self: start;
    text-align: left;
  }

  .casino-list .casino-facts {
    margin-top: 4px;
  }
}

@media (max-width: 560px) {
  .casino-list .casino-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "rating"
      "offer"
      "actions"
      "facts";
    gap: 18px;
    padding-top: 28px;
  }

  .casino-list .casino-brand {
    justify-self: center;
  }

  .casino-list .rating-block {
    width: min(100%, 230px);
    justify-self: center;
  }

  .casino-list .offer-block {
    text-align: center;
  }

  .casino-list .offer-block strong {
    margin-right: auto;
    margin-left: auto;
  }

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

  .casino-list .casino-facts div {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .casino-list .casino-facts {
    grid-template-columns: 1fr;
  }
}

/* Generated imagery for the remaining editorial placeholders. */
.media-split .image-slot {
  border: 0;
  background: #080808 url("./images/bonus-guide-3d.webp") center / cover no-repeat;
  color: transparent;
}

.media-split .image-slot::after,
.media-split .image-slot > * {
  display: none;
}

.author-photo {
  border: 0;
  background: #dedbdc url("./images/editorial-team-3d.webp") center 18% / cover no-repeat;
  color: transparent;
  font-size: 0;
}

.support-logos > div:not(.age-mark) {
  width: 118px;
  min-width: 118px;
  height: 42px;
  border: 1px solid #242424;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
  font-size: 0;
}

.support-logos > div:nth-child(1) {
  background-image: url("./images/support-budget-3d.webp");
}

.support-logos > div:nth-child(2) {
  background-image: url("./images/support-time-3d.webp");
}

.support-logos > div:nth-child(3) {
  background-image: url("./images/support-pause-3d.webp");
}

.support-logos > div:nth-child(4) {
  background-image: url("./images/support-talk-3d.webp");
}

.support-logos > div:nth-child(5) {
  background-image: url("./images/support-recovery-3d.webp");
}

/* Homepage polish and section-aware primary navigation. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.header-top {
  min-height: 88px;
}

.header-top .brand-slot {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.main-nav {
  gap: 3px;
  padding: 5px;
  border: 1px solid #282828;
  border-radius: 999px;
  background: #0d0d0d;
}

.main-nav a {
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  color: #f4f4f4;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  border-color: transparent;
  background: var(--red);
  color: #fff;
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.main-nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.topic-bar {
  border-top-color: #242424;
  border-bottom: 1px solid #242424;
  background: #151515;
}

.topic-bar__inner {
  min-height: 46px;
}

.topic-bar__inner a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: #d7d7d7;
  transition: color 160ms ease;
}

.topic-bar__inner a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.topic-bar__inner a:hover,
.topic-bar__inner a:focus-visible {
  color: #fff;
}

.topic-bar__inner a:hover::after,
.topic-bar__inner a:focus-visible::after {
  transform: scaleX(1);
}

.anchor-section,
#safety {
  scroll-margin-top: 158px;
}

.hero {
  isolation: isolate;
  overflow: hidden;
  padding: 30px 0 72px;
  background:
    radial-gradient(circle at 85% 18%, rgba(240, 179, 35, 0.17), transparent 27%),
    radial-gradient(circle at 71% 85%, rgba(201, 35, 43, 0.1), transparent 24%),
    linear-gradient(90deg, #fff 0 61%, #f2efeb 61% 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 430px;
  height: 430px;
  top: -245px;
  right: -105px;
  border: 1px solid rgba(201, 35, 43, 0.16);
  box-shadow: 0 0 0 44px rgba(201, 35, 43, 0.025);
}

.hero::after {
  width: 240px;
  height: 240px;
  right: 43%;
  bottom: -188px;
  border: 1px solid rgba(240, 179, 35, 0.2);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  margin-bottom: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  gap: clamp(42px, 5vw, 86px);
}

.hero-copy {
  padding: 16px 0 12px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 10px 6px 12px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(52px, 5.2vw, 88px);
  line-height: 0.95;
  letter-spacing: -4px;
}

.hero h1 span {
  color: var(--red);
}

.hero-deck {
  max-width: 735px;
  margin-top: 28px;
  color: #373737;
  font-size: 17px;
  line-height: 1.72;
}

.byline {
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 10px 15px 10px 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.76);
}

.avatar-placeholder {
  background: linear-gradient(135deg, #141414, #353535);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.hero-actions {
  gap: 18px;
  margin-top: 28px;
}

.hero-actions .button {
  min-height: 50px;
  padding-right: 26px;
  padding-left: 26px;
  border-radius: 3px;
  box-shadow: 0 10px 24px rgba(201, 35, 43, 0.2);
}

.hero-actions .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  text-decoration-color: rgba(17, 17, 17, 0.35);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.hero-actions .text-link:hover,
.hero-actions .text-link:focus-visible {
  color: var(--red);
  text-decoration-color: var(--red);
}

.hero-visual {
  isolation: isolate;
  padding: 12px 12px 0;
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  background: #050505;
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.24),
    0 0 0 8px rgba(255, 255, 255, 0.48);
}

.hero-visual::before {
  content: "2026 AUSTRALIA DIRECTORY";
  position: absolute;
  top: -15px;
  left: 25px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 3px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 8px 18px rgba(201, 35, 43, 0.28);
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 9% -7% -8% 18%;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(201, 35, 43, 0.24), rgba(240, 179, 35, 0.18));
  filter: blur(26px);
}

.hero-visual .image-slot {
  min-height: 365px;
  border-radius: 8px 8px 3px 3px;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-visual__caption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 -12px;
  border-top: 1px solid #2c2c2c;
  border-radius: 0 0 13px 13px;
  overflow: hidden;
  background: #2c2c2c;
}

.hero-visual__caption span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  padding: 9px 7px;
  background: #0a0a0a;
  color: #bdbdbd;
  font-size: 9px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.hero-visual__caption strong {
  color: #fff;
  font-size: 13px;
}

.trust-strip {
  border-bottom: 0;
  background: #0b0b0b;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.trust-strip__grid > div,
.trust-strip__grid > div:first-child,
.trust-strip__grid > div:nth-child(3) {
  position: relative;
  min-height: 96px;
  padding: 18px 24px 18px 70px;
  border-color: #292929;
}

.trust-strip__grid > div::before {
  content: "✓";
  position: absolute;
  left: 25px;
  top: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(201, 35, 43, 0.14);
  color: #ff5961;
  font-size: 13px;
  transform: translateY(-50%);
}

.trust-strip strong {
  color: #fff;
}

.trust-strip span {
  color: #a9a9a9;
}

@media (max-width: 1200px) {
  .main-nav a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.6vw, 70px);
  }

  .hero-visual .image-slot {
    min-height: 330px;
  }
}

@media (max-width: 900px) {
  .header-top {
    min-height: 82px;
  }

  .main-nav {
    position: absolute;
    top: 88px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.98);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }

  .main-nav--open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 11px 14px;
    border: 0;
    border-radius: 7px;
  }

  .hero {
    background:
      radial-gradient(circle at 82% 70%, rgba(240, 179, 35, 0.16), transparent 28%),
      linear-gradient(180deg, #fff 0 55%, #f2efeb 55% 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: 100%;
    max-width: none;
  }

  .hero-visual .image-slot {
    min-height: 410px;
  }
}

@media (max-width: 680px) {
  .header-top {
    min-height: 74px;
  }

  .header-top .brand-slot {
    width: 168px;
    min-width: 168px;
    height: 50px;
  }

  .main-nav {
    top: 78px;
  }

  .anchor-section,
  #safety {
    scroll-margin-top: 132px;
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 54px;
  }

  .breadcrumbs {
    margin-bottom: 25px;
  }

  .hero .eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 0.98;
    letter-spacing: -2.7px;
  }

  .hero-deck {
    margin-top: 22px;
    font-size: 15px;
  }

  .byline {
    width: 100%;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    padding: 8px 8px 0;
    border-radius: 10px;
  }

  .hero-visual::before {
    left: 17px;
  }

  .hero-visual .image-slot {
    min-height: 280px;
  }

  .hero-visual__caption {
    margin-right: -8px;
    margin-left: -8px;
  }

  .hero-visual__caption span {
    min-height: 48px;
    padding: 7px 4px;
    font-size: 7px;
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child,
  .trust-strip__grid > div:nth-child(3) {
    padding-left: 56px;
  }

  .trust-strip__grid > div::before {
    left: 15px;
  }
}

@media (max-width: 440px) {
  .hero-visual .image-slot {
    min-height: 235px;
  }

  .hero-visual__caption strong {
    display: block;
    font-size: 11px;
  }

  .hero-visual__caption span {
    display: block;
  }
}

/* Larger editorial typography with a distinctive display face. */
body {
  font-weight: 500;
  letter-spacing: -0.08px;
}

h1,
h2,
h3,
.eyebrow,
.main-nav,
.topic-bar,
.button,
.text-link,
.rank-badge,
.updated-chip,
.rating-block,
.offer-block,
.casino-facts,
.table-score,
.mini-cta,
.score-ring,
.payment-logo,
.feature-list strong,
.hero-visual__caption,
.footer-responsible h3 {
  font-family: var(--font-display);
}

h1,
h2,
h3 {
  font-weight: 700;
}

.main-nav {
  font-size: 14px;
  letter-spacing: 0.45px;
}

.topic-bar__inner {
  font-size: 13px;
  letter-spacing: 0.3px;
}

.breadcrumbs {
  font-size: 13px;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 1.7px;
}

.hero h1 {
  letter-spacing: -2px;
}

.hero-deck {
  font-size: 19px;
}

.byline {
  font-size: 14px;
}

.byline small {
  font-size: 12px;
}

.button {
  font-size: 14px;
  letter-spacing: 0.85px;
}

.text-link,
.review-link {
  font-size: 14px;
}

.trust-strip strong {
  font-size: 16px;
}

.trust-strip span {
  font-size: 13px;
}

.editor-note strong {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.35px;
}

.editor-note p {
  font-size: 15px;
}

.content-section > h2,
.section-heading h2,
.key-insights h2,
.responsible-panel h2,
.author-card h2,
.split-heading h2,
.media-split h2 {
  font-size: clamp(36px, 3.7vw, 50px);
  letter-spacing: -0.8px;
}

.content-section > p,
.media-split p,
.responsible-panel p {
  font-size: 17px;
}

.updated-chip {
  font-size: 11px;
}

.casino-list .casino-name h3 {
  font-size: 17px;
  letter-spacing: 0.35px;
}

.casino-list .casino-name span {
  font-family: var(--font-body);
  font-size: 10px;
}

.casino-list .rating-block::before {
  font-size: 14px;
}

.casino-list .rating-score strong {
  font-size: 30px;
}

.casino-list .rating-score span {
  font-size: 11px;
}

.casino-list .rating-block small {
  font-size: 14px;
}

.casino-list .offer-block > span {
  font-size: 15px;
}

.casino-list .offer-block strong {
  font-size: 24px;
}

.casino-list .bonus-percent {
  font-size: 32px;
}

.casino-list .casino-facts dt {
  font-size: 11px;
}

.casino-list .casino-facts dd {
  font-size: 15px;
}

.casino-list .casino-actions .button {
  font-size: 18px;
}

table {
  font-size: 14px;
}

th {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.65px;
}

.table-domain {
  font-size: 10px;
}

.mini-cta {
  font-size: 11px;
}

.method-grid h3,
.concept-grid h3,
.record-grid b,
.payment-grid h3,
.game-grid h3 {
  font-size: 18px;
}

.method-grid p,
.concept-grid p,
.record-grid span,
.payment-grid dl > div,
.game-grid p,
.feature-list span {
  font-size: 13px;
}

.feature-list b {
  font-size: 17px;
}

.faq-item button {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.2px;
}

.faq-answer p,
.author-card p {
  font-size: 15px;
}

.sidebar-card > p {
  font-family: var(--font-display);
  font-size: 12px;
}

.sidebar-card nav a {
  font-size: 13px;
}

.sidebar-card--dark h3 {
  font-size: 20px;
}

.sidebar-card--dark p {
  font-size: 12px;
}

.footer-intro p {
  font-size: 16px;
}

.footer-responsible h3 {
  font-size: 17px;
  letter-spacing: 0.5px;
}

.footer-responsible p {
  font-size: 12px;
}

.footer-responsible small {
  font-size: 10px;
}

@media (max-width: 1060px) {
  body {
    font-size: 17px;
  }

  .main-nav {
    font-size: 13px;
  }

  .casino-list .offer-block strong {
    font-size: 22px;
  }

  .casino-list .bonus-percent {
    font-size: 29px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    letter-spacing: -1.2px;
  }

  .hero-deck {
    font-size: 17px;
  }

  .content-section > h2,
  .section-heading h2,
  .key-insights h2,
  .responsible-panel h2,
  .author-card h2,
  .split-heading h2,
  .media-split h2 {
    font-size: 36px;
  }

  .content-section > p,
  .media-split p,
  .responsible-panel p {
    font-size: 16px;
  }
}

@media (max-width: 440px) {
  body {
    font-size: 16px;
  }

  .content-section > h2,
  .section-heading h2,
  .key-insights h2,
  .responsible-panel h2,
  .author-card h2,
  .split-heading h2,
  .media-split h2 {
    font-size: 32px;
  }
}

/* Extra-large type scale requested across the complete page. */
body {
  font-size: 20px;
  line-height: 1.72;
}

.main-nav {
  font-size: 16px;
}

.topic-bar__inner {
  font-size: 15px;
}

.breadcrumbs {
  font-size: 15px;
}

.eyebrow {
  font-size: 16px;
}

.hero h1 {
  font-size: clamp(62px, 5.8vw, 96px);
}

.hero-deck {
  font-size: 22px;
}

.byline {
  font-size: 16px;
}

.byline small {
  font-size: 14px;
}

.button,
.text-link,
.review-link {
  font-size: 16px;
}

.trust-strip strong {
  font-size: 19px;
}

.trust-strip span {
  font-size: 15px;
}

.editor-note strong {
  font-size: 20px;
}

.editor-note p {
  font-size: 17px;
}

.content-section > h2,
.section-heading h2,
.key-insights h2,
.responsible-panel h2,
.author-card h2,
.split-heading h2,
.media-split h2 {
  font-size: clamp(44px, 4.1vw, 58px);
}

.content-section > p,
.media-split p,
.responsible-panel p {
  font-size: 19px;
}

.updated-chip {
  font-size: 13px;
}

.casino-list .casino-card {
  min-height: 260px;
}

.casino-list .casino-name h3 {
  font-size: 20px;
}

.casino-list .casino-name span {
  font-size: 12px;
}

.casino-list .rating-block::before {
  font-size: 17px;
}

.casino-list .rating-score strong {
  font-size: 36px;
}

.casino-list .rating-score span {
  font-size: 13px;
}

.casino-list .rating-block small {
  font-size: 17px;
}

.casino-list .offer-block > span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.casino-list .offer-block strong {
  max-width: 430px;
  margin-top: 7px;
  font-size: 34px;
  line-height: 1.08;
}

.casino-list .bonus-percent {
  font-size: 48px;
  line-height: 0.95;
}

.casino-list .casino-facts dt {
  font-size: 14px;
}

.casino-list .casino-facts dd {
  font-size: 18px;
}

.casino-list .casino-actions .button {
  min-height: 60px;
  font-size: 21px;
}

table {
  font-size: 16px;
}

th {
  font-size: 14px;
}

.table-domain,
.mini-cta {
  font-size: 12px;
}

.method-grid h3,
.concept-grid h3,
.record-grid b,
.payment-grid h3,
.game-grid h3,
.feature-list b {
  font-size: 21px;
}

.method-grid p,
.concept-grid p,
.record-grid span,
.payment-grid dl > div,
.game-grid p,
.feature-list span {
  font-size: 15px;
}

.faq-item button {
  font-size: 21px;
}

.faq-answer p,
.author-card p {
  font-size: 17px;
}

.sidebar-card > p {
  font-size: 14px;
}

.sidebar-card nav a {
  font-size: 15px;
}

.sidebar-card--dark h3 {
  font-size: 23px;
}

.sidebar-card--dark p {
  font-size: 14px;
}

.footer-intro p {
  font-size: 18px;
}

.footer-responsible h3 {
  font-size: 20px;
}

.footer-responsible p {
  font-size: 14px;
}

.footer-responsible small {
  font-size: 12px;
}

@media (max-width: 1200px) {
  body {
    font-size: 19px;
  }

  .main-nav {
    font-size: 14px;
  }

  .casino-list .offer-block > span {
    font-size: 18px;
  }

  .casino-list .offer-block strong {
    font-size: 30px;
  }

  .casino-list .bonus-percent {
    font-size: 42px;
  }
}

@media (max-width: 780px) {
  .casino-list .offer-block > span {
    font-size: 19px;
  }

  .casino-list .offer-block strong {
    font-size: 32px;
  }

  .casino-list .bonus-percent {
    font-size: 44px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 64px);
  }

  .hero-deck {
    font-size: 19px;
  }

  .content-section > h2,
  .section-heading h2,
  .key-insights h2,
  .responsible-panel h2,
  .author-card h2,
  .split-heading h2,
  .media-split h2 {
    font-size: 39px;
  }

  .content-section > p,
  .media-split p,
  .responsible-panel p {
    font-size: 17px;
  }
}

@media (max-width: 440px) {
  body {
    font-size: 17px;
  }

  .casino-list .offer-block strong {
    font-size: 29px;
  }

  .casino-list .bonus-percent {
    font-size: 40px;
  }
}

/* Logo-derived colour treatment for each operator card. */
.casino-list .casino-card {
  --card-brand-start: #4f3108;
  --card-brand-mid: #201405;
  --card-brand-glow: rgba(235, 176, 55, 0.42);
  --card-brand-accent: #e8ad35;
  border-color: #303030;
  background:
    radial-gradient(ellipse at 8% 36%, var(--card-brand-glow) 0%, transparent 35%),
    linear-gradient(100deg, var(--card-brand-start) 0%, var(--card-brand-mid) 21%, #080808 40%, #000 100%);
  box-shadow:
    inset 4px 0 0 var(--card-brand-accent),
    0 8px 24px rgba(0, 0, 0, 0.18);
}

.casino-list .casino-card:hover {
  border-color: #484848;
  box-shadow:
    inset 4px 0 0 var(--card-brand-accent),
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 20px var(--card-brand-glow);
}

.casino-list .image-slot--compact {
  filter: drop-shadow(0 0 12px var(--card-brand-glow));
  transition: filter 180ms ease, transform 180ms ease;
}

.casino-list .casino-card:hover .image-slot--compact {
  filter: drop-shadow(0 0 18px var(--card-brand-glow));
  transform: translateY(-2px);
}

.casino-list .rank-badge {
  box-shadow: inset 0 -3px 0 var(--card-brand-accent);
}

.casino-list .casino-card:nth-child(1) {
  --card-brand-start: #5a3505;
  --card-brand-mid: #251704;
  --card-brand-glow: rgba(240, 179, 35, 0.5);
  --card-brand-accent: #f0b323;
}

.casino-list .casino-card:nth-child(2) {
  --card-brand-start: #572504;
  --card-brand-mid: #271103;
  --card-brand-glow: rgba(236, 143, 36, 0.5);
  --card-brand-accent: #ffad42;
}

.casino-list .casino-card:nth-child(3) {
  --card-brand-start: #4b3803;
  --card-brand-mid: #211803;
  --card-brand-glow: rgba(255, 207, 38, 0.48);
  --card-brand-accent: #ffd54a;
}

.casino-list .casino-card:nth-child(4) {
  --card-brand-start: #071f55;
  --card-brand-mid: #07142e;
  --card-brand-glow: rgba(34, 108, 244, 0.58);
  --card-brand-accent: #2e7dff;
}

.casino-list .casino-card:nth-child(5) {
  --card-brand-start: #06351e;
  --card-brand-mid: #061d12;
  --card-brand-glow: rgba(0, 200, 103, 0.5);
  --card-brand-accent: #18d97a;
}

.casino-list .casino-card:nth-child(6) {
  --card-brand-start: #370749;
  --card-brand-mid: #1d0627;
  --card-brand-glow: rgba(207, 39, 255, 0.52);
  --card-brand-accent: #e34cff;
}

.casino-list .casino-card:nth-child(7) {
  --card-brand-start: #21064b;
  --card-brand-mid: #120629;
  --card-brand-glow: rgba(111, 63, 255, 0.56);
  --card-brand-accent: #8d66ff;
}

.casino-list .casino-card:nth-child(8) {
  --card-brand-start: #071d49;
  --card-brand-mid: #08152c;
  --card-brand-glow: rgba(39, 119, 255, 0.54);
  --card-brand-accent: #3385ff;
}

.casino-list .casino-card:nth-child(9) {
  --card-brand-start: #043440;
  --card-brand-mid: #062027;
  --card-brand-glow: rgba(0, 192, 229, 0.52);
  --card-brand-accent: #22d5f5;
}

.casino-list .casino-card:nth-child(10) {
  --card-brand-start: #0b3b17;
  --card-brand-mid: #081f0e;
  --card-brand-glow: rgba(32, 194, 80, 0.52);
  --card-brand-accent: #3bd865;
}

/* ========================================================================
   Unified responsive layout — desktop, iPad/tablet and phone
   This final layer intentionally overrides earlier experimental breakpoints.
   ======================================================================== */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-shell {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.container {
  width: min(1440px, calc(100% - clamp(32px, 5vw, 80px)));
}

.hero-copy,
.hero-visual,
.article,
.sidebar,
.casino-card > *,
.section-heading > *,
.media-split > *,
.responsible-panel > *,
.author-card > *,
.footer-intro > * {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
span,
strong,
dd,
dt {
  overflow-wrap: anywhere;
}

.table-scroll {
  max-width: 100%;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.menu-toggle {
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Desktop and small-laptop refinement. */
@media (max-width: 1280px) {
  .container {
    width: min(1180px, calc(100% - 48px));
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 42px;
  }

  .casino-list .casino-card {
    grid-template-columns: 145px 128px minmax(0, 1fr) 132px;
    gap: 0 14px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .casino-list .image-slot--compact {
    width: 132px;
    flex-basis: 132px;
  }

  .casino-list .offer-block strong {
    font-size: 28px;
  }

  .casino-list .casino-actions .button {
    font-size: 18px;
  }
}

/* iPad, tablet and narrow laptop. */
@media (max-width: 1100px) {
  body {
    font-size: 18px;
  }

  .container {
    width: min(960px, calc(100% - 40px));
  }

  .header-top {
    min-height: 78px;
  }

  .header-top .brand-slot {
    width: 178px;
    min-width: 178px;
    height: 52px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    z-index: 120;
    top: 84px;
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid #353535;
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.985);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  }

  .main-nav--open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 7px;
  }

  .topic-bar__inner {
    gap: 22px;
    padding-right: 4px;
  }

  .hero {
    padding-bottom: 60px;
    background:
      radial-gradient(circle at 82% 72%, rgba(240, 179, 35, 0.16), transparent 28%),
      linear-gradient(180deg, #fff 0 54%, #f2efeb 54% 100%);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .hero-copy {
    max-width: 860px;
  }

  .hero h1 {
    max-width: 900px;
    font-size: clamp(54px, 8vw, 78px);
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual .image-slot {
    min-height: 0;
    aspect-ratio: 16 / 8.8;
  }

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

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child,
  .trust-strip__grid > div:nth-child(3) {
    min-height: 88px;
    border-left: 0;
    border-right: 1px solid #292929;
    border-bottom: 1px solid #292929;
  }

  .trust-strip__grid > div:nth-child(2n) {
    border-right: 0;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding-top: 52px;
    padding-bottom: 68px;
  }

  .sidebar {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 20px;
  }

  .casino-list .casino-card {
    grid-template-columns: minmax(0, 1fr) 180px;
    grid-template-areas:
      "brand rating"
      "offer actions"
      "facts facts";
    gap: 22px 24px;
    min-height: 0;
    padding: 28px 24px 0;
  }

  .casino-list .casino-brand {
    flex-direction: row;
    align-items: center;
    justify-self: start;
    gap: 16px;
    text-align: left;
  }

  .casino-list .image-slot--compact {
    width: 140px;
    min-height: 84px;
    flex-basis: 140px;
  }

  .casino-list .rating-block {
    width: 180px;
    justify-self: end;
  }

  .casino-list .offer-block strong {
    max-width: none;
    font-size: 28px;
  }

  .casino-list .casino-actions {
    width: 180px;
    justify-self: end;
  }

  .casino-list .casino-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 -24px;
    padding: 16px 24px;
  }

  .casino-list .casino-facts div {
    min-width: 0;
    flex-wrap: wrap;
  }

  .casino-list .casino-facts dt,
  .casino-list .casino-facts dd {
    white-space: normal;
  }

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

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

  .responsible-panel {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 32px;
    padding: 38px;
  }
}

/* Phones and small tablets. */
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.66;
  }

  .container {
    width: calc(100% - 32px);
  }

  .header-top {
    min-height: 70px;
    gap: 14px;
  }

  .header-top .brand-slot {
    width: 154px;
    min-width: 154px;
    height: 46px;
    background-size: calc(100% - 12px) auto;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    top: 76px;
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 102px);
  }

  .topic-bar__inner {
    min-height: 42px;
    gap: 18px;
    font-size: 12px;
  }

  .topic-bar__label {
    padding: 0 14px;
  }

  .topic-bar__inner a {
    min-height: 42px;
  }

  .hero {
    padding: 20px 0 46px;
  }

  .breadcrumbs {
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 11px;
    font-size: 12px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy {
    padding-top: 6px;
  }

  .hero .eyebrow {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 54px);
    line-height: 1;
    letter-spacing: -1.5px;
  }

  .hero-deck {
    margin-top: 19px;
    font-size: 17px;
    line-height: 1.62;
  }

  .byline {
    width: 100%;
    gap: 10px;
    margin-top: 22px;
    padding: 10px;
    font-size: 13px;
  }

  .byline small {
    font-size: 11px;
    line-height: 1.45;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    padding: 7px 7px 0;
    border-radius: 9px;
  }

  .hero-visual::before {
    top: -13px;
    left: 14px;
    font-size: 8px;
  }

  .hero-visual .image-slot {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hero-visual__caption {
    margin-right: -7px;
    margin-left: -7px;
  }

  .hero-visual__caption span {
    min-height: 47px;
    padding: 7px 4px;
    font-size: 7px;
    line-height: 1.25;
  }

  .hero-visual__caption strong {
    font-size: 11px;
  }

  .trust-strip__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-strip__grid > div,
  .trust-strip__grid > div:first-child,
  .trust-strip__grid > div:nth-child(3),
  .trust-strip__grid > div:nth-child(2n) {
    min-height: 72px;
    padding: 13px 14px 13px 52px;
    border-right: 0;
    border-bottom: 1px solid #292929;
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .trust-strip__grid > div::before {
    left: 14px;
    width: 26px;
    height: 26px;
  }

  .trust-strip strong {
    font-size: 15px;
  }

  .trust-strip span {
    font-size: 12px;
  }

  .article-layout {
    gap: 38px;
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .editor-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 42px;
    padding: 20px 18px;
  }

  .editor-note strong {
    font-size: 17px;
  }

  .editor-note p {
    font-size: 14px;
  }

  .content-section {
    padding: 42px 0;
  }

  .section-heading,
  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .updated-chip {
    align-self: flex-start;
    margin: 0;
    font-size: 10px;
  }

  .content-section > h2,
  .section-heading h2,
  .key-insights h2,
  .responsible-panel h2,
  .author-card h2,
  .split-heading h2,
  .media-split h2 {
    font-size: clamp(31px, 9vw, 39px);
    line-height: 1.08;
  }

  .content-section > p,
  .media-split p,
  .responsible-panel p {
    font-size: 16px;
  }

  .legal-alert {
    padding: 21px 18px;
  }

  .legal-alert h3 {
    font-size: 25px;
  }

  .legal-alert p {
    font-size: 14px;
  }

  .casino-list {
    gap: 15px;
    margin-top: 24px;
  }

  .casino-list .casino-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "rating"
      "offer"
      "facts"
      "actions";
    gap: 17px;
    padding: 24px 18px 20px;
  }

  .casino-list .rank-badge {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .casino-list .casino-brand {
    width: 100%;
    flex-direction: row;
    justify-self: stretch;
    gap: 14px;
    padding-left: 12px;
    text-align: left;
  }

  .casino-list .image-slot--compact {
    width: 122px;
    min-height: 72px;
    flex-basis: 122px;
  }

  .casino-list .casino-name {
    min-width: 0;
  }

  .casino-list .casino-name h3 {
    font-size: 19px;
  }

  .casino-list .casino-name span {
    font-size: 11px;
  }

  .casino-list .rating-block {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 5px 9px;
    justify-self: stretch;
    padding: 13px 14px;
    text-align: left;
  }

  .casino-list .rating-block::before {
    grid-column: 1;
    margin: 0;
    font-size: 14px;
  }

  .casino-list .rating-score {
    grid-column: 2;
  }

  .casino-list .rating-score strong {
    font-size: 30px;
  }

  .casino-list .stars {
    grid-column: 3;
    margin: 0;
    font-size: 14px;
  }

  .casino-list .rating-block small {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 12px;
  }

  .casino-list .offer-block {
    text-align: left;
  }

  .casino-list .offer-block > span {
    font-size: 14px;
  }

  .casino-list .offer-block strong {
    max-width: none;
    margin-top: 4px;
    font-size: 27px;
    line-height: 1.12;
  }

  .casino-list .bonus-percent {
    font-size: 37px;
  }

  .casino-list .offer-block small {
    font-size: 8px;
  }

  .casino-list .casino-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 1px;
    border: 1px solid #333;
    background: #333;
  }

  .casino-list .casino-facts div {
    min-width: 0;
    display: block;
    padding: 11px 12px;
    background: rgba(0, 0, 0, 0.78);
  }

  .casino-list .casino-facts dt,
  .casino-list .casino-facts dd {
    white-space: normal;
  }

  .casino-list .casino-facts dt {
    font-size: 11px;
  }

  .casino-list .casino-facts dd {
    margin-top: 2px;
    font-size: 15px;
  }

  .casino-list .casino-actions {
    width: 100%;
    justify-self: stretch;
  }

  .casino-list .casino-actions .button {
    min-height: 52px;
    font-size: 18px;
  }

  .casino-list .review-link {
    margin-top: 10px;
    font-size: 13px;
  }

  .key-insights {
    margin-top: 46px;
    padding: 30px 22px;
  }

  .insight-grid,
  .method-grid,
  .numbered-checklist,
  .concept-grid,
  .record-grid,
  .payment-grid,
  .game-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .method-grid article {
    min-height: 0;
    padding: 23px 20px 21px 62px;
  }

  .method-grid article > span {
    left: 18px;
    top: 22px;
  }

  .numbered-checklist li {
    min-height: 0;
  }

  .concept-grid article {
    min-height: 0;
  }

  .record-grid > div {
    min-height: 0;
    padding: 20px;
  }

  .media-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .media-split .image-slot {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .payment-grid article,
  .game-grid article {
    min-width: 0;
  }

  .game-grid .game-image {
    min-height: 190px;
  }

  .feature-list > div {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .responsible-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    margin-top: 44px;
    padding: 30px 22px;
  }

  .responsible-actions {
    width: 100%;
  }

  .faq-item button {
    min-height: 62px;
    padding: 15px 0;
    font-size: 18px;
    line-height: 1.3;
  }

  .faq-answer {
    padding: 0 42px 19px 0;
  }

  .author-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin-top: 44px;
    padding: 22px;
  }

  .author-photo {
    min-height: 0;
    aspect-ratio: 16 / 10;
    background-position: center 18%;
  }

  .pull-quote {
    padding: 30px 20px 27px 55px;
  }

  .pull-quote > span {
    left: 17px;
    font-size: 54px;
  }

  .pull-quote blockquote {
    font-size: 18px;
  }

  .info-panel {
    gap: 13px;
    padding: 19px 17px;
  }

  .sidebar {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  table {
    min-width: 680px;
  }

  th,
  td {
    padding-right: 12px;
    padding-left: 12px;
  }

  .footer-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .brand-slot--footer {
    width: 205px;
    min-width: 205px;
    height: 60px;
  }

  .social-placeholder {
    width: 100%;
    justify-content: center;
  }

  .support-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 118px));
    justify-content: center;
    gap: 12px;
  }

  .support-logos > div:not(.age-mark) {
    width: 100%;
    min-width: 0;
  }
}

/* Very narrow phones, including 320–390 px devices. */
@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
  }

  .header-top .brand-slot {
    width: 142px;
    min-width: 142px;
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.8vw, 48px);
  }

  .hero-deck {
    font-size: 16px;
  }

  .byline {
    align-items: flex-start;
  }

  .avatar-placeholder {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

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

  .casino-list .casino-card {
    padding-right: 15px;
    padding-left: 15px;
  }

  .casino-list .casino-brand {
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    text-align: center;
  }

  .casino-list .image-slot--compact {
    width: min(170px, 72vw);
    min-height: 82px;
    flex-basis: 82px;
  }

  .casino-list .rating-block {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .casino-list .rating-block::before {
    grid-column: 1;
  }

  .casino-list .rating-score {
    grid-column: 2;
  }

  .casino-list .stars {
    display: none;
  }

  .casino-list .offer-block {
    text-align: center;
  }

  .casino-list .offer-block strong {
    font-size: 25px;
  }

  .casino-list .bonus-percent {
    font-size: 34px;
  }

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

  .content-section > h2,
  .section-heading h2,
  .key-insights h2,
  .responsible-panel h2,
  .author-card h2,
  .split-heading h2,
  .media-split h2 {
    font-size: clamp(29px, 9.3vw, 36px);
  }

  .legal-alert h3 {
    font-size: 23px;
  }

  .support-logos {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-logos > div:not(.age-mark),
  .age-mark {
    justify-self: center;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 1100px) {
  .main-nav {
    max-height: calc(100vh - 90px);
  }
}

/* ========================================================================
   Offer text layout update — match brand card text references
   ======================================================================== */
.casino-list .offer-block.offer-block--custom {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding: 0;
  text-align: left;
}

.casino-list .offer-block.offer-block--custom > span,
.casino-list .offer-block.offer-block--custom strong,
.casino-list .offer-block.offer-block--custom small {
  display: none;
}

.casino-list .offer-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 10px;
}

.casino-list .offer-line--full {
  grid-template-columns: minmax(0, 1fr);
}

.casino-list .offer-line__label {
  display: block;
  margin: 0;
  color: #f4f4f4;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.casino-list .offer-line__value {
  display: block;
  margin: 0;
  color: #ffcf63;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 33px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow: 0 0 12px rgba(255, 190, 70, 0.18);
  white-space: nowrap;
}

.casino-list .casino-card:nth-child(5) .offer-line--full .offer-line__label,
.casino-list .casino-card:nth-child(7) .offer-line--full .offer-line__label {
  font-size: clamp(15px, 1.45vw, 20px);
}

.casino-list .casino-actions .button {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
  .casino-list .offer-block.offer-block--custom {
    gap: 7px;
  }

  .casino-list .offer-line__label {
    font-size: clamp(16px, 2.3vw, 22px);
  }

  .casino-list .offer-line__value {
    font-size: clamp(19px, 2.8vw, 30px);
  }
}

@media (max-width: 767px) {
  .casino-list .offer-block.offer-block--custom {
    gap: 6px;
  }

  .casino-list .offer-line {
    gap: 8px;
  }

  .casino-list .offer-line__label {
    font-size: clamp(16px, 5vw, 22px);
  }

  .casino-list .offer-line__value {
    font-size: clamp(20px, 6vw, 31px);
  }

  .casino-list .casino-card:nth-child(5) .offer-line--full .offer-line__label,
  .casino-list .casino-card:nth-child(7) .offer-line--full .offer-line__label {
    font-size: clamp(14px, 4.2vw, 18px);
  }
}

/* ========================================================================
   Final mobile and tablet refinement fixes
   - Fix empty mobile menu button
   - Improve header/topic-bar behavior on narrow screens
   - Improve information layout density on phone and tablet
   ======================================================================== */
.menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 0;
  flex: 0 0 2px;
  border-radius: 999px;
}

.topic-bar {
  overflow: hidden;
}

.topic-bar__inner {
  padding-inline: 2px;
  scroll-padding-inline: 2px;
}

.topic-bar__inner > * {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .header-top {
    position: relative;
    gap: 12px;
  }

  .main-nav {
    top: calc(100% - 2px);
  }

  .topic-bar__inner {
    gap: 14px;
    padding-block: 0;
  }

  .topic-bar__inner a {
    padding: 10px 0 11px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    gap: 24px;
  }

  .article-layout {
    gap: 26px;
  }

  .sidebar {
    order: 2;
  }

  .article {
    order: 1;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }

  .header-top {
    min-height: 72px;
    padding-block: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }

  .header-top .brand-slot {
    width: min(100%, 160px);
    min-width: 0;
  }

  .menu-toggle {
    justify-self: end;
  }

  .main-nav {
    right: 0;
    left: 0;
    top: calc(100% + 2px);
    border-radius: 0 0 12px 12px;
    padding: 8px;
  }

  .main-nav a {
    min-height: 44px;
    font-size: 14px;
  }

  .topic-bar__inner {
    gap: 10px;
    min-height: 40px;
    padding-inline: 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .topic-bar__label,
  .topic-bar__inner a {
    scroll-snap-align: start;
  }

  .topic-bar__label {
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .topic-bar__inner a {
    font-size: 12px;
    padding: 10px 0;
  }

  .breadcrumbs {
    gap: 6px;
    font-size: 12px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 4px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.94;
  }

  .hero-deck {
    font-size: 18px;
    line-height: 1.55;
  }

  .byline {
    align-items: flex-start;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading h2,
  .content-section > h2,
  .key-insights h2,
  .responsible-panel h2,
  .author-card h2,
  .split-heading h2,
  .media-split h2 {
    font-size: clamp(28px, 8.8vw, 40px);
  }

  .casino-list {
    gap: 14px;
  }

  .casino-list .casino-card {
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .casino-list .casino-brand {
    gap: 12px;
  }

  .casino-list .image-slot--compact {
    width: 118px;
    flex-basis: 118px;
  }

  .casino-list .casino-name h3 {
    font-size: 22px;
  }

  .casino-list .casino-name span {
    font-size: 13px;
  }

  .casino-list .rating-block {
    gap: 8px 10px;
  }

  .casino-list .rating-score strong {
    font-size: 28px;
  }

  .casino-list .offer-block.offer-block--custom {
    gap: 7px;
  }

  .casino-list .offer-line {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .casino-list .offer-line__label {
    font-size: clamp(15px, 5vw, 22px);
  }

  .casino-list .offer-line__value {
    font-size: clamp(18px, 6vw, 30px);
  }

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

  .casino-list .casino-facts dt,
  .casino-list .casino-facts dd {
    font-size: 12px;
  }

  .casino-list .casino-actions {
    gap: 10px;
  }

  .casino-list .casino-actions .button {
    min-height: 48px;
    font-size: 18px;
  }

  .table-scroll {
    margin-inline: -2px;
  }

  .sidebar-card,
  .editor-note,
  .comparison-callout,
  .author-card,
  .responsible-panel {
    padding: 18px;
    border-radius: 16px;
  }
}

@media (max-width: 430px) {
  .header-top .brand-slot {
    width: 146px;
    height: 44px;
  }

  .hero h1 {
    font-size: clamp(34px, 13vw, 48px);
  }

  .hero-deck {
    font-size: 17px;
  }

  .casino-list .casino-card {
    padding: 14px;
  }

  .casino-list .image-slot--compact {
    width: 104px;
    flex-basis: 104px;
  }

  .casino-list .offer-line__label {
    font-size: clamp(14px, 4.7vw, 18px);
  }

  .casino-list .offer-line__value {
    font-size: clamp(18px, 7vw, 27px);
  }
}
