:root {
  --ink: #081820;
  --muted: #61717a;
  --green: #006b34;
  --green-dark: #004823;
  --green-soft: #daf5e2;
  --gold: #f6be3a;
  --line: #dfe7e5;
  --page: #f6f9f8;
  --shell: 820px;
  --shadow: 0 8px 24px rgba(7, 20, 25, .1);
}

* {
  box-sizing: border-box;
}

html {
  background: #07161d;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-hero {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 15, 25, .96) 0%, rgba(4, 15, 25, .78) 37%, rgba(4, 15, 25, .18) 73%),
    url("img/background.webp") center bottom / cover no-repeat,
    linear-gradient(112deg, #071624 0%, #001321 46%, #021c27 100%);
}

.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 15%, rgba(246, 190, 58, .32) 0 1px, transparent 2px),
    linear-gradient(160deg, rgba(255, 255, 255, .08), transparent 45%);
  opacity: .55;
}

.hero-glow {
  position: absolute;
  right: -190px;
  bottom: 34px;
  width: 680px;
  height: 210px;
  transform: rotate(-21deg);
  background: repeating-linear-gradient(0deg, rgba(229, 176, 63, .35) 0 1px, transparent 1px 15px);
  filter: blur(.2px);
  opacity: .5;
}

.hero-glow,
.australia-map,
.southern-cross,
.harbour {
  display: none;
}

.hero-shell,
.content-shell,
.search-panel,
.footer-shell,
.footer-bottom {
  width: min(var(--shell), calc(100% - 116px));
  margin-inline: auto;
}

.hero-shell {
  position: relative;
  z-index: 2;
}

.topbar {
  display: grid;
  grid-template-columns: 216px 1fr 38px 112px;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  width: 43px;
  height: 30px;
}

.brand-logo-img {
  display: block;
  width: 196px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, .22));
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.brand em {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0;
  opacity: .94;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  white-space: nowrap;
}

.nav-links a {
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  opacity: .95;
  transition: color .18s ease, opacity .18s ease;
}

.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active,
.nav-links a:focus {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.nav-links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .42);
  outline-offset: 5px;
  border-radius: 3px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.icon-button svg,
.search-field svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
}

.find-button {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 8px;
  color: #09151a;
  background: #f6bd3a;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .35) inset;
  font-size: 12px;
  font-weight: 900;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 430px;
  padding-top: 14px;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy p {
  width: 395px;
  margin: 13px 0 17px;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 13px;
}

.trust-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 8px;
  min-width: 123px;
  padding-right: 11px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 1px solid #d09b2d;
  border-radius: 5px;
  fill: none;
  stroke: #f2c447;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.1;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: #f3c140;
  font-size: 12px;
}

.trust-item em {
  display: block;
  font-style: normal;
}

.australia-map {
  position: absolute;
  z-index: 1;
  top: 81px;
  right: calc(50% - 392px);
  width: 255px;
  height: auto;
  opacity: .8;
}

.southern-cross {
  position: absolute;
  z-index: 2;
  top: 108px;
  right: calc(50% - 116px);
  width: 120px;
  height: 105px;
}

.southern-cross span {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: #fff3df;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 4px rgba(246, 191, 72, .42));
}

.southern-cross span:nth-child(1) { left: 58px; top: 0; width: 22px; height: 22px; }
.southern-cross span:nth-child(2) { left: 8px; top: 34px; width: 22px; height: 22px; }
.southern-cross span:nth-child(3) { left: 86px; top: 43px; }
.southern-cross span:nth-child(4) { left: 45px; top: 83px; width: 14px; height: 14px; }
.southern-cross span:nth-child(5) { left: 28px; top: 69px; width: 10px; height: 10px; }

.harbour {
  position: absolute;
  z-index: 1;
  right: -12px;
  bottom: -1px;
  width: 620px;
  height: 180px;
}

main {
  position: relative;
  z-index: 5;
  padding-bottom: 18px;
  background: var(--page);
}

.search-panel {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.1fr 1fr .98fr;
  gap: 11px;
  align-items: center;
  margin-top: 24px;
  padding: 10px 15px;
  border: 1px solid rgba(5, 40, 35, .15);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 8px 20px rgba(8, 28, 28, .16);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #35464d;
  background: #fff;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 12px;
}

.search-field input::placeholder {
  color: #64737b;
}

.search-panel select,
.section-head select {
  height: 36px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #26363d;
  background: #fff;
  font-size: 12px;
}

.search-panel button {
  height: 36px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(180deg, #006f37, #004f27);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .18);
  font-size: 12px;
  font-weight: 900;
}

.content-shell {
  margin-top: 15px;
}

.section-head {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 9px;
}

h2 {
  margin: 0;
  color: #0c171d;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.section-head h2,
.compare h2,
.guides h2,
.faq h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.section-title-text {
  min-width: 0;
}

.mobile-title-break {
  display: none;
}

.outline-star {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--gold);
  -webkit-text-stroke: 1px #0b1b20;
  font-size: 23px;
  line-height: 1;
}

.scales {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #0c171d;
  font-size: 12px;
  font-weight: 900;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.tabs button {
  height: 26px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #17262c;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.tabs button.active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(180deg, #00783d, #005328);
}

.section-head select {
  width: 112px;
  height: 26px;
  font-size: 12px;
}

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

.casino-card {
  display: grid;
  grid-template-columns: 37px 111px minmax(184px, 1fr) 173px 146px 130px;
  align-items: center;
  min-height: 96px;
  border: 1px solid rgba(18, 39, 47, .1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(13, 35, 41, .07);
}

.rank {
  justify-self: center;
  align-self: start;
  display: grid;
  place-items: center;
  width: 24px;
  height: 26px;
  margin-top: 9px;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(180deg, #00783e, #004d27);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .18) inset;
  font-size: 16px;
  font-weight: 900;
}

.logo-wrap {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.casino-logo {
  display: grid;
  place-items: center;
  align-content: center;
  width: 103px;
  height: 76px;
  border-radius: 7px;
  overflow: hidden;
  color: #f4cf65;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .12) inset, 0 7px 16px rgba(5, 19, 25, .16);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  text-transform: uppercase;
}

.casino-logo::before {
  content: "";
  display: block;
  width: 42px;
  height: 22px;
  margin-bottom: 3px;
  background: currentColor;
  opacity: .92;
}

.casino-logo span,
.casino-logo strong {
  display: block;
  line-height: .92;
}

.casino-logo span {
  font-size: 17px;
}

.casino-logo strong {
  font-size: 16px;
  font-weight: 800;
}

.kangaroo-logo {
  background: radial-gradient(circle at 50% 12%, #11371f, #042113 75%);
}

.kangaroo-logo::before {
  clip-path: polygon(0 77%, 23% 55%, 39% 22%, 63% 0, 83% 8%, 67% 25%, 81% 47%, 100% 62%, 62% 69%, 31% 57%, 12% 100%);
}

.coral-logo {
  color: #f2c85a;
  background: linear-gradient(145deg, #092345, #07192f);
}

.coral-logo::before {
  width: 36px;
  height: 28px;
  clip-path: polygon(46% 0, 60% 29%, 92% 19%, 78% 49%, 100% 61%, 66% 66%, 59% 100%, 42% 100%, 35% 66%, 0 61%, 23% 49%, 8% 19%, 40% 29%);
}

.outback-logo {
  color: #ffc154;
  background: radial-gradient(circle at 55% 28%, #d85a22 0 22%, #492519 23% 100%);
}

.outback-logo::before {
  width: 45px;
  height: 25px;
  background: #f2a43d;
  clip-path: polygon(0 95%, 18% 42%, 36% 68%, 52% 22%, 66% 69%, 84% 43%, 100% 95%);
}

.star-logo {
  color: #f4d68d;
  background: linear-gradient(145deg, #102b4d, #071a30);
}

.star-logo::before {
  width: 34px;
  height: 34px;
  clip-path: polygon(50% 0, 57% 39%, 88% 12%, 61% 43%, 100% 50%, 61% 57%, 88% 88%, 57% 61%, 50% 100%, 43% 61%, 12% 88%, 39% 57%, 0 50%, 39% 43%, 12% 12%, 43% 39%);
}

.reef-logo {
  background: radial-gradient(circle at 46% 0, #07572c, #041b11 78%);
}

.reef-logo::before {
  width: 46px;
  height: 25px;
  clip-path: polygon(0 78%, 22% 47%, 35% 8%, 61% 0, 81% 14%, 68% 29%, 82% 47%, 100% 57%, 64% 66%, 35% 56%, 14% 100%);
}

.koala-logo {
  color: #f1d78c;
  background: linear-gradient(145deg, #0a6535, #063a20);
}

.koala-logo::before {
  width: 50px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 19% 33%, #d9c28d 0 11px, transparent 12px),
    radial-gradient(circle at 81% 33%, #d9c28d 0 11px, transparent 12px),
    radial-gradient(circle at 50% 50%, #d9c28d 0 18px, transparent 19px);
}

.real-logo {
  position: relative;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .14), transparent 44%),
    linear-gradient(145deg, var(--logo-bg), #04150f);
}

.real-logo::before {
  display: none;
}

.real-logo img {
  display: block;
  max-width: 78%;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .22));
}

.real-logo .fallback-initials {
  display: none;
  color: #f4cf65;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.real-logo.logo-failed .fallback-initials {
  display: block;
}

.tag {
  display: inline-grid;
  place-items: center;
  min-height: 16px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.tag.green { color: #00783f; background: #c8f4d8; }
.tag.purple { color: #7c43b1; background: #eadcff; }
.tag.blue { color: #2287c6; background: #dff0ff; }
.tag.teal { color: #007f77; background: #d8f7f2; }
.tag.gold { color: #8a6400; background: #ffe9a7; }

.real-casino-card {
  min-height: 138px;
}

.casino-info {
  min-width: 0;
  padding: 0 16px 0 5px;
}

.casino-info h3 {
  margin: 0 0 5px;
  color: #14262d;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  white-space: nowrap;
}

.stars {
  color: #ffb21b;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}

.rating strong {
  color: #006b34;
  font-size: 12px;
}

.rating em {
  color: #006b34;
  font-size: 12px;
  font-style: normal;
}

.casino-info ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.casino-info li {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
  line-height: 1.2;
}

.casino-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #08723c;
}

.casino-info li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 4px;
  height: 2px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.payments,
.bonus,
.actions {
  min-height: 74px;
  border-left: 1px solid var(--line);
}

.payments {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 0 18px;
}

.payments div,
.footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pay,
.mini {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 18px;
  color: #082c67;
  font-size: 12px;
  line-height: .8;
  font-weight: 900;
}

.pay.mc,
.mini.mc {
  width: 30px;
  min-width: 30px;
  background:
    radial-gradient(circle at 38% 50%, #ff4c16 0 8px, transparent 9px),
    radial-gradient(circle at 62% 50%, #f6a20b 0 8px, transparent 9px);
}

.pay.payid,
.mini.payid {
  min-width: 35px;
  color: #139957;
}

.pay.bank,
.mini.bank {
  color: #717e83;
  font-size: 12px;
  line-height: .9;
}

.pay.coin,
.mini.coin {
  width: 19px;
  min-width: 19px;
  border-radius: 50%;
  color: #fff;
  background: #f08a1d;
  font-size: 12px;
}

.pay.apple {
  min-width: 47px;
  padding-inline: 4px;
  border-radius: 2px;
  color: #fff;
  background: #1d2a31;
  font-size: 12px;
}

.pay.generic {
  min-width: 42px;
  padding-inline: 6px;
  border-radius: 3px;
  color: #12323b;
  background: #eef5f2;
  font-size: 12px;
}

.pay.green-pay {
  color: #00783f;
  background: #dff5e8;
}

.more {
  color: #111f25;
  font-size: 12px;
}

.bonus {
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 0 18px;
}

.bonus small {
  color: #12262d;
  font-size: 12px;
}

.bonus strong {
  color: #07161d;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.bonus span {
  color: #0b1d24;
  font-size: 12px;
  font-weight: 700;
}

.bonus .tag {
  justify-self: start;
  margin-top: 4px;
}

.actions {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 12px 0 14px;
}

.actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
}

.actions .play {
  justify-content: space-between;
  padding: 0 21px 0 31px;
  color: #fff;
  background: linear-gradient(180deg, #007a3d, #005829);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .22) inset;
}

.actions .review {
  color: #0c171d;
  border: 1px solid #c9d3d1;
  background: #fff;
}

.actions small {
  position: relative;
  justify-self: center;
  padding-left: 14px;
  color: #34444c;
  font-size: 12px;
}

.actions small::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 7px;
  height: 12px;
  border: 1px solid #6c777d;
  border-radius: 2px;
}

.compare {
  margin-top: 14px;
}

.compare h2,
.guides h2,
.faq h2 {
  margin-bottom: 7px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #cfdad7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(13, 35, 41, .06);
}

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

th {
  height: 19px;
  color: #fff;
  background: #00522b;
  font-size: 12px;
  font-weight: 900;
}

th + th,
td + td {
  border-left: 1px solid #e2e9e7;
}

td {
  height: 19px;
  padding: 0 10px;
  border-top: 1px solid #e2e9e7;
  text-align: center;
}

td:first-child {
  font-weight: 900;
  text-align: left;
}

.mini {
  min-width: 20px;
  height: 14px;
  font-size: 12px;
  vertical-align: middle;
}

.mini.mc {
  width: 22px;
  min-width: 22px;
  background:
    radial-gradient(circle at 38% 50%, #ff4c16 0 6px, transparent 7px),
    radial-gradient(circle at 62% 50%, #f6a20b 0 6px, transparent 7px);
}

.mini.coin {
  width: 14px;
  min-width: 14px;
  height: 14px;
  font-size: 12px;
}

.guides {
  margin-top: 13px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.guide-grid article {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 10px;
  min-height: 102px;
  padding: 10px 10px 9px;
  border: 1px solid rgba(18, 39, 47, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(13, 35, 41, .06);
}

.guide-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 8px 18px rgba(0, 78, 40, .16);
}

.guide-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.guide-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: #f4c343;
}

.guide-icon::before,
.guide-icon::after {
  display: none;
}

.guide-icon.shield::before {
  clip-path: polygon(50% 0, 87% 15%, 87% 48%, 73% 76%, 50% 100%, 27% 76%, 13% 48%, 13% 15%);
}

.guide-icon.wallet::before {
  border: 3px solid #f4c343;
  border-radius: 4px;
  background: transparent;
}

.guide-icon.wallet::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 27px;
  width: 11px;
  height: 9px;
  border-radius: 2px;
  background: #f4c343;
}

.guide-icon.gift::before {
  clip-path: polygon(8% 35%, 92% 35%, 92% 53%, 84% 53%, 84% 100%, 16% 100%, 16% 53%, 8% 53%);
}

.guide-icon.gift::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 33px;
  background: #006231;
}

.guide-grid h3 {
  margin: 0 0 4px;
  color: #101c22;
  font-size: 13px;
  line-height: 1.08;
  font-weight: 900;
}

.guide-grid p {
  margin: 0 0 6px;
  color: #34454d;
  font-size: 12px;
  line-height: 1.3;
}

.guide-grid a {
  color: #005d2e;
  font-size: 12px;
  font-weight: 900;
}

.faq {
  margin-top: 11px;
  margin-bottom: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

details {
  border: 1px solid #dce5e3;
  border-radius: 5px;
  background: #fff;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  padding: 0 13px;
  color: #0f1b21;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "v";
  color: #46585f;
  font-size: 12px;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  margin: -2px 13px 10px;
  color: #50636b;
  font-size: 12px;
  line-height: 1.4;
}

.site-footer {
  color: #dfe9e9;
  background:
    radial-gradient(circle at 9% 20%, rgba(14, 119, 75, .28), transparent 27%),
    linear-gradient(115deg, #02141d, #06202a 65%, #04151c);
}

.footer-shell {
  display: grid;
  grid-template-columns: 190px 96px 105px 105px 180px;
  gap: 19px;
  padding: 11px 0 6px;
}

.footer-shell > div:not(.footer-brand),
.responsible {
  border-left: 1px solid rgba(255, 255, 255, .17);
  padding-left: 18px;
}

.footer-brand .brand {
  margin-bottom: 10px;
}

.footer-brand .brand-logo-img {
  width: 230px;
}

.footer-brand p {
  margin: 0 0 8px;
  color: #acbabd;
  font-size: 12px;
  line-height: 1.3;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: #aebbbe;
  font-size: 13px;
  font-weight: 900;
}

.footer-shell h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-shell a {
  display: block;
  margin: 0 0 3px;
  color: #d6e0e2;
  font-size: 12px;
  line-height: 1.15;
}

.footer-payments {
  gap: 10px 13px;
}

.responsible {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 8px;
  min-height: 88px;
  padding: 10px 10px 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
}

.responsible strong {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

.responsible-icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.responsible p {
  margin: 0 0 5px;
  color: #b5c0c2;
  font-size: 12px;
  line-height: 1.25;
}

.responsible span {
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0 6px;
  color: #98a7aa;
  font-size: 12px;
}

/* Readability pass: keep real text at 12px+ and give controls breathing room. */
:root {
  --shell: 1020px;
}

.site-hero {
  min-height: 374px;
}

.topbar {
  min-height: 82px;
}

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

.hero-copy p {
  margin: 18px 0 24px;
}

.trust-row {
  gap: 18px;
}

.trust-item {
  grid-template-columns: 40px 1fr;
  gap: 10px;
  min-width: 156px;
  padding-right: 18px;
}

.trust-item svg {
  width: 40px;
  height: 40px;
  padding: 8px;
}

.trust-item span,
.trust-item strong,
.search-field input,
.search-panel select,
.search-panel button,
.tabs button,
.section-head select,
.tag,
.rating strong,
.rating em,
.casino-info li,
.pay,
.mini,
.pay.bank,
.mini.bank,
.pay.coin,
.mini.coin,
.pay.apple,
.more,
.bonus small,
.bonus span,
.actions a,
.actions small,
table,
th,
td,
.guide-grid p,
.guide-grid a,
summary,
details p,
.footer-brand p,
.footer-shell a,
.footer-shell h3,
.responsible p,
.responsible span,
.footer-bottom {
  font-size: 12px;
}

.trust-item span {
  line-height: 1.35;
}

main {
  padding-bottom: 30px;
  background: var(--page);
}

.search-panel {
  grid-template-columns: minmax(220px, 1.55fr) repeat(3, minmax(150px, 1fr)) minmax(150px, .95fr);
  gap: 14px;
  margin-top: 24px;
  padding: 16px;
}

.search-field,
.search-panel select,
.search-panel button {
  height: 44px;
}

.content-shell {
  margin-top: 30px;
}

.analysis-note {
  margin: -6px 0 18px;
  max-width: 840px;
  color: #4b5f66;
  font-size: 12px;
  line-height: 1.45;
}

.result-count {
  margin: -10px 0 16px;
  color: #005d2e;
  font-size: 12px;
  font-weight: 800;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px solid #d7e2df;
  border-radius: 8px;
  color: #46585f;
  background: #fff;
  box-shadow: 0 3px 12px rgba(13, 35, 41, .06);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.longread {
  margin-top: 34px;
}

.longread-body {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.longread-kicker {
  margin: 0;
  color: #00713a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.longread h2 {
  margin: 18px 0 0;
  color: #0c171d;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
}

.longread p {
  margin: 0;
  color: #2d3f47;
  font-size: 15px;
  line-height: 1.68;
}

.longread details {
  border-color: #d8e2df;
  border-radius: 8px;
  overflow: hidden;
}

.longread summary {
  min-height: 48px;
  padding: 0 18px;
  font-size: 14px;
}

.longread details p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.6;
}

.section-head {
  grid-template-columns: minmax(330px, max-content) 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

h2 {
  font-size: 20px;
  line-height: 1.25;
}

.tabs {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.tabs button,
.section-head select {
  flex: 0 0 auto;
  height: 34px;
}

.tabs button {
  padding: 0 14px;
}

.section-head select {
  width: 156px;
}

.casino-list {
  gap: 12px;
}

.casino-card {
  grid-template-columns: 44px 132px minmax(220px, 1fr) 184px 168px 144px;
  min-height: 124px;
  padding: 12px 0;
}

.rank {
  width: 28px;
  height: 30px;
  margin-top: 0;
  font-size: 18px;
}

.logo-wrap {
  gap: 7px;
}

.casino-logo {
  width: 112px;
  height: 88px;
}

.casino-logo span {
  font-size: 18px;
}

.casino-logo strong {
  font-size: 18px;
}

.tag {
  min-height: 22px;
  padding: 2px 10px;
}

.casino-info {
  padding: 0 22px 0 8px;
}

.casino-info h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
}

.rating {
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.stars {
  font-size: 14px;
}

.casino-info ul {
  gap: 5px;
}

.casino-info li {
  padding-left: 17px;
  line-height: 1.35;
}

.casino-info li::before {
  top: 4px;
}

.casino-info li::after {
  top: 6px;
}

.payments,
.bonus,
.actions {
  min-height: 96px;
}

.payments {
  gap: 14px;
  padding: 0 22px;
}

.payments div,
.footer-payments {
  gap: 12px;
}

.pay,
.mini {
  min-width: 30px;
  height: 22px;
  line-height: 1;
}

.pay.bank,
.mini.bank {
  min-width: 44px;
}

.pay.coin,
.mini.coin {
  width: 22px;
  min-width: 22px;
  height: 22px;
}

.pay.apple {
  min-width: 62px;
}

.bonus {
  gap: 5px;
  padding: 0 22px;
}

.bonus strong {
  font-size: 22px;
  line-height: 1.05;
}

.bonus .tag {
  margin-top: 8px;
}

.actions {
  gap: 9px;
  padding: 0 14px;
}

.actions a {
  height: 36px;
}

.actions .play {
  justify-content: center;
  gap: 12px;
  padding: 0 14px;
}

.actions small {
  justify-self: start;
  line-height: 1.2;
}

.actions small::before {
  top: 1px;
}

.compare {
  margin-top: 28px;
}

.compare h2,
.guides h2,
.faq h2 {
  margin-bottom: 14px;
}

table {
  min-width: 1280px;
}

th,
td {
  height: 34px;
  padding: 0 14px;
}

.mini {
  min-width: 26px;
  height: 18px;
}

.mini.coin {
  width: 18px;
  min-width: 18px;
  height: 18px;
}

.guides {
  margin-top: 28px;
}

.guide-grid {
  gap: 16px;
}

.guide-grid article {
  grid-template-columns: 58px 1fr;
  gap: 16px;
  min-height: 158px;
  padding: 22px 20px;
}

.guide-icon {
  width: 58px;
  height: 58px;
}

.guide-icon::before {
  width: 30px;
  height: 30px;
}

.guide-grid h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.2;
}

.guide-grid p {
  margin-bottom: 12px;
  line-height: 1.45;
}

.faq {
  margin-top: 28px;
  margin-bottom: 30px;
}

.faq-grid {
  gap: 12px 16px;
}

summary {
  min-height: 42px;
  padding: 0 16px;
}

details p {
  margin: 0 16px 14px;
  line-height: 1.45;
}

.site-footer {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-shell {
  width: min(1480px, calc(100% - 96px));
  grid-template-columns: minmax(240px, 1.1fr) minmax(118px, .65fr) minmax(135px, .75fr) minmax(220px, .95fr) minmax(252px, 1fr);
  align-items: start;
  gap: 28px;
  padding: 26px 0 18px;
}

.footer-shell > div:not(.footer-brand),
.responsible {
  min-height: 118px;
  padding-left: 28px;
  border-left-color: rgba(255, 255, 255, .18);
}

.footer-brand {
  padding-right: 12px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 260px;
  line-height: 1.45;
}

.footer-shell h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.footer-shell a {
  margin-bottom: 7px;
  color: #dfe8e8;
  line-height: 1.25;
}

.footer-payments {
  display: grid;
  grid-template-columns: repeat(3, 62px);
  gap: 14px 16px;
  align-items: center;
}

.footer-payments .pay {
  width: 62px;
  height: 34px;
  min-width: 62px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, .05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .07) inset;
}

.footer-payments .pay.mc {
  background:
    radial-gradient(circle at 42% 50%, #ff4c16 0 11px, transparent 12px),
    radial-gradient(circle at 58% 50%, #f6a20b 0 11px, transparent 12px),
    rgba(255, 255, 255, .05);
}

.footer-payments .pay.coin {
  justify-self: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
}

.pay.pay-image {
  width: 44px;
  min-width: 44px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.pay.pay-bitcoin {
  width: 26px;
  min-width: 26px;
  height: 26px;
}

.pay.pay-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-payments .pay.pay-image {
  width: 62px;
  min-width: 62px;
  height: 34px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-payments .pay.pay-bitcoin {
  width: 38px;
  min-width: 38px;
  height: 38px;
}

.responsible {
  position: relative;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  min-height: 154px;
  padding: 22px 22px 22px 20px;
}

.responsible strong {
  width: 40px;
  height: 40px;
}

.responsible-icon {
  width: 48px;
  height: 48px;
}

.responsible p,
.responsible span {
  line-height: 1.4;
}

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

.footer-bottom {
  width: min(1480px, calc(100% - 96px));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 20px;
}

.footer-bottom span:first-child {
  flex: 1 1 auto;
  text-align: center;
}

.footer-bottom span:last-child {
  flex: 0 1 360px;
  text-align: right;
}

@media (max-width: 980px) {
  :root {
    --shell: 820px;
  }

  .hero-shell,
  .content-shell,
  .search-panel,
  .footer-shell,
  .footer-bottom {
    width: min(var(--shell), calc(100% - 40px));
  }

  .topbar {
    grid-template-columns: 190px 1fr 38px 112px;
    gap: 13px;
  }

  .nav-links {
    gap: 16px;
  }

  .brand-logo-img {
    width: 184px;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-shell > div:not(.footer-brand),
  .responsible {
    border-left: 0;
    padding-left: 0;
  }

  .footer-brand,
  .responsible {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom span:first-child,
  .footer-bottom span:last-child {
    text-align: center;
  }

  .casino-card {
    grid-template-columns: 37px 108px minmax(170px, 1fr) 156px 138px 126px;
  }
}

@media (max-width: 820px) {
  .site-hero {
    min-height: 540px;
  }

  .topbar {
    grid-template-columns: 1fr 38px;
    gap: 12px;
  }

  .nav-links,
  .find-button {
    display: none;
  }

  .hero-copy {
    width: min(430px, 100%);
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p {
    width: min(395px, 100%);
  }

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

  .trust-item {
    width: 210px;
    border-right: 0;
  }

  .australia-map {
    top: 292px;
    right: 20px;
  }

  .southern-cross {
    top: 265px;
    right: 210px;
  }

  .harbour {
    width: 560px;
  }

  .search-panel {
    grid-template-columns: 1fr 1fr;
  }

  .search-field,
  .search-panel button {
    grid-column: 1 / -1;
  }

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

  .tabs {
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 0;
  }

  .section-head h2,
  .tabs {
    min-width: 0;
    width: 100%;
  }

  .casino-card {
    grid-template-columns: 34px 110px 1fr;
    gap: 0;
    padding: 10px 0;
  }

  .casino-info {
    padding-right: 13px;
  }

  .payments,
  .bonus,
  .actions {
    grid-column: 2 / -1;
    min-height: auto;
    margin-top: 10px;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .actions {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .actions small {
    grid-column: 1 / -1;
  }

  .guide-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .responsible,
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .hero-shell,
  .content-shell,
  .search-panel,
  .footer-shell,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-copy p {
    max-width: 340px;
    font-size: 13px;
  }

  .section-head h2,
  .compare h2,
  .guides h2,
  .faq h2 {
    display: flex;
    align-items: flex-start;
    max-width: 100%;
    font-size: 17px;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .section-title-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .analysis-note,
  .casino-card,
  .payments,
  .bonus,
  .actions,
  .actions a,
  .bonus strong {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .analysis-note {
    margin-bottom: 18px;
  }

  .mobile-title-break {
    display: block;
  }

  .outline-star,
  .scales {
    flex: 0 0 auto;
    margin-right: 6px;
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tabs button,
  .section-head select {
    width: 100%;
    min-width: 0;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-panel select {
    width: 100%;
  }

  .casino-card {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
    overflow: hidden;
  }

  .rank {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 32px;
    height: 32px;
    margin: 0;
    z-index: 2;
  }

  .logo-wrap {
    grid-column: 1;
    justify-self: center;
    width: 100%;
    margin: 0 0 14px;
  }

  .casino-info {
    grid-column: 1;
    padding: 0;
  }

  .casino-info h3 {
    font-size: 22px;
    line-height: 1.15;
  }

  .payments,
  .bonus,
  .actions {
    grid-column: 1;
    width: 100%;
    margin: 14px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .payments div {
    gap: 12px;
  }

  .actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .actions a {
    width: 100%;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-shell > div:not(.footer-brand),
  .responsible {
    border-left: 0;
    padding-left: 0;
  }

  .responsible {
    padding: 14px;
  }

  .footer-bottom {
    display: grid;
  }

  .longread {
    margin-top: 28px;
  }

  .longread-body {
    gap: 14px;
  }

  .longread h2 {
    font-size: 20px;
    line-height: 1.28;
  }

  .longread p {
    font-size: 14px;
    line-height: 1.6;
  }

  .longread summary,
  .longread details p {
    font-size: 13px;
  }

  .table-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  table,
  thead,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  table {
    border-collapse: separate;
    border-spacing: 0;
  }

  thead {
    display: none;
  }

  tbody {
    display: grid;
    gap: 10px;
  }

  tr {
    border: 1px solid #dce5e3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(13, 35, 41, .06);
    overflow: hidden;
  }

  td {
    display: grid;
    grid-template-columns: minmax(105px, .9fr) minmax(0, 1.1fr);
    align-items: center;
    min-height: 38px;
    height: auto;
    padding: 8px 12px;
    border-top: 1px solid #e2e9e7;
    border-left: 0;
    text-align: right;
    overflow-wrap: anywhere;
  }

  td:first-child {
    border-top: 0;
  }

  td::before {
    content: attr(data-label);
    color: #52666e;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
  }
}

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

.legal-header {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 15, 25, .97), rgba(4, 15, 25, .84)),
    url("img/background.webp") center bottom / cover no-repeat,
    #07161d;
}

.legal-header .hero-shell {
  padding-bottom: 46px;
}

.legal-title {
  max-width: 780px;
  padding: 24px 0 8px;
}

.legal-title p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.5;
}

.legal-title h1 {
  max-width: 720px;
  margin: 0 0 14px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: 0;
}

.legal-main {
  padding: 42px 0 64px;
}

.legal-doc {
  display: grid;
  gap: 26px;
  width: min(880px, 100%);
  max-width: 880px;
}

.legal-doc > * {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.legal-lede {
  margin: 0;
  color: #21343c;
  font-size: 17px;
  line-height: 1.65;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #50636b;
  font-size: 13px;
}

.legal-section {
  display: grid;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #dce7e4;
}

.legal-section h2 {
  margin: 0;
  color: #071a22;
  font-size: 24px;
  line-height: 1.2;
}

.legal-section h3 {
  margin: 6px 0 0;
  color: #10272f;
  font-size: 17px;
  line-height: 1.25;
}

.legal-section p {
  margin: 0;
  color: #243941;
  font-size: 15px;
  line-height: 1.65;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
}

.legal-section li {
  color: #243941;
  font-size: 15px;
  line-height: 1.55;
}

.legal-note {
  padding: 14px 16px;
  border-left: 4px solid #00783f;
  background: #e8f7ee;
  color: #123129;
  font-size: 14px;
  line-height: 1.55;
}

.legal-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #d8e3e0;
  border-radius: 8px;
  background: #fff;
}

.legal-table th,
.legal-table td {
  height: auto;
  padding: 12px 14px;
  border: 1px solid #d8e3e0;
  color: #20343b;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: #fff;
  background: #005d2e;
  font-weight: 900;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links a,
.legal-section a {
  color: #005d2e;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  left: max(18px, calc((100vw - var(--shell)) / 2));
  right: max(18px, calc((100vw - var(--shell)) / 2));
  bottom: 18px;
  z-index: 2000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #eef8f7;
  background: rgba(4, 22, 29, .98);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
}

.cookie-banner__copy {
  display: grid;
  gap: 6px;
}

.cookie-banner strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.cookie-banner p {
  max-width: 720px;
  margin: 0;
  color: #c9d7d9;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner a {
  color: #f2c247;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.cookie-banner button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #00783f;
  border-radius: 6px;
  color: #fff;
  background: #00783f;
  font-size: 13px;
  font-weight: 900;
}

.cookie-banner__ghost {
  border-color: rgba(255, 255, 255, .28) !important;
  background: transparent !important;
}

@media (max-width: 760px) {
  .legal-header .hero-shell {
    padding-bottom: 30px;
  }

  .legal-main {
    padding: 30px 0 48px;
  }

  .legal-title h1 {
    font-size: 34px;
  }

  .legal-section h2 {
    font-size: 21px;
  }

  .legal-table,
  .legal-table thead,
  .legal-table tbody,
  .legal-table tr,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table thead {
    display: none;
  }

  .legal-table tr {
    display: grid;
    gap: 0;
    border-bottom: 1px solid #d8e3e0;
  }

  .legal-table tr:last-child {
    border-bottom: 0;
  }

  .legal-table td {
    display: grid;
    grid-template-columns: minmax(110px, .85fr) minmax(0, 1.15fr);
    gap: 10px;
    border: 0;
    border-top: 1px solid #edf2f0;
    text-align: left;
  }

  .legal-table td:first-child {
    border-top: 0;
  }

  .legal-table td::before {
    content: attr(data-label);
    color: #52666e;
    font-size: 12px;
    font-weight: 900;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-banner a {
    text-align: center;
  }
}
