:root {
  --ink: #17213a;
  --soft-ink: #41506d;
  --paper: #fffdf6;
  --tile: #eaf3ff;
  --line: #c8d7ec;
  --blue: #1465d8;
  --deep-blue: #123d73;
  --coral: #ef4e3f;
  --mint: #00a878;
  --sun: #f5c542;
  --violet: #6f4cc3;
  --shadow: 0 18px 40px rgba(23, 33, 58, 0.14);
  --tight-shadow: 0 10px 24px rgba(23, 33, 58, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(20, 101, 216, 0.09) 25%, transparent 25%) 0 0 / 38px 38px,
    linear-gradient(225deg, rgba(0, 168, 120, 0.08) 25%, transparent 25%) 0 0 / 38px 38px,
    linear-gradient(315deg, rgba(239, 78, 63, 0.07) 25%, transparent 25%) 19px 19px / 38px 38px,
    var(--paper);
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
  padding: 7px 16px;
  background: var(--deep-blue);
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.ticker a {
  color: var(--sun);
  font-weight: 900;
}

.age-pill,
.header-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 34px;
  padding: 4px 9px;
  background: var(--coral);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.nav-shell {
  max-width: 1180px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  box-shadow: var(--tight-shadow);
}

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

.main-nav a,
.lang-switch,
.mobile-nav a {
  position: relative;
  padding: 9px 12px;
  color: var(--soft-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.main-nav a::after,
.lang-switch::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.lang-switch:hover,
.mobile-nav a:hover {
  color: var(--ink);
  background: rgba(20, 101, 216, 0.08);
}

.main-nav a:hover::after,
.lang-switch:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  border: 1px solid var(--line);
  background: white;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.menu-button span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 18px;
  border-top: 1px solid var(--line);
  background: white;
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 20px 54px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px 20px 42px;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.76), rgba(255,255,255,0.4)),
    radial-gradient(circle at 25% 30%, rgba(245,197,66,0.32) 0 13%, transparent 14%),
    linear-gradient(135deg, rgba(20, 101, 216, 0.14) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(225deg, rgba(0, 168, 120, 0.12) 25%, transparent 25%) 0 0 / 32px 32px,
    #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-board {
  position: absolute;
  inset: 50px auto auto 48%;
  width: 330px;
  height: 250px;
  z-index: -1;
  pointer-events: none;
}

.tile {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 68px;
  color: white;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 900;
  box-shadow: var(--tight-shadow);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 6px;
}

.tile-a {
  top: 2px;
  left: 16px;
  background: var(--blue);
  transform: rotate(-12deg);
}

.tile-b {
  top: 84px;
  left: 124px;
  background: var(--mint);
  transform: rotate(7deg);
}

.tile-c {
  top: 34px;
  left: 236px;
  background: var(--coral);
  transform: rotate(10deg);
}

.tile-d {
  top: 154px;
  left: 46px;
  background: var(--violet);
  transform: rotate(-5deg);
}

.hero-content {
  max-width: 760px;
  padding: 42px 0 34px 34px;
}

.kicker,
.section-heading p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 4px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0 8px 4px;
  background: linear-gradient(transparent 58%, rgba(245, 197, 66, 0.82) 58%);
}

.hero h1 span:nth-child(2) {
  background: linear-gradient(transparent 58%, rgba(0, 168, 120, 0.24) 58%);
}

.hero h1 span:nth-child(3) {
  color: var(--deep-blue);
  background: linear-gradient(transparent 58%, rgba(239, 78, 63, 0.24) 58%);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0;
  color: var(--soft-ink);
  font-size: 18px;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--tight-shadow);
}

.button-primary {
  background: var(--coral);
  color: white;
}

.button-ghost {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.score-ticket {
  position: relative;
  align-self: end;
  margin: 42px 24px 42px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.score-ticket::before {
  content: "CHECK-IN";
  position: absolute;
  top: -14px;
  right: 18px;
  padding: 4px 10px;
  background: var(--sun);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.score-ticket div {
  min-height: 116px;
  padding: 14px;
  display: grid;
  align-content: center;
  background: var(--tile);
  border: 1px dashed #94afd2;
  border-radius: var(--radius);
}

.score-ticket strong {
  display: block;
  color: var(--deep-blue);
  font-size: 36px;
  line-height: 1;
}

.score-ticket span {
  display: block;
  margin-top: 7px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-strip article {
  position: relative;
  min-height: 170px;
  padding: 20px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--tight-shadow);
}

.trust-strip article::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(20, 101, 216, 0.1);
}

.trust-strip article:nth-child(2)::after {
  background: rgba(0, 168, 120, 0.16);
}

.trust-strip article:nth-child(3)::after {
  background: rgba(239, 78, 63, 0.14);
}

.trust-strip article:nth-child(4)::after {
  background: rgba(245, 197, 66, 0.28);
}

.icon-dot {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: inset 0 0 0 6px white, 0 0 0 1px var(--line);
}

.trust-strip h2,
.trust-strip p {
  margin: 0;
}

.trust-strip h2 {
  font-size: 18px;
  text-transform: uppercase;
}

.trust-strip p {
  margin-top: 8px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 700;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 20px;
}

.section-tight {
  padding-top: 22px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.guide-panel h2,
.legal-hero h1,
.detail-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading span {
  display: block;
  margin-top: 12px;
  color: var(--soft-ink);
  font-weight: 700;
}

.casino-list {
  display: grid;
  gap: 22px;
}

.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 290px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.casino-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--blue);
}

.casino-card.yellow::before {
  background: var(--sun);
}

.casino-card.green::before {
  background: var(--mint);
}

.rank-box {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-width: 64px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.casino-logo-wrap {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 285px;
  padding: 44px 18px 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255,255,255,0)),
    var(--tile);
  border-right: 1px solid var(--line);
}

.casino-card.yellow .casino-logo-wrap {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0)),
    #fff4bd;
}

.casino-card.green .casino-logo-wrap {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0)),
    #d9f7e8;
}

.casino-logo-wrap img {
  width: 176px;
  height: 94px;
  object-fit: contain;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--ink);
}

.rating {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 7px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep-blue);
  font-weight: 900;
}

.rating strong {
  font-size: 26px;
}

.casino-main {
  padding: 30px;
}

.license-chip {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(20, 101, 216, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.casino-main h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 34px;
  text-transform: uppercase;
}

.casino-main p {
  margin: 0;
  color: var(--soft-ink);
  font-weight: 700;
}

.bullet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-row li {
  padding: 7px 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 900;
}

.offer-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px;
  background: var(--deep-blue);
  color: white;
}

.offer-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8px;
  width: 16px;
  background:
    radial-gradient(circle at center, white 0 3px, transparent 4px) 0 12px / 16px 24px;
}

.offer-panel span {
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-panel strong {
  font-size: 22px;
  line-height: 1.1;
}

.offer-panel small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.offer-panel .button-ghost {
  color: var(--ink);
}

.table-shell {
  overflow-x: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--tight-shadow);
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

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

th:last-child,
td:last-child {
  border-right: 0;
}

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

th {
  background: var(--deep-blue);
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: var(--soft-ink);
  font-weight: 700;
}

td strong,
td span {
  display: block;
}

td strong {
  color: var(--ink);
}

td span {
  color: var(--coral);
}

.method-section {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18) 25%, transparent 25%) 0 0 / 30px 30px,
    var(--mint);
}

.method-section .section-heading,
.method-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.method-section .section-heading p,
.method-section .section-heading h2 {
  color: white;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 20px;
}

.method-grid article {
  min-height: 220px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--tight-shadow);
}

.method-grid h3 {
  margin: 0 0 10px;
  color: var(--deep-blue);
  text-transform: uppercase;
}

.method-grid p {
  margin: 0;
  color: var(--soft-ink);
  font-weight: 700;
}

.guide-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: 32px;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.52), rgba(255,255,255,0.2)),
    var(--sun);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guide-panel p {
  color: var(--soft-ink);
  font-weight: 700;
}

.guide-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-panel li {
  padding: 12px 14px;
  background: white;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 5px 14px rgba(23, 33, 58, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--tight-shadow);
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--soft-ink);
  font-weight: 700;
}

.detail-hero,
.legal-hero {
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 42px 20px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-hero.yellow {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,255,255,0.2)),
    #fff4bd;
}

.detail-hero.green {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,255,255,0.2)),
    #d9f7e8;
}

.detail-hero p {
  max-width: 720px;
  color: var(--soft-ink);
  font-weight: 700;
}

.crumb {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.detail-logo {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.detail-logo img {
  width: 260px;
  height: 140px;
  object-fit: contain;
  padding: 18px;
  background: var(--ink);
  border-radius: var(--radius);
}

.detail-logo span {
  padding: 10px 16px;
  background: var(--coral);
  color: white;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}

.review-block,
.fact-sheet,
.legal-content article {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--tight-shadow);
}

.review-block h2,
.fact-sheet h2,
.legal-content h2 {
  margin-top: 0;
  color: var(--deep-blue);
  text-transform: uppercase;
}

.review-block p,
.review-block li,
.legal-content p {
  color: var(--soft-ink);
  font-weight: 700;
}

.fact-sheet {
  display: grid;
  align-content: start;
  gap: 12px;
}

.fact-sheet div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.fact-sheet span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-sheet strong {
  display: block;
  margin-top: 2px;
}

.legal-hero {
  background:
    linear-gradient(135deg, rgba(20, 101, 216, 0.12) 25%, transparent 25%) 0 0 / 32px 32px,
    white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-hero p {
  max-width: 760px;
  color: var(--soft-ink);
  font-weight: 700;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.site-footer {
  margin-top: 44px;
  background: var(--deep-blue);
  color: white;
}

.footer-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--coral);
  color: white;
  text-align: center;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.85fr;
  gap: 28px;
}

.footer-grid h2,
.logo-placeholder-section h2 {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 18px;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.operator-list span,
.small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
}

.footer-brand img {
  background: white;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.operator-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.operator-list li {
  margin-bottom: 14px;
}

.operator-list a {
  margin: 0;
  color: white;
  font-size: 18px;
}

.operator-list span {
  display: block;
  font-size: 13px;
}

.logo-placeholder-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 28px;
}

.responsible-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.responsible-logos img {
  width: 150px;
  height: 54px;
  object-fit: contain;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
  color: var(--soft-ink);
  font-weight: 700;
}

.cookie-simple {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-simple > div,
.cookie-settings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner button {
  padding: 8px 10px;
  border: 0;
  border-radius: var(--radius);
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-settings label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cookie-settings strong {
  color: var(--mint);
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .main-nav,
  .header-age {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .detail-hero,
  .guide-panel,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-right: 24px;
  }

  .score-ticket {
    margin: 0 24px 34px;
  }

  .trust-strip,
  .method-grid,
  .footer-grid,
  .legal-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .casino-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .offer-panel {
    grid-column: 1 / -1;
  }

  .offer-panel::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .ticker {
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand span {
    font-size: 18px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero::before {
    inset: 10px;
  }

  .hero-board {
    display: none;
  }

  .hero-content {
    padding: 28px 10px 14px;
  }

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

  .hero h1 span {
    padding-left: 4px;
    padding-right: 4px;
  }

  .score-ticket {
    margin: 0 10px 24px;
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .method-grid,
  .footer-grid,
  .legal-content {
    grid-template-columns: 1fr;
  }

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

  .casino-logo-wrap {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-warning,
  .footer-bottom,
  .cookie-simple {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
