:root {
  --page: #edf1f3;
  --ink: #25373c;
  --muted: #617276;
  --green: #008e77;
  --deep: #004e48;
  --orange: #ff7900;
  --line: #dce5e7;
  --micro: 220ms;
  --control: 320ms;
  --disclosure: 450ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page);
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  padding-top: 75px;
}
a {
  color: var(--green);
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: 0;
  background: transparent;
  color: inherit;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #f5a000;
  outline-offset: 4px;
}
p,
h1,
h2,
h3,
ul,
ol {
  margin: 0;
}
h1 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  text-transform: uppercase;
}
h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}
h3 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
p,
ul,
ol,
h2,
h3 {
  width: 100%;
  max-width: none;
}
ul,
ol {
  padding-left: 23px;
}
li + li {
  margin-top: 10px;
}
li::marker {
  color: var(--green);
}
[hidden] {
  display: none !important;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 75px;
  background: rgba(241, 245, 246, 0.98);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 164px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 27px;
  height: 100%;
  margin-left: auto;
}
.desktop-nav > a {
  color: var(--ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  padding-top: 3px;
  font-size: 14px;
}
.desktop-nav > a[aria-current] {
  border-color: var(--green);
  color: var(--green);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}
.desktop-actions {
  display: flex;
  gap: 10px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 24px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  font-size: 14px;
  max-width: 100%;
  text-align: center;
  border: 1px solid transparent;
}
.button-green {
  background: var(--green);
}
.locale {
  font-size: 12px;
  font-weight: 700;
}
.dock-launch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  min-height: 42px;
}
.dock-launch b {
  border-radius: 50%;
  background: #d8ece5;
  color: var(--deep);
  min-width: 22px;
  height: 22px;
  line-height: 22px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  margin: 5px auto;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 15px 20px 24px;
  background: #fff;
  max-height: calc(100dvh - 60px);
  overflow: auto;
  box-shadow: 0 18px 25px #193d401c;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink);
}
.mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.menu-scrim {
  position: fixed;
  z-index: 40;
  inset: 75px 0 0;
  background: #14373766;
}
.page-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
  align-items: start;
}
.content-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar {
  position: sticky;
  top: 95px;
  min-width: 0;
  max-height: calc(100dvh - 115px);
  overflow: auto;
  scrollbar-width: thin;
}
.side-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.side-card + .side-card {
  margin-top: 20px;
}
.side-title {
  background: #e5ecec;
  padding: 11px 15px;
  color: #58716f;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.045em;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: var(--ink);
  border-bottom: 1px solid #edf1f2;
  font-size: 13px;
  min-height: 44px;
}
.side-link img {
  flex: 0 0 22px;
  object-fit: contain;
}
.article-nav a {
  display: block;
  padding: 9px 14px;
  font-size: 12px;
  line-height: 1.45;
  color: #536668;
  border-left: 3px solid transparent;
}
.article-nav a[aria-current='true'] {
  border-left-color: var(--green);
  background: #e5f4ee;
  color: var(--deep);
  font-weight: 700;
}
.side-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.side-game img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.side-responsible {
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 381px;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  background: #003f3b;
  padding: 54px 30px;
}
.hero:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0, 42, 40, 0.58),
    rgba(0, 42, 40, 0.16) 62%,
    transparent 78%
  );
}
.hero-copy {
  width: 62%;
  color: white;
}
.hero-lead {
  margin-top: 16px;
  line-height: 1.6;
  color: #e1eeeb;
  font-size: 15px;
}
.content-section {
  padding: 20px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e0e6e7;
  scroll-margin-top: 95px;
  min-width: 0;
}
.content-section > h2 {
  margin-bottom: 20px;
  background: none;
  border: 0;
  min-height: 0;
}
.section-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
}
.section-body > h3 {
  margin: 0;
}
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  scrollbar-color: var(--green) #e7efed;
  scrollbar-width: thin;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
}
th,
td {
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e1e8e8;
  min-width: 140px;
}
th {
  background: var(--deep);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
td:first-child {
  font-weight: 600;
  background: #f1f6f4;
  border-left: 3px solid #bcdbd0;
}
tbody tr:nth-child(even) td {
  background: #f7faf9;
}
tbody tr:last-child td {
  border-bottom: 0;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.comparison {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  min-width: 0;
}
.comparison > p:first-of-type {
  font-weight: 700;
  font-size: 18px;
  padding-left: 30px;
}
.comparison-sign {
  position: absolute;
  top: 17px;
  left: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}
.comparison.cons {
  border-top-color: #aa6244;
}
.cons .comparison-sign {
  color: #aa6244;
}
.review-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f7faf9;
}
.review-card p:last-child {
  font-weight: 700;
  color: var(--deep);
  font-size: 13px;
}
.review-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.byline {
  background: #f0f5f4;
  border-left: 3px solid #779c93;
  padding: 14px 16px;
  font-size: 13px;
  color: #4b625d;
}
.faq-item {
  width: 100%;
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding: 0 32px 17px 0;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: '';
  position: absolute;
  right: 7px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}
.faq-item[open] summary:after {
  transform: rotate(225deg);
}
.faq-answer {
  padding: 0 0 20px;
}
.promo-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  background: #004039;
  border-radius: 6px;
  padding: 32px 30px;
  display: flex;
  align-items: flex-end;
}
.promo-banner:after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background: linear-gradient(90deg, #003a35b8, transparent 80%);
}
.promo-copy {
  color: white;
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.promo-title {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
}
.promo-copy p:not(.promo-title) {
  font-size: 14px;
  color: #e1eeeb;
}
.copy-right {
  justify-content: flex-end;
}
.copy-right:after {
  background: linear-gradient(270deg, #003a35b8, transparent 80%);
}
.store-pair {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-button {
  border-radius: 7px;
  background: #fff;
  color: var(--deep);
  min-height: 62px;
  min-width: 190px;
  padding: 10px 16px;
  justify-content: flex-start;
}
.store-button > span:last-child {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 3px;
  font-size: 12px;
  white-space: nowrap;
}
.store-button strong {
  font-size: 15px;
}
.platform-mark {
  width: 26px;
  font-size: 24px;
}
.game-rail {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 0;
}
.rail-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.rail-heading p {
  font-size: 18px;
  font-weight: 700;
}
.rail-toggle {
  font-size: 12px;
  background: #e5f2ed;
  color: var(--deep);
  border-radius: 4px;
  min-height: 36px;
  padding: 6px 12px;
}
.rail-window {
  width: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #7fb9a5 transparent;
}
.rail-track {
  display: flex;
  width: max-content;
  gap: 16px;
}
.game-group {
  display: flex;
  gap: 14px;
}
.game-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 132px;
  flex: 0 0 132px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.game-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 7px;
}
.game-card span {
  padding-bottom: 4px;
  min-height: 39px;
}
.site-footer {
  background: #e3eaeb;
  border-top: 1px solid #d5e0e0;
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 32px;
}
.footer-brand img {
  width: 148px;
  height: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  max-width: 280px;
}
.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer-grid nav strong {
  margin-bottom: 5px;
  color: var(--ink);
}
.footer-grid nav a {
  color: #486563;
}
.footer-grid .footer-geos {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid #ffffff3d;
  border-radius: 14px;
  background: linear-gradient(135deg, #062b56, #11457e 64%, #8f0b23);
  box-shadow: 0 14px 34px #062b5626;
}
.footer-grid .footer-geo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 16px 8px 9px;
  border: 1px solid #ffffff59;
  border-radius: 999px;
  background: #ffffff12;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 #ffffff16;
  transition:
    transform var(--micro) var(--ease),
    background-color var(--micro) var(--ease),
    border-color var(--micro) var(--ease);
}
.footer-grid .footer-geo-link:hover,
.footer-grid .footer-geo-link:focus-visible {
  transform: translateY(-2px);
  border-color: #fff;
  background: #ffffff24;
}
.responsible {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}
.age {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep);
  border-radius: 50%;
  font-size: 15px;
  color: var(--deep);
  font-weight: 700;
  flex-shrink: 0;
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #cbdada;
  padding: 20px 0;
  font-size: 12px;
  color: #5f7472;
}
.service-main {
  padding-top: 20px;
  padding-bottom: 40px;
}
.service-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}
.service-block h1 {
  margin-bottom: 25px;
}
.service-qa {
  margin-top: 25px;
}
.service-qa h2 {
  font-size: 21px;
  line-height: 29px;
  margin-bottom: 15px;
}
.service-block > p {
  margin: 20px 0;
}
.utility-cluster {
  position: fixed;
  z-index: 35;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.utility-cluster > a,
.utility-cluster > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 3px 10px #16483b30;
}
.utility-cluster img {
  filter: brightness(0) invert(1);
}
.utility-main {
  font-size: 22px;
}
.bonus-dock {
  position: fixed;
  z-index: 60;
  right: 30px;
  top: 85px;
  width: 410px;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 105px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 18px 70px #073b3b36;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel-heading strong {
  font-size: 20px;
}
.panel-heading button {
  min-width: 40px;
  min-height: 40px;
  font-size: 28px;
}
.dock-offer {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.dock-offer p {
  font-size: 13px;
}
.offer-wheel {
  border: 0;
  border-radius: 10px;
  padding: 24px;
  max-width: calc(100vw - 28px);
  width: 500px;
  max-height: calc(100dvh - 30px);
  overflow: auto;
  color: var(--ink);
}
.offer-wheel::backdrop {
  background: #042d2cbf;
}
.offer-wheel > p {
  font-size: 13px;
  margin: 10px 0 20px;
}
.wheel-stage {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: 15px auto 25px;
}
.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--wheel-sectors);
  border: 7px solid #efc580;
  position: relative;
  box-shadow: 0 0 0 4px #006a55;
}
.wheel-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 43%;
  transform-origin: 0 50%;
  transform: translateY(-50%) rotate(calc(var(--i)*72deg - 54deg));
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-align: right;
  padding-right: 15px;
  white-space: nowrap;
}
.wheel-pointer {
  position: absolute;
  z-index: 2;
  left: calc(50% - 12px);
  top: -12px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--orange);
}
.wheel-results > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -70px;
  background: #fff;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}
.noscript-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 16px;
}
@media (min-width: 1360px) and (max-width: 1500px) {
  .header-inner {
    gap: 18px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .hero {
    padding: 36px 25px;
  }
  .hero-copy {
    width: 64%;
  }
  .hero h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .promo-title {
    font-size: 27px;
  }
  .promo-copy {
    width: 67%;
  }
  .promo-banner {
    padding: 28px 25px;
  }
  .utility-cluster {
    right: 10px;
  }
}
@media (max-width: 1359px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .sidebar {
    display: none !important;
  }
  .content-column {
    width: 100%;
    max-width: none;
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-inner {
    gap: 18px;
  }
  .hero-copy {
    width: 60%;
  }
  .hero {
    min-height: 381px;
  }
  .utility-cluster {
    right: 8px;
    bottom: 8px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 1100px) {
  .desktop-actions {
    display: none;
  }
  .desktop-nav {
    margin-left: auto;
  }
  .header-tools {
    margin-left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header {
    height: 60px;
  }
  .header-inner {
    gap: 12px;
  }
  .brand img {
    width: 137px;
  }
  .desktop-nav {
    display: none;
  }
  .header-tools {
    margin-left: auto;
    gap: 8px;
  }
  .dock-launch {
    gap: 5px;
  }
  .dock-launch > span {
    display: none;
  }
  .menu-scrim {
    top: 60px;
  }
  .page-layout {
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .content-column {
    gap: 20px;
  }
  .hero {
    padding: 190px 20px 28px;
    min-height: 0;
    background: #004239;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #004239 0%,
      #004239 43%,
      rgba(0, 66, 57, 0.1) 77%,
      transparent
    );
  }
  .hero-copy {
    width: 100%;
  }
  h1 {
    font-size: 32px;
    line-height: 38px;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .content-section {
    padding: 20px;
    scroll-margin-top: 80px;
  }
  .pros-cons,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .comparison {
    padding: 18px;
  }
  .promo-banner {
    padding: 180px 20px 25px;
    min-height: 0;
  }
  .promo-banner:after,
  .copy-right:after {
    background: linear-gradient(
      0deg,
      #004039 0%,
      #004039 38%,
      rgba(0, 64, 57, 0.12) 80%,
      transparent
    );
  }
  .promo-copy {
    width: 100%;
  }
  .promo-title {
    font-size: 27px;
    line-height: 33px;
  }
  .promo-copy p:not(.promo-title) {
    font-size: 14px;
  }
  .game-rail {
    padding: 20px;
  }
  .game-card {
    width: 120px;
    flex-basis: 120px;
  }
  .game-card img {
    width: 120px;
    height: 120px;
  }
  .store-pair {
    flex-direction: column;
    width: 100%;
    max-width: 290px;
  }
  .store-button {
    width: 100%;
    min-width: 0;
  }
  .footer-grid {
    gap: 27px;
  }
  .footer-grid .footer-geos {
    justify-content: stretch;
    padding: 16px;
  }
  .footer-grid .footer-geo-link {
    flex: 1 1 190px;
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .service-block {
    padding: 20px;
  }
  .service-block h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .service-qa h2 {
    font-size: 21px;
    line-height: 28px;
  }
  .bonus-dock {
    top: 70px;
    right: 16px;
    max-height: calc(100dvh - 85px);
  }
  .utility-cluster {
    position: static;
    flex-direction: row;
    justify-content: center;
    background: #e3eaeb;
    padding: 12px 16px;
  }
  .offer-wheel {
    padding: 20px;
  }
  .wheel-label {
    font-size: 10px;
    padding-right: 10px;
  }
  .mobile-actions .button {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 400px) {
  .brand img {
    width: 123px;
  }
  .header-tools {
    gap: 3px;
  }
  .dock-launch {
    padding: 0 5px;
  }
  .header-inner {
    gap: 8px;
  }
  .hero,
  .promo-banner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid .footer-geos {
    grid-column: 1;
  }
  .footer-grid .footer-geo-link {
    flex-basis: 100%;
  }
  .footer-bottom {
    grid-column: 1;
  }
  .content-section {
    padding: 20px;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .game-card {
    width: 112px;
    flex-basis: 112px;
  }
  .game-card img {
    width: 112px;
    height: 112px;
  }
  .table-wrap td,
  .table-wrap th {
    min-width: 128px;
    padding: 12px;
  }
  .wheel-label {
    font-size: 9px;
  }
  .offer-wheel {
    padding: 18px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-top: 220px;
  }
  .promo-banner {
    padding-top: 210px;
  }
}
@media (max-width: 480px) {
  h1,
  h2,
  h3 {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.geo-switcher {
  position: relative;
  flex: 0 0 auto;
}
.geo-switcher > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 86px;
  min-height: 46px;
  padding: 7px 11px;
  border: 1px solid #cfd7dd;
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 8px #0b31540a;
  transition:
    border-color var(--control) var(--ease),
    box-shadow var(--control) var(--ease);
}
.geo-switcher > summary::-webkit-details-marker {
  display: none;
}
.geo-switcher > summary:hover,
.geo-switcher[open] > summary {
  border-color: #88a8c7;
  box-shadow: 0 6px 18px #0b31541c;
}
.geo-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #e9eef2;
  border: 1px solid #b9c6d1;
  box-shadow: 0 1px 4px #0b315426;
}
.geo-flag svg {
  width: 40px;
  height: 32px;
  max-width: none;
  display: block;
}
.geo-chevron {
  width: 9px;
  height: 9px;
  margin: 0 2px 4px 0;
  border-right: 2px solid #e2a300;
  border-bottom: 2px solid #e2a300;
  transform: rotate(45deg);
  transition: transform var(--control) var(--ease);
}
.geo-switcher[open] .geo-chevron {
  margin-top: 6px;
  transform: rotate(225deg);
}
.geo-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 9px);
  right: 0;
  width: 126px;
  max-height: calc(100dvh - 96px);
  padding: 7px;
  background: #101318;
  border: 1px solid #2a2f36;
  border-radius: 15px;
  box-shadow: 0 18px 48px #06101d52;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #53616f #171b21;
}
.geo-menu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  min-height: 51px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #f6f7f8;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background-color var(--micro) var(--ease);
}
.geo-menu > a:hover,
.geo-menu > a:focus-visible {
  background: #242a31;
}
.geo-menu .geo-flag {
  width: 31px;
  height: 31px;
  flex-basis: 31px;
  border-color: #45515d;
}
@media (max-width: 767px) {
  .geo-switcher > summary {
    min-width: 74px;
    min-height: 42px;
    padding: 5px 8px;
    gap: 7px;
    border-radius: 13px;
  }
  .geo-switcher .geo-flag {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }
  .geo-menu {
    top: calc(100% + 8px);
    max-height: calc(100dvh - 72px);
  }
}
@media (max-width: 400px) {
  .geo-switcher > summary {
    min-width: 64px;
    padding-left: 7px;
    padding-right: 7px;
    gap: 5px;
  }
  .geo-chevron {
    display: none;
  }
  .geo-current-code {
    font-size: 12px;
  }
}
/* CTA revision r02: one shared, config-backed platform button family. */
.store-pair {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 100%;
}
.store-pair > .store-button {
  flex: 0 0 190px;
  width: 190px;
  min-width: 190px;
  min-height: 62px;
  padding: 11px 16px;
  gap: 12px;
  justify-content: flex-start;
}
.store-button > .platform-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
.store-button > .platform-mark > img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.store-button > .store-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
}
.store-button > .store-label > span,
.store-button > .store-label > strong {
  display: block;
  white-space: nowrap;
}
.store-button > .store-label > strong {
  font-size: 15px;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .store-pair {
    flex-direction: column;
    width: 100%;
    max-width: 290px;
  }
  .store-pair > .store-button {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }
}
/* Interactive pass r03 — identity pack and progressive shared components. */
:root {
  --green: #007763;
}
.button {
  color: #172d28;
}
.button-green {
  color: #fff;
}
.store-button {
  color: var(--deep);
}
.wheel-disc {
  background: var(--wheel-sectors);
}

html:not([data-interactions]) .menu-toggle,
html:not([data-interactions]) .dock-launch,
html:not([data-interactions]) .wheel-launch {
  display: none !important;
}
.is-disclosing {
  overflow: hidden !important;
}
.desktop-nav > a {
  position: relative;
  transition: color var(--control) var(--ease);
}
.desktop-nav > a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--control) var(--ease);
}
.desktop-nav > a:focus-visible:after {
  transform: scaleX(1);
}
.mobile-menu nav a {
  transition:
    background-color var(--control) var(--ease),
    padding-left var(--control) var(--ease);
}
.mobile-menu nav a:focus-visible {
  background: #e5f4ee;
  padding-left: 9px;
}
.menu-toggle span {
  transition:
    transform var(--control) var(--ease),
    opacity var(--micro) var(--ease);
}
.menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.button,
.dock-launch,
.rail-toggle,
.utility-cluster > button,
.utility-cluster > a,
.panel-heading > button {
  transition:
    transform var(--control) var(--ease),
    box-shadow var(--control) var(--ease),
    background-color var(--control) var(--ease);
}
.button:active,
.dock-launch:active,
.rail-toggle:active,
.utility-cluster > button:active,
.utility-cluster > a:active {
  transform: translateY(1px) scale(0.995);
}
.button:disabled {
  opacity: 0.62;
}
.game-card img,
.side-game img {
  transition:
    transform var(--control) var(--ease),
    box-shadow var(--control) var(--ease);
}
.game-card:focus-visible img,
.side-game:focus-visible img {
  transform: scale(0.985);
  box-shadow: 0 0 0 3px #008e77;
}
.content-section {
  position: relative;
}
.content-section:before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(var(--green), #a5d3c4);
  transform: scaleY(1);
  transform-origin: top;
  pointer-events: none;
}
html[data-interactions] .content-section:before {
  transform: scaleY(0);
  transition: transform 600ms var(--ease);
}
html[data-interactions] .content-section.edge-seen:before {
  transform: scaleY(1);
}
.table-wrap td:first-child {
  border-left: 3px solid #83baa8;
}
.table-wrap:focus-visible td:first-child {
  border-left-color: var(--orange);
}
.table-wrap td {
  transition:
    background-color var(--control) var(--ease),
    border-color var(--control) var(--ease);
}
.comparison {
  border-top-width: 4px;
  background: linear-gradient(180deg, #edf7f1 0, #fff 84px);
}
.comparison.cons {
  background: linear-gradient(180deg, #faf0eb 0, #fff 84px);
}
.comparison-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #d3ede2;
  border-radius: 3px;
  font-size: 21px;
  top: 20px;
  left: 18px;
}
.cons .comparison-sign {
  background: #f1ddd0;
}
.faq-item summary:after {
  transition: transform var(--disclosure) var(--ease);
}
.faq-item summary[aria-expanded='false']:after {
  transform: rotate(45deg);
}
.faq-item summary[aria-expanded='true']:after {
  transform: rotate(225deg);
}
.game-repeat {
  pointer-events: none;
  user-select: none;
}
.game-rail[data-native='false'] .rail-window {
  overflow: hidden;
}
.game-rail[data-native='false'] .rail-track {
  animation: ivi-game-loop var(--rail-duration, 36s) linear infinite;
}
.game-rail[data-paused='true'] .rail-track {
  animation-play-state: paused;
}
.game-rail[data-native='true'] .rail-track {
  transform: none;
}
.rail-toggle {
  min-height: 44px;
  min-width: 60px;
  flex-shrink: 0;
}
.rail-heading p {
  width: auto;
}
@keyframes ivi-game-loop {
  to {
    transform: translateX(calc(-1 * var(--rail-distance)));
  }
}
.bonus-dock:not([hidden]) {
  animation: ivi-panel-in 320ms var(--ease);
}
.offer-wheel[open] {
  animation: ivi-panel-in 320ms var(--ease);
}
@keyframes ivi-panel-in {
  from {
    opacity: 0.65;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html:has(.offer-wheel[open]) {
  overflow: hidden;
}
.wheel-disc {
  container-type: inline-size;
}
.wheel-label {
  width: 50%;
  height: 28px;
  padding: 0;
  text-align: center;
  transform: translateY(-50%) rotate(var(--angle));
  font-size: clamp(10px, 3.8cqw, 12px);
  line-height: 1.15;
}
.wheel-label > span {
  position: absolute;
  left: 24%;
  width: 72%;
  top: 50%;
  white-space: normal;
  overflow-wrap: normal;
  hyphens: none;
  transform: translateY(-50%) rotate(var(--flip));
  text-wrap: balance;
}
.wheel-results > div[hidden] {
  display: none !important;
}
@media (hover: hover) {
  .desktop-nav > a:hover:after {
    transform: scaleX(1);
  }
  .mobile-menu nav a:hover {
    background: #e5f4ee;
    padding-left: 9px;
  }
  .game-card:hover img,
  .side-game:hover img {
    transform: scale(0.985);
    box-shadow: 0 0 0 3px #008e77;
  }
  .button:hover {
    box-shadow: 0 3px 9px #003d382c;
  }
  .table-wrap tr:hover td {
    background: #eaf5ef;
  }
  .table-wrap tr:hover td:first-child {
    border-left-color: var(--orange);
  }
}
@media (max-width: 767px) {
  .mobile-menu {
    padding: 15px 20px 24px;
  }
  .bonus-dock {
    max-width: calc(100% - 32px);
    width: 410px;
  }
  .wheel-stage {
    margin-bottom: 20px;
  }
  .wheel-label {
    font-size: clamp(10px, 3.8cqw, 12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html[data-interactions] .content-section:before {
    transform: scaleY(1);
  }
  .game-rail .rail-track {
    animation: none !important;
    transform: none !important;
  }
  .game-repeat {
    display: none !important;
  }
  .game-rail .rail-window {
    overflow: auto !important;
  }
  .game-card img,
  .side-game img,
  .button {
    transform: none !important;
  }
}
/* r05: responsive art direction keeps one full-bleed image under each copy group. */
.hero > picture,
.promo-banner > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
}
.hero > picture > img,
.promo-banner > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.hero,
.promo-banner {
  aspect-ratio: var(--art-ratio);
}
.hero h1 {
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (min-width: 638px) {
  .hero {
    padding: 32px 25px;
    min-height: 381px;
  }
  .hero-copy {
    width: 58%;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      rgba(0, 25, 25, 0.24),
      rgba(0, 25, 25, 0.07) 62%,
      transparent
    );
  }
  .promo-banner {
    padding: 28px 25px;
    min-height: 260px;
  }
  .promo-copy {
    width: 65%;
  }
  .promo-banner:after {
    background: linear-gradient(90deg, rgba(0, 25, 25, 0.22), transparent 80%);
  }
  .promo-banner.copy-right:after {
    background: linear-gradient(270deg, rgba(0, 25, 25, 0.22), transparent 80%);
  }
}
@media (max-width: 637px) {
  .hero,
  .promo-banner {
    aspect-ratio: auto;
  }
  .hero {
    padding: max(250px, 70vw) 20px 28px;
    min-height: 0;
  }
  .promo-banner {
    padding: max(180px, 42vw) 20px 25px;
    min-height: 0;
  }
  .hero-copy,
  .promo-copy {
    width: 100%;
  }
  .hero > picture > img,
  .promo-banner > picture > img {
    object-position: 50% 0% !important;
  }
  .hero:after,
  .promo-banner:after,
  .promo-banner.copy-right:after {
    background: linear-gradient(
      0deg,
      rgba(0, 16, 18, 0.28),
      rgba(0, 16, 18, 0.04) 66%,
      transparent
    );
  }
}
@media (max-width: 360px) {
  .promo-copy > .button,
  .dock-offer > .button,
  .wheel-results .button {
    font-size: 12px;
    padding: 11px 10px;
    min-height: 44px;
    white-space: nowrap;
  }
}
@media (max-width: 637px) {
  .hero h1 {
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.1875;
  }
}
/* Keep raster-ratio reserve as a minimum, while long source headlines grow the hero. */
.content-column {
  container-type: inline-size;
}
.hero {
  aspect-ratio: auto;
}
@media (min-width: 638px) {
  .hero {
    min-height: max(381px, calc(100cqw * 941 / 1672));
  }
}

/* r09 — shared promotions, editorial cards, download controls and utilities. */
.editorial-article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.hero-actions {
  margin-top: 24px;
}
.hero-actions > .button {
  font-size: 16px;
  padding: 13px 24px;
}
.promo-banner {
  height: max(340px, calc(100cqw * 736 / 2135));
  min-height: 0;
  aspect-ratio: auto;
  padding: 28px;
  align-items: center;
}
.promo-copy {
  width: 65%;
  gap: 16px;
}
.promo-title {
  font-size: clamp(30px, 3.8cqw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.promo-copy p:not(.promo-title) {
  font-size: 17px;
  line-height: 1.45;
  max-width: 440px;
}
.promo-copy > .button {
  font-size: 15px;
  min-height: 46px;
  padding: 12px 20px;
}
.promo-banner:after {
  background: linear-gradient(90deg, #002824b8, transparent 85%);
}
.promo-banner.copy-right:after {
  background: linear-gradient(270deg, #002824b8, transparent 85%);
}
.store-pair {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  max-width: none;
}
.store-pair > .store-button {
  flex: 0 1 210px;
  width: 210px;
  min-width: 195px;
  min-height: 64px;
  padding: 10px 12px;
  gap: 10px;
  background: #003f39;
  border: 1px solid #ffffff70;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px #001c2630;
}
.store-button > .store-label {
  font-size: 12px;
  line-height: 1.25;
  color: #fff;
}
.store-button > .store-label > strong {
  font-size: 16px;
  line-height: 1.2;
}
.store-button > .platform-mark,
.store-button > .platform-mark > img {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}
.store-button:hover {
  background: #006651;
}
.final-app .promo-copy {
  width: 74%;
}
.final-app .promo-title {
  max-width: 540px;
}

.bonus-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.bonus-info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  min-width: 0;
  border: 1px solid #d3e4dc;
  border-radius: 12px;
  background: #f0f7f3;
  box-shadow: 0 4px 16px #004e4805;
}
.bonus-info-card:last-child {
  grid-column: 1/-1;
}
.bonus-info-card h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #005345;
  text-wrap: balance;
}
.bonus-info-card p,
.bonus-info-card li {
  font-size: 14px;
  line-height: 1.75;
}
.bonus-info-card:after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: var(--card-art);
  background-repeat: no-repeat;
  background-position: var(--card-position, right bottom);
  background-size: auto 290px;
  opacity: 0.2;
  filter: brightness(1.65) saturate(1.15);
  pointer-events: none;
}
.theme-welcome {
  --card-art: url('promo-casino-1.webp');
}
.theme-second {
  --card-art: url('promo-bonuses-2.webp');
  --card-position: left bottom;
  background: #f4f7ef;
}
.theme-reload {
  --card-art: url('promo-casino-3.webp');
  background: #fcf7eb;
  border-color: #ede0c2;
}
.theme-sport {
  --card-art: url('promo-casino-4.webp');
  --card-position: left bottom;
  background: #eef5f9;
}
.theme-offers {
  --card-art: url('promo-bonuses-1.webp');
}
.theme-free {
  --card-art: url('promo-index-4.webp');
  --card-position: left bottom;
  background: #f7f3eb;
}
.theme-terms {
  --card-art: url('promo-app-1.webp');
  background: #f1f4f6;
}
.byline {
  border: 1px solid #cae0d8;
  border-left: 4px solid var(--green);
  border-radius: 6px;
  padding: 15px 18px;
  color: #194e43;
  background: #eaf4ee;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}
.review-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f9f6;
  gap: 18px;
  padding: 24px;
}
.review-card:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url('promo-bonuses-1.webp') right bottom/auto 250px no-repeat;
  opacity: 0.12;
  filter: brightness(1.7);
  pointer-events: none;
}
.review-card-heading {
  display: flex;
  gap: 12px;
  align-items: center;
}
.review-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d5e9df;
  color: #005344;
  font-weight: 700;
  font-size: 13px;
}
.review-source-tag {
  font-size: 11px;
  line-height: 1.5;
  color: #527266;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.review-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}
.review-card blockquote p:last-child {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.review-card > p:last-child {
  padding-top: 16px;
  border-top: 1px solid #d6e4dd;
}
.light-art-block {
  background-image:
    linear-gradient(90deg, #fffffff7, #fffffff2), url('promo-app-1.webp');
  background-position:
    center,
    right bottom;
  background-size:
    cover,
    auto 100%;
  background-repeat: no-repeat;
}
body[data-page='index.html'] .light-art-block {
  background-image:
    linear-gradient(90deg, #fffffff7, #fffffff2), url('promo-index-1.webp');
}
body[data-page='app.html'] .light-art-block {
  background-image:
    linear-gradient(90deg, #fffffff7, #fffffff2), url('promo-app-final.webp');
}
body[data-page='bonuses.html'] .light-art-block {
  background-image:
    linear-gradient(90deg, #fffffff7, #fffffff2), url('promo-bonuses-1.webp');
}
.comparison {
  background-image:
    linear-gradient(180deg, #edf7f1f5, #fffffff7), url('promo-casino-1.webp');
  background-size: cover;
  background-position: right bottom;
}
.comparison.cons {
  background-image:
    linear-gradient(180deg, #faf0ebf5, #fffffff7), url('promo-casino-2.webp');
}
.side-responsible {
  background-image:
    linear-gradient(#fffffff7, #fffffff2), url('promo-app-final.webp');
  background-position: right bottom;
  background-size: cover;
}

.utility-cluster {
  position: fixed;
  right: 16px;
  bottom: 20px;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  background: none;
}
.utility-cluster > a,
.utility-cluster > button {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  box-shadow: 0 4px 16px #003b3640;
}
.utility-cluster .wheel-launch {
  background: #005a4c;
  border: 2px solid #f3c56b;
}
.utility-cluster .utility-chat {
  background: var(--orange);
  color: #183d32;
}
.utility-cluster .scroll-top {
  position: relative;
  background: #fff;
  color: var(--deep);
  border: 1px solid #cde1d7;
  --scroll-progress: 0;
}
.scroll-top > svg {
  position: absolute;
  inset: 2px;
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
  fill: none;
  stroke-width: 2.5;
}
.scroll-track {
  stroke: #dbe9e1;
}
.scroll-meter {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: calc(100 - var(--scroll-progress));
}
.scroll-top-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
  font-weight: 700;
}
.scroll-top-copy > span {
  font-size: 20px;
  line-height: 19px;
}
.scroll-top-copy small {
  font-size: 9px;
}
.wheel-disc {
  background: var(--wheel-sectors);
}
.wheel-label {
  font-size: clamp(10px, 3.9cqw, 13px);
  height: 40px;
}
.wheel-label > span {
  left: 22%;
  width: 70%;
  text-wrap: balance;
}
.wheel-results strong {
  font-size: 23px;
  line-height: 1.3;
  color: var(--deep);
}
.wheel-results > div {
  padding: 20px;
  border: 1px solid #d1e5d9;
  border-radius: 10px;
  background: #eef7f1;
}
.coin-confetti {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: 0;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 1px 2px #002c2430;
  will-change: transform, opacity;
}
.dock-offer {
  padding: 18px;
  border: 1px solid #d9e8df;
  border-radius: 10px;
  background:
    linear-gradient(100deg, #f6fbf8f7, #f1f8f3ef),
    url('promo-bonuses-1.webp') right center/cover;
}
.dock-offer strong {
  font-size: 18px;
  line-height: 1.35;
  color: var(--deep);
}
.dock-offer p {
  font-size: 14px;
}

@media (min-width: 638px) and (max-width: 1050px) {
  .final-app .store-pair {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .final-app .store-pair > .store-button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding: 10px 8px;
    gap: 8px;
  }
  .final-app .promo-copy {
    width: 80%;
  }
  .final-app .store-button > .store-label {
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  .bonus-card-grid {
    gap: 14px;
  }
  .bonus-info-card {
    padding: 18px;
  }
  .bonus-info-card h3 {
    font-size: 17px;
  }
  .utility-cluster {
    right: 10px;
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 8px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .scroll-top > svg {
    inset: 2px;
    width: 40px;
    height: 40px;
  }
  .site-footer {
    padding-bottom: 70px;
  }
}
@media (max-width: 637px) {
  .promo-banner {
    height: 470px;
    min-height: 470px;
    padding: 190px 20px 24px;
    align-items: flex-end;
  }
  .promo-copy,
  .final-app .promo-copy {
    width: 100%;
    gap: 16px;
  }
  .promo-title {
    font-size: clamp(29px, 8.5vw, 36px);
    line-height: 1.12;
  }
  .promo-copy p:not(.promo-title) {
    font-size: 16px;
    line-height: 1.45;
  }
  .promo-banner:after,
  .promo-banner.copy-right:after {
    background: linear-gradient(
      0deg,
      #00231fed,
      #00231fb8 46%,
      transparent 77%
    );
  }
  .store-pair {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 8px;
  }
  .store-pair > .store-button {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 12px 8px;
    gap: 8px;
    min-height: 64px;
  }
  .store-button > .store-label {
    font-size: 10px;
    letter-spacing: -0.15px;
  }
  .store-button > .store-label > strong {
    font-size: 14px;
  }
  .store-button > .platform-mark,
  .store-button > .platform-mark > img {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .hero-actions {
    margin-top: 22px;
  }
  .bonus-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .bonus-info-card:last-child {
    grid-column: auto;
  }
  .review-card {
    padding: 20px;
  }
  .byline {
    padding: 14px;
    font-size: 13px;
  }
}
@media (max-width: 399px) {
  .store-pair {
    flex-direction: column;
  }
  .store-pair > .store-button {
    flex: 0 0 auto;
    width: 100%;
    min-height: 58px;
    padding: 8px 14px;
  }
  .store-button > .store-label {
    font-size: 12px;
  }
  .promo-banner {
    height: 500px;
    min-height: 500px;
    padding-top: 170px;
  }
  .final-app .promo-title {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .coin-confetti {
    display: none;
  }
  .confetti-piece {
    will-change: auto;
  }
}

/* r10: stronger, correctly aligned subjects in compact content blocks. */
.theme-mobile {
  --card-art: url('promo-app-final.webp');
  background-color: #eff5f4;
}
.topic-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.topic-info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid #d3e4dc;
  border-radius: 12px;
  min-width: 0;
  background-color: #f2f7f4;
}
.topic-info-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.topic-info-card h3 {
  font-size: 19px;
  line-height: 1.45;
  color: #005345;
}
.topic-info-card p,
.topic-info-card li {
  font-size: 14px;
  line-height: 1.75;
}
.topic-info-card:after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--card-art) var(--card-position, right bottom)/auto 250px
    no-repeat;
  opacity: 0.17;
  filter: brightness(1.7) saturate(1.15);
  pointer-events: none;
}
body[data-page] .light-art-block {
  background-image:
    linear-gradient(90deg, #ffffffde, #ffffffe8),
    var(--card-art, url('promo-app-1.webp'));
  background-position: center, var(--card-position, right bottom);
  background-size:
    cover,
    auto 250px;
  background-repeat: no-repeat;
}
.comparison {
  background-image:
    linear-gradient(180deg, #edf7f1df, #ffffffdb), url('promo-casino-1.webp');
  background-size:
    cover,
    auto 260px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.comparison.cons {
  background-image:
    linear-gradient(180deg, #faf0ebdf, #ffffffdb), url('promo-casino-2.webp');
  background-position:
    center,
    left bottom;
}
.side-responsible {
  background-image:
    linear-gradient(#ffffffe6, #ffffffdc), url('promo-app-final.webp');
  background-size:
    cover,
    auto 200px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.side-card:not(.article-nav):not(.side-responsible) {
  background-image:
    linear-gradient(#fffffff0, #ffffffe0), url('promo-index-1.webp');
  background-size:
    cover,
    auto 240px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.dock-offer {
  background-image:
    linear-gradient(100deg, #f6fbf8ee, #f1f8f3ce), url('promo-bonuses-1.webp');
  background-size:
    cover,
    auto 180px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.wheel-results > div {
  background-image:
    linear-gradient(100deg, #eef7f1ee, #eef7f1d9), url('promo-bonuses-1.webp');
  background-size:
    cover,
    auto 170px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.review-source-tag {
  color: #00614b;
  font-weight: 700;
}
@media (max-width: 637px) {
  .topic-card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .topic-info-card {
    padding: 18px;
  }
  .topic-info-card h3 {
    font-size: 18px;
  }
}

/* r13: moderate white wash and protected headings over full-bleed artwork.
   Image URLs live in inline background-image; only the overlay is a variable. */
.sidebar-left .side-card {
  background-image: none !important;
  background-color: #fff;
}
.sidebar-left .side-card:before,
.sidebar-left .side-card:after {
  background-image: none !important;
}
body [data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff47, #ffffff1f);
  background-position: center, center !important;
  background-size: cover, cover !important;
  background-repeat: no-repeat !important;
  background-color: #eff4ef;
}
body .bonus-info-card[data-background-id]:after,
body .topic-info-card[data-background-id]:after,
body .review-card[data-background-id]:before {
  content: none;
}
body .side-card[data-background-id] .side-title {
  background: #e5ecece0;
  color: #003c35;
}
body .comparison[data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff4d, #ffffff24);
}
body .review-card[data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff52, #ffffff29);
}
body .light-art-block[data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff52, #ffffff29);
}
body [data-background-id] .table-wrap {
  background: #ffffff99;
}
body [data-background-id] h2,
body [data-background-id] h3,
body .comparison[data-background-id] > p:first-of-type,
body .dock-offer[data-background-id] > strong,
body [data-wheel-result][data-background-id] > strong {
  color: #003c35;
  font-weight: 700;
  background: linear-gradient(110deg, #ffffffc2, #ffffffad);
  border-radius: 4px;
  box-shadow: 0 0 0 5px #ffffff80;
  text-shadow: none;
}

/* Progressive page loader: absent without JS and bypassed for reduced motion. */
html {
  scrollbar-gutter: stable;
}
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(ellipse at 22% 18%, #087b65 0, transparent 48%),
    radial-gradient(ellipse at 85% 95%, #075d54 0, transparent 46%), #002b29;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
  contain: layout paint;
}
html[data-page-transition='loading'],
html[data-page-transition='leaving'] {
  overflow: hidden;
}
html[data-page-transition='loading'] .page-transition,
html[data-page-transition='leaving'] .page-transition {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.transition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 370px);
  padding: 42px 34px 28px;
  border: 1px solid #d0ffea33;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff0f, #ffffff04);
  box-shadow:
    0 28px 90px #001c254a,
    inset 0 1px #ffffff14;
  color: white;
  text-align: center;
  transform: translateY(6px);
  transition: transform 360ms var(--ease);
  backdrop-filter: blur(16px);
}
html[data-page-transition='loading'] .transition-card,
html[data-page-transition='leaving'] .transition-card {
  transform: translateY(0);
}
.transition-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 106px;
  width: 100%;
  margin-bottom: 20px;
}
.transition-emblem img {
  width: 164px;
  height: auto;
  filter: none;
}
.transition-orbit {
  position: absolute;
  inset: 0 23px;
  border-top: 1px solid #a5e8d836;
  border-bottom: 1px solid #a5e8d824;
  border-radius: 50%;
  transform: rotate(-13deg);
}
.transition-orbit:after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  right: 13px;
  top: 9px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #ff790018;
  animation: ivi-loader-pulse 1500ms ease-in-out infinite;
}
.transition-caption {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #8dd9c4;
  margin-bottom: 10px;
  font-weight: 700;
}
.transition-card > strong {
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.transition-card > p {
  font-size: 13px;
  line-height: 1.5;
  color: #aed5ca;
  margin-top: 10px;
}
.transition-track {
  position: relative;
  width: 100%;
  height: 3px;
  margin-top: 28px;
  background: #ffffff16;
  border-radius: 3px;
  overflow: hidden;
}
.transition-track:after {
  content: '';
  position: absolute;
  inset: 0;
  width: 48%;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #ff970e, #ffd18d);
  animation: ivi-loader-track 1200ms ease-in-out infinite;
}
.transition-signature {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #87b9ab;
  margin-top: 22px;
}
@keyframes ivi-loader-track {
  from {
    transform: translateX(-105%);
  }
  to {
    transform: translateX(220%);
  }
}
@keyframes ivi-loader-pulse {
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 10px #ff790005;
  }
}
@media (max-width: 480px) {
  .transition-card {
    padding: 32px 26px 25px;
    border-radius: 18px;
  }
  .transition-card > strong {
    font-size: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-transition {
    display: none !important;
  }
  .transition-track:after,
  .transition-orbit:after {
    animation: none;
  }
  .transition-card {
    backdrop-filter: none;
  }
  html[data-page-transition] {
    overflow: auto;
  }
}

/* r14: pale editorial banners coordinated with the individual card artwork. */
body .hero,
body .promo-banner {
  background: #f1f3eb;
  border: 1px solid #d3e1d6;
  border-radius: 12px;
  box-shadow: 0 4px 16px #004e4808;
}
body .hero:after,
body .promo-banner:after {
  background: linear-gradient(90deg, #ffffffe0, #ffffff70 56%, #ffffff08 86%);
}
body .promo-banner.copy-right:after {
  background: linear-gradient(270deg, #ffffffe0, #ffffff70 56%, #ffffff08 86%);
}
body .promo-banner.final-app:after {
  background: linear-gradient(90deg, #ffffffe6, #ffffffad 70%, #ffffff26);
}
body .hero-copy,
body .promo-copy,
body .hero h1,
body .promo-title {
  color: #003c35;
}
body .hero-lead,
body .promo-copy p:not(.promo-title) {
  color: #2c5046;
}
body .hero h1,
body .promo-title {
  text-shadow: 0 1px 0 #ffffffa6;
}
body .hero-actions > .button:not(.store-button),
body .promo-copy > .button {
  background: #ff970f;
  color: #123d32;
  border-color: #e59126;
  box-shadow: 0 3px 10px #80581412;
}
body .hero-actions > .button:not(.store-button):hover,
body .promo-copy > .button:hover {
  background: #ffac39;
  color: #003c35;
}
body .hero .store-button,
body .promo-banner .store-button {
  background: #004f43;
  color: #fff;
  border-color: #387769;
  box-shadow: 0 3px 10px #004f4320;
}
body .hero .store-button:hover,
body .promo-banner .store-button:hover {
  background: #006651;
}
@media (max-width: 637px) {
  body .hero > picture > img,
  body .promo-banner > picture > img {
    object-fit: cover;
    object-position: center top !important;
  }
  body .hero:after,
  body .promo-banner:after,
  body .promo-banner.copy-right:after,
  body .promo-banner.final-app:after {
    background: linear-gradient(
      0deg,
      #f1f3eb 0%,
      #f1f3ebf5 40%,
      #f1f3ebb3 57%,
      #ffffff00 78%
    );
  }
}

/* r16: full-bleed mobile art; compact heroes only.
   Preserve the original promo heights, including the final App download banner. */
@media (max-width: 637px) {
  body .hero {
    height: auto;
    min-height: 0;
    padding: max(162px, calc(59.5vw - 50px)) 20px 24px;
  }
  body .hero-copy {
    flex-shrink: 0;
  }
}

/* r20: owner requests a floating right-hand stack on every screen size. */
.utility-cluster {
  position: fixed;
  left: auto;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  flex-direction: column;
  gap: 10px;
  padding: 0;
  background: none;
}
@media (max-width: 767px) {
  .utility-cluster {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 8px;
  }
}

/* Czech edition r01: national palette, new heroes and individual hover language. */
:root {
  --page: #f2f5f9;
  --ink: #16273b;
  --muted: #5b6e82;
  --green: #11457e;
  --deep: #062b56;
  --orange: #d7141a;
  --blue: #11457e;
  --red: #d7141a;
  --line: #d8e1ec;
}
body {
  background:
    radial-gradient(circle at 95% 8%, #d7141a0c, transparent 23%),
    radial-gradient(circle at 4% 24%, #11457e12, transparent 28%), var(--page);
}
.site-header {
  background: #f8fbffed;
  border-bottom: 1px solid #cfdbea;
  backdrop-filter: blur(14px);
}
.site-header:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #fff 0 33.33%,
    #11457e 33.33% 66.66%,
    #d7141a 66.66%
  );
}
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px #d7141a24;
}
.button-blue,
.button-green {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px #11457e24;
}
.button:before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    #ffffff55 48%,
    transparent 76%
  );
  transform: translateX(-130%);
  transition: transform 520ms var(--ease);
}
.desktop-nav > a:after {
  bottom: 7px;
  height: 3px;
  background: linear-gradient(90deg, #11457e 0 48%, #fff 48% 52%, #d7141a 52%);
  border-radius: 3px;
}
.desktop-nav > a[aria-current] {
  color: var(--blue);
  border-color: transparent;
}
.side-title {
  background: linear-gradient(100deg, #e8f0fa, #fff 62%, #fbe8e9);
  color: var(--deep);
}
.side-link,
.article-nav a {
  transition:
    color var(--control) var(--ease),
    background var(--control) var(--ease),
    transform var(--control) var(--ease),
    border-color var(--control) var(--ease);
}
.content-section,
.game-rail,
.side-card {
  border-color: #d6e1ee;
  border-radius: 12px;
  box-shadow: 0 8px 30px #062b5608;
}
.content-section:before {
  width: 4px;
  background: linear-gradient(#11457e 0 42%, #fff 42% 58%, #d7141a 58%);
  border-radius: 0 3px 3px 0;
}
.topic-info-card,
.bonus-info-card,
.comparison,
.review-card {
  border-color: #cedbeb;
  transition:
    transform var(--control) var(--ease),
    box-shadow var(--control) var(--ease),
    border-color var(--control) var(--ease),
    background-position 520ms var(--ease);
}
.table-wrap {
  border-color: #cad8e8;
  scrollbar-color: #11457e #eef3f9;
}
th {
  background: linear-gradient(110deg, #062b56, #11457e 70%, #1e5d9f);
  color: #fff;
}
td:first-child {
  background: #edf4fb;
  border-left-color: #d7141a;
}
tbody tr:nth-child(even) td {
  background: #f8fbff;
}
.faq-item summary:after {
  border-right-color: #d7141a;
  border-bottom-color: #11457e;
  transition:
    transform var(--control) var(--ease),
    border-color var(--control) var(--ease);
}
.site-footer {
  background: linear-gradient(135deg, #eaf1fa, #fff 52%, #fbe9ea);
  border-top-color: #ccd9e8;
}
.age {
  border-color: var(--red);
  color: var(--red);
}
.wheel-disc {
  background: var(--wheel-sectors);
  border-color: #fff;
  box-shadow: 0 0 0 4px #11457e;
}

.wheel-pointer {
  border-top-color: #d7141a;
}
.utility-cluster > a,
.utility-cluster > button {
  background: linear-gradient(145deg, #11457e, #062b56);
  box-shadow: 0 7px 22px #062b5640;
}
.page-transition {
  background:
    radial-gradient(ellipse at 22% 18%, #174e89 0, transparent 48%),
    radial-gradient(ellipse at 85% 95%, #b71117 0, transparent 46%), #041d3a;
}
.transition-track:after {
  background: linear-gradient(90deg, transparent, #fff, #d7141a);
}
.transition-orbit:after {
  background: #d7141a;
  box-shadow: 0 0 0 6px #d7141a28;
}
body .hero,
body .promo-banner {
  background: #041d3a;
  border-color: #214b79;
  box-shadow: 0 14px 44px #041d3a2c;
}
body .hero:after,
body .promo-banner:after {
  background: linear-gradient(
    90deg,
    #031a36f2,
    #062b56d9 50%,
    #062b5630 76%,
    transparent 90%
  );
}
body .promo-banner.copy-right:after {
  background: linear-gradient(
    270deg,
    #031a36f2,
    #062b56d9 50%,
    #062b5630 76%,
    transparent 90%
  );
}
body .promo-banner.final-app:after {
  background: linear-gradient(90deg, #031a36f2, #062b56d9 64%, #062b5628);
}
body .hero-copy,
body .promo-copy,
body .hero h1,
body .promo-title {
  color: #fff;
}
body .hero-lead,
body .promo-copy p:not(.promo-title) {
  color: #dcecff;
}
body .hero h1,
body .promo-title {
  text-shadow: 0 2px 18px #020f22;
}
body .hero-actions > .button:not(.store-button),
body .promo-copy > .button {
  background: #d7141a;
  color: #fff;
  border-color: #ef5960;
  box-shadow: 0 9px 25px #d7141a3d;
}
body .hero .store-button,
body .promo-banner .store-button {
  background: #fff;
  color: #062b56;
  border-color: #d5e2f1;
}
body .store-button > .store-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  gap: 3px;
}
body .store-button > .store-label > span,
body .store-button > .store-label > strong {
  display: block;
  white-space: nowrap;
  color: inherit;
}
body .hero .store-button:hover,
body .promo-banner .store-button:hover {
  background: #e8f1fc;
  color: #062b56;
}
body .hero .platform-mark > img,
body .promo-banner .platform-mark > img {
  filter: brightness(0);
  opacity: 0.85;
}
.transition-emblem > img {
  box-sizing: content-box;
  padding: 12px 18px;
  background: #f8fbff;
  border-radius: 12px;
}
body [data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff22, #ffffff00);
  background-color: #f4f7fc;
}
body [data-background-id] h2,
body [data-background-id] h3,
body .comparison[data-background-id] > p:first-of-type,
body .dock-offer[data-background-id] > strong,
body [data-wheel-result][data-background-id] > strong {
  color: #062b56;
}
.hero > picture > img,
.promo-banner > picture > img {
  transition:
    transform 760ms var(--ease),
    filter 760ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav > a:hover:after {
    transform: scaleX(1);
  }
  .desktop-nav > a:hover {
    color: #11457e;
  }
  .button:hover:before {
    transform: translateX(130%);
  }
  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 27px #d7141a35;
  }
  .button-blue:hover,
  .button-green:hover {
    box-shadow: 0 13px 27px #11457e35;
  }
  .side-link:hover {
    color: #062b56;
    background: linear-gradient(90deg, #e5effb, #fff 65%, #fdecee);
    transform: translateX(4px);
    border-left: 3px solid #d7141a;
  }
  .article-nav a:hover {
    color: #062b56;
    background: #e9f1fa;
    border-left-color: #11457e;
    padding-left: 18px;
  }
  .game-card:hover img {
    transform: translateY(-6px) rotate(-1.2deg) scale(1.025);
    box-shadow:
      9px 11px 0 #11457e,
      -6px -5px 0 #d7141a;
  }
  .side-game:hover img {
    transform: scale(1.035);
    box-shadow:
      0 0 0 3px #fff,
      0 0 0 6px #11457e,
      0 0 0 9px #d7141a;
  }
  .topic-info-card:hover,
  .bonus-info-card:hover {
    transform: translateY(-7px);
    border-color: #759bc3;
    box-shadow: 0 17px 38px #062b561c;
    background-position:
      center,
      calc(50% - 8px) center !important;
  }
  .comparison:hover {
    transform: translateY(-5px);
    box-shadow:
      inset 5px 0 #11457e,
      0 16px 34px #062b5617;
  }
  .comparison.cons:hover {
    box-shadow:
      inset 5px 0 #d7141a,
      0 16px 34px #062b5617;
  }
  .review-card:hover {
    transform: translateY(-6px) rotate(0.35deg);
    border-color: #d7141a;
    box-shadow:
      -7px 9px 0 #11457e24,
      0 18px 34px #062b5617;
  }
  .faq-item summary:hover {
    color: #11457e;
    padding-left: 8px;
  }
  .faq-item summary:hover:after {
    transform: rotate(45deg) scale(1.25);
    border-right-color: #11457e;
    border-bottom-color: #d7141a;
  }
  .hero:hover > picture > img,
  .promo-banner:hover > picture > img {
    transform: scale(1.025);
    filter: saturate(1.08) contrast(1.03);
  }
  .utility-cluster > a:hover,
  .utility-cluster > button:hover {
    transform: translateY(-4px) rotate(4deg);
    background: linear-gradient(145deg, #d7141a, #9d0f14);
  }
}

@media (max-width: 637px) {
  body .hero:after,
  body .promo-banner:after,
  body .promo-banner.copy-right:after,
  body .promo-banner.final-app:after {
    background: linear-gradient(
      0deg,
      #041d3a 0%,
      #041d3af8 48%,
      #041d3a9e 64%,
      transparent 82%
    );
  }
}

/* CZ r02: preserve the focal subject above readable mobile promo copy. */
@media (max-width: 637px) {
  body .promo-banner {
    height: auto;
    min-height: 470px;
    padding-top: 235px;
  }
  body .promo-banner > picture > img {
    height: 285px;
    object-fit: cover;
    object-position: var(--promo-art-x, 83%) center !important;
  }
  body .promo-banner:after,
  body .promo-banner.copy-right:after,
  body .promo-banner.final-app:after {
    background: linear-gradient(
      0deg,
      #041d3a 0%,
      #041d3a 35%,
      #041d3aee 48%,
      transparent 72%
    );
  }
  body .promo-banner .promo-title {
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.16;
  }
  body .store-pair {
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: 320px;
  }
  body .store-pair > .store-button {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    min-height: 64px;
  }
  body .store-button > .store-label {
    font-size: 12px;
    letter-spacing: 0;
  }
}

/* Responsive heroes: text and buttons determine height; artwork is background only. */
@media (max-width: 1100px) {
  body .hero {
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    padding: 28px 24px;
    align-items: flex-start;
  }
  body .hero-copy {
    width: 100%;
    min-width: 0;
  }
  body .hero > picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  body .hero > picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center !important;
  }
  body .hero:after {
    background: linear-gradient(110deg, #041d3af0, #041d3ac4 65%, #041d3aa8);
  }
}
@media (max-width: 637px) {
  body .hero {
    padding: 24px 20px;
  }
}

/* Larger desktop hero copy with the original compact spacing. */
@media (min-width: 1101px) {
  body .hero h1 {
    font-size: clamp(42px, 3.1vw, 52px);
    line-height: 1.1;
  }
  body .hero-lead {
    font-size: 18px;
    line-height: 1.55;
  }
}

/* One sector per canonical offer, with readable amounts inside each quarter. */
.wheel-label {
  height: 52px;
  color: #fff;
}
.wheel-label > span {
  left: 28%;
  width: 68%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-wrap: initial;
}
.wheel-rate {
  font-size: clamp(9px, 3.3cqw, 11px);
  line-height: 1.15;
  white-space: nowrap;
}
.wheel-amount {
  font-size: clamp(11px, 4.1cqw, 14px);
  line-height: 1.15;
  white-space: nowrap;
}
.wheel-spins {
  font-size: clamp(8px, 3cqw, 10px);
  line-height: 1.15;
  white-space: nowrap;
}
.wheel-kind {
  font-size: clamp(8px, 3cqw, 10px);
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 600;
  margin-top: 2px;
}

/* Periodic bonus discovery shares the existing offer wheel and Czech palette. */
.offer-wheel {
  padding: 0;
  width: 510px;
  border: 1px solid #c9d9ee;
  border-radius: 20px;
  background: #f8fbff;
  box-shadow: 0 28px 100px #031a3670;
  overscroll-behavior: contain;
}
.offer-wheel::backdrop {
  background: #031a36b8;
  backdrop-filter: blur(5px);
}
.offer-wheel > .panel-heading {
  padding: 17px 20px 15px 25px;
  background: linear-gradient(110deg, #062b56, #11457e);
  color: #fff;
  border-bottom: 3px solid #d7141a;
}
.offer-wheel > .panel-heading strong {
  font-size: 19px;
  line-height: 1.3;
}
.offer-wheel > .panel-heading button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff14;
  line-height: 1;
}
.offer-wheel > .panel-heading button:hover {
  background: #ffffff2e;
}
[data-wheel-view] {
  padding: 22px 26px 10px;
}
.wheel-intro {
  font-size: 13px;
  line-height: 1.65;
  color: #53667d;
  margin-bottom: 22px;
}
[data-wheel-view] > .button {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}
.bonus-surprise-art {
  position: relative;
  height: 155px;
  background:
    linear-gradient(90deg, #031a3633, transparent 65%),
    url('banners-cz-r02/promo-bonuses-1.webp') center 45%/cover;
  overflow: hidden;
}
.bonus-surprise-art:after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 50px;
  background: linear-gradient(transparent, #f8fbff);
}
.bonus-surprise-art > span {
  position: absolute;
  left: 25px;
  top: 20px;
  background: #062b56db;
  border: 1px solid #ffffff70;
  border-radius: 30px;
  padding: 6px 12px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.13em;
  font-weight: 700;
}
.bonus-surprise-copy {
  padding: 8px 28px 15px;
}
.bonus-surprise-tag {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid #c8d9ec;
  border-radius: 30px;
  background: #eaf1fa;
  color: #11457e;
  font-size: 11px;
  font-weight: 700;
}
.bonus-surprise-copy h2 {
  font-size: 30px;
  line-height: 1.17;
  font-weight: 800;
  color: #062b56;
  margin: 15px 0 12px;
  text-transform: none;
  text-wrap: balance;
}
.bonus-surprise-copy > p {
  font-size: 14px;
  line-height: 1.65;
  color: #53667d;
}
.bonus-surprise-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 21px 0 14px;
}
.bonus-surprise-actions .button {
  width: 100%;
  min-height: 48px;
  font-size: 14px;
}
.bonus-surprise-copy > .bonus-surprise-note {
  font-size: 11px;
  line-height: 1.6;
  color: #657890;
}
.offer-preferences {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #dbe5f1;
  margin: 0 25px;
  padding: 8px 0;
}
.offer-preferences button {
  min-height: 44px;
  font-size: 12px;
  color: #526b87;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.offer-preferences button:hover {
  color: #11457e;
}
@media (max-width: 480px) {
  .offer-wheel {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 16px;
  }
  .offer-wheel > .panel-heading {
    padding: 12px 14px 12px 20px;
  }
  .offer-wheel > .panel-heading strong {
    font-size: 17px;
  }
  .bonus-surprise-art {
    height: 125px;
  }
  .bonus-surprise-copy {
    padding: 6px 20px 12px;
  }
  .bonus-surprise-copy h2 {
    font-size: 26px;
    line-height: 1.2;
    hyphens: none;
  }
  [data-wheel-view] {
    padding: 20px 20px 10px;
  }
  .offer-preferences {
    margin: 0 20px;
    gap: 8px;
  }
  .offer-preferences button {
    font-size: 11px;
  }
}
@media (max-height: 650px) {
  .bonus-surprise-art {
    height: 90px;
  }
  .bonus-surprise-copy h2 {
    font-size: 24px;
  }
  .bonus-surprise-actions {
    margin-top: 14px;
  }
}

/* r09: readable adaptive columns and natural wrapping without syllable hyphenation. */
h1,
h2,
h3,
p,
li,
td,
th,
summary,
.button,
.promo-title,
.game-card span {
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  hyphens: none;
}
body .hero h1 {
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  hyphens: none;
}
@media (max-width: 900px) {
  .topic-card-grid,
  .bonus-card-grid,
  .pros-cons,
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .bonus-info-card:last-child,
  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

/* r12: table columns keep each complete cell to one or two readable lines. */
.table-wrap th,
.table-wrap td {
  min-width: 320px;
}
.table-cell-copy {
  display: inline-block;
  white-space: nowrap;
  max-width: none;
}
