@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto/roboto-400.ttf") format("truetype");
}

/* Bonus terms: editorial chapter rail */
.bonus-terms-section {
  position: relative;
  overflow: hidden;
  border-top-color: rgba(55, 168, 255, .72) !important;
  background:
    radial-gradient(circle at 94% 4%, rgba(19, 119, 214, .18), transparent 34%),
    linear-gradient(145deg, rgba(16, 27, 39, .98), rgba(12, 17, 23, .98)) !important;
  box-shadow: inset 0 1px 0 rgba(119, 200, 255, .06), 0 18px 46px rgba(0, 0, 0, .2);
}

.bonus-terms-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -105px;
  top: -115px;
  border: 1px solid rgba(59, 169, 255, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(28, 124, 210, .035), 0 0 0 70px rgba(28, 124, 210, .025);
  pointer-events: none;
}

.bonus-terms-section > h2,
.bonus-terms-section > .article-source-block {
  position: relative;
  z-index: 1;
}

.bonus-terms-section > h2 {
  max-width: 760px;
}

.bonus-terms-section > .article-source-block {
  max-width: 780px;
  margin-bottom: 8px;
  color: rgba(226, 238, 248, .78);
}

.bonus-term-chapter {
  --chapter-line: rgba(77, 172, 255, .28);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 20px;
  padding: 25px 4px 27px;
  border-top: 1px solid var(--chapter-line);
}

.bonus-term-chapter::before {
  content: attr(data-chapter);
  grid-column: 1;
  grid-row: 1 / span 20;
  display: grid;
  place-items: center;
  align-self: start;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(92, 188, 255, .58);
  border-radius: 50%;
  color: #a9dcff;
  background: linear-gradient(145deg, rgba(28, 109, 179, .34), rgba(10, 28, 43, .82));
  box-shadow: 0 0 0 5px rgba(26, 124, 213, .06), 0 10px 24px rgba(0, 72, 135, .2);
  font: 800 12px/1 Arial, sans-serif;
  letter-spacing: .08em;
}

.bonus-term-chapter:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 70px;
  bottom: -1px;
  width: 1px;
  background: linear-gradient(var(--chapter-line), rgba(77, 172, 255, .05));
}

.bonus-term-chapter > * {
  grid-column: 2;
  min-width: 0;
}

.bonus-term-chapter > h3 {
  position: relative;
  margin: 3px 0 16px !important;
  padding: 0 0 12px !important;
  border: 0 !important;
  color: #f7fbff;
  background: none !important;
  font-size: clamp(18px, 1.7vw, 23px) !important;
  letter-spacing: -.015em;
}

.bonus-term-chapter > h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(128px, 36%);
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #36a9ff, rgba(54, 169, 255, 0));
}

.bonus-term-chapter > .article-source-block {
  max-width: 880px;
  margin: 0 0 12px;
  color: rgba(232, 240, 247, .88);
}

.bonus-term-chapter > .article-source-block:last-child {
  margin-bottom: 0;
}

.bonus-term-chapter > .article-source-block p {
  line-height: 1.72;
}

.bonus-term-chapter:last-child {
  margin: 6px 0 0;
  padding-right: 18px;
  border: 1px solid rgba(67, 161, 235, .25);
  border-radius: 12px;
  background: linear-gradient(105deg, rgba(18, 72, 113, .2), rgba(14, 24, 32, .4));
}

.bonus-term-chapter:last-child::before {
  margin-left: 10px;
}

.bonus-term-chapter:last-child > ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bonus-term-chapter:last-child > ul > li {
  position: relative;
  min-height: 48px;
  margin: 0;
  padding: 13px 15px 13px 48px;
  border-color: rgba(89, 151, 201, .28);
  background: rgba(6, 14, 21, .55);
}

@media (max-width: 640px) {
  .bonus-term-chapter {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
    padding: 22px 0 24px;
  }

  .bonus-term-chapter::before {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .bonus-term-chapter:not(:last-child)::after {
    left: 17px;
    top: 61px;
  }

  .bonus-term-chapter > h3 {
    margin-top: 1px !important;
    font-size: 18px !important;
  }

  .bonus-term-chapter:last-child {
    margin-inline: -4px;
    padding: 20px 10px 20px 8px;
  }

  .bonus-term-chapter:last-child::before {
    margin-left: 0;
  }

  .bonus-term-chapter:last-child > ul > li {
    padding-left: 43px;
  }
}

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

/* Responsive site-hero centering contract — max 900px */
@media (max-width: 900px) {
  body .site-hero {
    justify-content: center;
    text-align: center;
  }

  body .hero-copy {
    box-sizing: border-box;
    width: min(600px, 100%);
    margin-inline: auto;
    text-align: center;
  }

  body .site-hero .hero-breadcrumbs {
    justify-content: center;
  }

  body .site-hero .hero-rating {
    justify-content: center;
    text-align: center;
  }

  body .site-hero p {
    margin-inline: auto;
  }

  body .site-hero .hero-actions {
    display: flex;
    justify-content: center;
  }
}

/* Mobile site-hero containment contract — max 620px */
@media (max-width: 620px) {
  body .site-hero {
    padding: 24px 10px;
  }

  body .hero-copy {
    box-sizing: border-box;
    width: 100%;
  }

  body .site-hero .hero-actions {
    width: 100%;
  }

  body .site-hero .hero-actions a {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
  }
}

@keyframes blau-curtain-reveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blau-betting-row-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blau-odd-pulse {
  0% { box-shadow: 0 0 0 0 currentcolor; transform: translateY(0); }
  45% { box-shadow: 0 0 0 3px transparent; transform: translateY(-1px); }
  100% { box-shadow: none; transform: translateY(0); }
}

[data-betting-tab]{
  cursor: pointer;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto/roboto-500.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/roboto/roboto-600.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto/roboto-700.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/roboto/roboto-800.ttf") format("truetype");
}

/* Design tokens */
:root {
  --page-bg: #06151f;
  --header-bg: #081d2b;
  --panel-bg: #0c2631;
  --panel-soft: #123440;
  --heading-bg: #174451;
  --control-bg: #071b26;
  --light-bg: #f5f1e7;
  --white: #fff;
  --text: #f6f7f5;
  --muted: #b8c7c5;
  --dark-text: #07151a;
  --accent: #e9aa3a;
  --accent-hover: #f4bd57;
  --accent-soft: #ecd59f;
  --accent-bright: #ffc85d;
  --accent-highlight: #ffdc8c;
  --accent-pale: #fff1cc;
  --signal-blue: #2788a7;
  --signal-blue-hover: #54afc8;
  --signal-blue-soft: #cbeaf0;
  --brand-green: #238579;
  --brand-green-hover: #31a094;
  --brand-green-active: #155e57;
  --line: #28605f;
  --radius: 10px;
  --shadow: 0 12px 28px rgb(0 8 12 / 28%);
  --header-height: 70px;
  --page-gutter: 20px;
  --left-column: 250px;
  --right-column: 250px;
  --content-flow-gap: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  background: var(--page-bg);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  color: var(--text);
  background: #000;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

body,
button,
input,
select {
  font-family: "Roboto", Arial, sans-serif;
}

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

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgb(43 134 236 / 62%);
  outline-offset: 3px;
}

.skip {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 50;
  padding: 10px 14px;
  color: var(--white);
  background: var(--accent);
  border-radius: 6px;
}

.skip:focus {
  top: 10px;
}

/* Header */
.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  height: var(--header-height);
  background: var(--header-bg);
  box-shadow: 0 0 10px rgb(18 19 23 / 50%);
}

.site-nav {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  gap: 26px;
}

.site-brand {
  flex: 0 0 224px;
  align-self: stretch;
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-logo {
  width: 224px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  gap: 7px;
  color: #f4f4f4;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 18px;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--signal-blue-hover);
  background: rgb(69 167 223 / 9%);
  border-color: rgb(69 167 223 / 20%);
  transform: translateY(-1px);
}

.nav-links .state-active {
  color: var(--signal-blue-hover);
  background: transparent;
  border-color: transparent;
}

.nav-links .state-active::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -9px;
  left: 10px;
  height: 2px;
  background: var(--signal-blue);
  border-radius: 2px 2px 0 0;
}

.nav-link-icon {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  color: #e1e4e6;
  background:
    radial-gradient(circle at 28% 18%, rgb(255 255 255 / 15%), transparent 36%),
    linear-gradient(145deg, #343238, #1d1c21 72%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 9px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 10%),
    inset 0 -1px 0 rgb(0 0 0 / 35%),
    0 5px 12px rgb(0 0 0 / 25%);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.72, 0.24, 1.24);
}

.nav-link-icon::before {
  position: absolute;
  z-index: -1;
  top: -9px;
  left: -5px;
  width: 22px;
  height: 18px;
  content: "";
  background: radial-gradient(circle, rgb(255 255 255 / 18%), transparent 70%);
  transform: rotate(-20deg);
}

.nav-link-icon::after {
  position: absolute;
  right: 4px;
  bottom: 3px;
  width: 6px;
  height: 2px;
  content: "";
  background: #49c45b;
  border-radius: 999px;
  box-shadow: 0 0 7px rgb(73 196 91 / 80%);
  opacity: 0.72;
}

.nav-link-icon svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  overflow: visible;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-icon-surface {
  fill: rgb(255 255 255 / 5%);
  stroke: currentcolor;
  stroke-width: 1.35;
}

.nav-icon-detail {
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.25;
}

.nav-icon-accent {
  fill: #49c45b;
  stroke: #b8d6bf;
  stroke-width: 0.65;
  filter: drop-shadow(0 0 2px rgb(73 196 91 / 62%));
  transition:
    fill 220ms ease,
    stroke 220ms ease,
    filter 220ms ease;
}

.nav-links a:hover .nav-link-icon,
.nav-links .state-active .nav-link-icon {
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgb(255 255 255 / 18%), transparent 36%),
    linear-gradient(145deg, #102a3a, #0b0e0c 72%);
  border-color: rgb(69 167 223 / 62%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 13%),
    inset 0 -1px 0 rgb(0 0 0 / 34%),
    0 7px 18px rgb(31 102 143 / 34%),
    0 0 0 3px rgb(69 167 223 / 11%);
  transform: translateY(-1px) rotate(-2deg) scale(1.06);
}

.nav-links a:hover .nav-icon-accent,
.nav-links .state-active .nav-icon-accent {
  fill: var(--signal-blue);
  stroke: var(--signal-blue-soft);
  filter: drop-shadow(0 0 4px rgb(69 167 223 / 86%));
}

.nav-links .state-active .nav-link-icon {
  animation: blau-nav-icon-pulse 2.8s ease-in-out infinite;
}

@keyframes blau-nav-icon-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 13%),
      0 7px 18px rgb(31 102 143 / 30%),
      0 0 0 2px rgb(69 167 223 / 9%);
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 16%),
      0 8px 20px rgb(31 102 143 / 42%),
      0 0 0 4px rgb(69 167 223 / 14%);
  }
}

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

  body .hero-copy {
    min-width: 0;
  }

  body .site-hero h1 {
    max-width: 100%;
    font-size: clamp(26px, 7.5vw, 30px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-link-icon,
  .nav-links .state-active .nav-link-icon {
    animation: none;
    transition-duration: 0.01ms;
  }
}

/* Deep navy surface contract: green is reserved for actionable controls. */
.topbar,
.site-main,
.site-footer{
  background-color: var(--page-bg);
}

.site-sidebar,
.article-sidebar,
.right-sidebar,
.bet-slip,
.registration-card,
.article-section,
.article-content-flow,
.review-card,
.faq-item,
.platform-banner,
.site-cookie,
.dropdown-menu {
  border-color: var(--line);
}

.site-promo-coupon {
  color: #f6f7f5;
  background:
    radial-gradient(circle at 90% -10%, rgb(73 196 91 / 20%), transparent 38%),
    linear-gradient(155deg, #0d1710, #050806 72%);
  border-color: rgb(73 196 91 / 48%);
}

.coupon-header {
  background:
    linear-gradient(110deg, rgb(73 196 91 / 18%), transparent 62%),
    #111d15;
  border-bottom-color: rgb(123 213 138 / 42%);
}

.coupon-header small,
.coupon-divider {
  color: #7bd58a;
}

.coupon-ticket-icon {
  background: linear-gradient(145deg, #49c45b, #238a43);
  border-color: rgb(184 214 191 / 56%);
  box-shadow:
    inset 0 1px rgb(255 255 255 / 24%),
    0 5px 12px rgb(2 42 88 / 36%);
}

.coupon-intro,
.coupon-auto-status {
  color: #bac5bc;
}

.scratch-card {
  background: #edf5ef;
  border-color: rgb(73 196 91 / 48%);
}

.scratch-reveal {
  color: #0b0e0c;
  background:
    radial-gradient(circle at 20% 20%, rgb(73 196 91 / 25%), transparent 48%),
    linear-gradient(135deg, #f5f7f5, #dceadf);
}

.scratch-reveal small {
  color: #2e613b;
}

.scratch-card.state-revealed {
  border-color: rgb(73 196 91 / 78%);
  box-shadow:
    inset 0 0 0 2px rgb(255 255 255 / 76%),
    0 0 0 3px rgb(73 196 91 / 13%),
    0 9px 24px rgb(35 138 67 / 30%);
}

.coupon-auto-status span {
  background: #49c45b;
  box-shadow: 0 0 0 0 rgb(73 196 91 / 52%);
}

.coupon-divider::before,
.coupon-divider::after {
  background: linear-gradient(90deg, transparent, rgb(123 213 138 / 48%));
}

.coupon-note {
  color: #919d93;
}

.header-tools,
.site-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--accent);
  background: var(--control-bg);
  border-radius: 4px;
  font-weight: 800;
}

.tool-button span {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 15px;
  height: 15px;
  padding: 0 3px;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-size: 10px;
}

.btn,
.article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--control-bg);
  border: 0;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover,
.article-btn:hover {
  transform: translateY(-1px);
}

.btn:active,
.article-btn:active {
  transform: translateY(1px);
}

.site-hot {
  background: var(--accent);
}

.site-hot:hover {
  background: var(--accent-hover);
}

.ghost {
  background: var(--control-bg);
}

.header-time {
  padding-left: 12px;
  color: #e7e8ea;
  border-left: 1px solid #2b2e34;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.language-switch {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 4px 11px 4px 5px;
  gap: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 54, 78, 0.1), transparent 60%),
    var(--control-bg);
  border: 1px solid #343941;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  border-color: rgba(201, 54, 78, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(201, 54, 78, 0.12);
}

.language-switch::after {
  display: none;
}

.language-flag-uz {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 28%, #fff 0 1.2px, transparent 1.5px),
    radial-gradient(circle at 67% 64%, #fff 0 1.2px, transparent 1.5px),
    radial-gradient(circle at 84% 74%, #fff 0 1px, transparent 1.4px),
    linear-gradient(32deg, transparent 0 19%, #fff 20% 26%, transparent 27% 100%),
    linear-gradient(-32deg, transparent 0 19%, #fff 20% 26%, transparent 27% 100%),
    #082b66;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgb(233 170 58 / 18%),
    0 2px 8px rgba(0, 0, 0, 0.28);
}

.language-flag-uz::after {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #e52635;
  font-size: 8px;
  line-height: 1;
  text-shadow: 0 0 1px #fff;
  transform: translate(-50%, -50%);
}

.mobile-burger,
.mobile-menu {
  display: none;
}

.slot-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 20px), transparent);
}

@keyframes slots-carousel-scroll {
  to {
    transform: translateX(calc(-50% - 4px));
  }
}

/* Main layout */
.page-shell {
  display: grid;
  grid-template-columns: var(--left-column) minmax(0, 860px) var(--right-column);
  align-items: start;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px var(--page-gutter) 42px;
}

.page-shell.state-left-collapsed {
  grid-template-columns: 42px minmax(0, 1fr) var(--right-column);
}

.page-shell.state-right-collapsed {
  grid-template-columns: var(--left-column) minmax(0, 1fr) 42px;
}

.page-shell.state-left-collapsed.state-right-collapsed {
  grid-template-columns: 42px minmax(0, 1fr) 42px;
}

/* The site-sidebar script exposes these live state classes on the page shell. */
.page-shell.flag-left-sidebar-collapsed {
  grid-template-columns: 42px minmax(0, 1fr) var(--right-column);
}

.page-shell.flag-right-sidebar-collapsed {
  grid-template-columns: var(--left-column) minmax(0, 1fr) 42px;
}

.page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed {
  grid-template-columns: 42px minmax(0, 1fr) 42px;
}

.site-article {
  min-width: 0;
}

/* Left site-sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 12px;
  max-height: calc(100dvh - var(--header-height) - 30px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #575c65 transparent;
}

.article-nav-nav {
  overflow: hidden;
  background: linear-gradient(180deg, #282127 0%, var(--panel-bg) 100%);
  border: 1px solid rgb(210 49 78 / 22%);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgb(0 0 0 / 16%);
}

/* Sports site-sidebar */
.sports-sidebar {
  display: grid;
  gap: 8px;
}

.sports-sidebar button {
  font: inherit;
}

.sport-side-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  padding: 6px 10px;
  gap: 5px;
  color: var(--white);
  background: linear-gradient(135deg, #2b2025 0%, var(--header-bg) 100%);
  border: 1px solid rgb(210 49 78 / 22%);
  border-radius: 9px;
  font-size: 13px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 14%);
  cursor: pointer;
}

.sport-side-toggle:hover {
  background: linear-gradient(135deg, #3a252d 0%, #1d2026 100%);
  border-color: rgb(210 49 78 / 48%);
}

.sports-sidebar-body {
  display: grid;
  gap: 8px;
}

.article-sidebar.state-collapsed {
  max-height: none;
  overflow: visible;
}

.article-sidebar.state-collapsed .sports-sidebar-body,
.article-sidebar.state-collapsed .article-nav-nav,
.right-sidebar.state-collapsed .right-sidebar-body {
  display: none;
}

.article-sidebar.state-collapsed .sports-sidebar {
  width: 42px;
}

.article-sidebar.state-collapsed .sport-side-toggle,
.right-sidebar.state-collapsed .sport-side-toggle {
  width: 42px;
  min-height: 42px;
  padding: 0;
}

.article-sidebar.state-collapsed .side-toggle-label,
.right-sidebar.state-collapsed .side-toggle-label {
  display: none;
}

.sidebar-collapse-icon {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
}

.right-sidebar .side-toggle-label {
  order: 1;
}

.right-sidebar .sidebar-collapse-icon {
  order: 2;
}

.sports-quick-links {
  display: grid;
  gap: 2px;
}

.sports-quick-row {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 32px;
  padding: 0 0 0 8px;
  gap: 8px;
  color: var(--white);
  background: var(--panel-bg);
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
}

.sports-quick-row:hover,
.sports-quick-row.state-open {
  background: #2c3038;
  border-color: rgb(210 49 78 / 34%);
}

.sports-quick-icon {
  display: grid;
  place-items: center;
  flex: 0 0 18px;
  color: var(--white);
  font-size: 17px;
  line-height: 1;
}

.bet-aside-icon {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  color: currentColor;
  fill: currentColor;
}

.sports-quick-icon .bet-aside-icon {
  width: 19px;
  height: 19px;
}

.top-game-header .bet-aside-icon {
  width: 18px;
  height: 18px;
}

.match-league .bet-aside-icon {
  width: 18px;
  height: 18px;
}

.match-favorite .bet-aside-icon {
  width: 21px;
  height: 21px;
}

.sports-tabs .bet-aside-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 4px;
  vertical-align: -1px;
}

.sports-summary-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sports-summary-stat .bet-aside-icon {
  width: 17px;
  height: 17px;
  color: #4d5358;
}

.sports-summary > span:last-child .bet-aside-icon {
  width: 20px;
  height: 20px;
  color: #050505;
}

.sport-row-icon .bet-aside-icon {
  width: 19px;
  height: 19px;
}

.sports-row-arrow {
  position: relative;
  align-self: stretch;
  flex: 0 0 32px;
  margin-left: auto;
  background: #191c22;
  border-left: 1px solid #343840;
}

.sports-row-arrow::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 11px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.sports-quick-row.state-open .sports-row-arrow::after {
  top: 13px;
  transform: rotate(225deg);
}

.top-game-card,
.sports-catalog {
  overflow: hidden;
  border-radius: 9px;
}

.top-game-header {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding-left: 8px;
  gap: 8px;
  color: var(--white);
  background: var(--panel-bg);
  font-size: 14px;
}

.top-game-header strong {
  font-weight: 500;
  white-space: nowrap;
}

.top-game-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-right: 7px;
  gap: 5px;
  color: #e3e5e8;
  font-size: 13px;
}

.top-game-nav button {
  display: grid;
  place-items: center;
  width: 17px;
  height: 24px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  font-size: 25px;
  line-height: 20px;
  cursor: pointer;
}

.top-game-body {
  position: relative;
  padding: 8px 8px 2px;
  color: #142a1b;
  background: var(--white);
}

.top-game-link {
  position: absolute;
  z-index: 5;
  inset: 0;
  border-radius: 0 0 9px 9px;
}

.top-game-link::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 2px solid transparent;
  border-radius: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.top-game-link:hover::after,
.top-game-link:focus-visible::after {
  border-color: var(--accent);
  background: rgba(201, 54, 78, 0.035);
  box-shadow:
    inset 0 0 16px rgba(201, 54, 78, 0.14),
    0 0 0 2px rgba(201, 54, 78, 0.22);
}

.match-league {
  display: grid;
  grid-template-columns: 18px 1fr 18px;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.match-league > span:first-child {
  color: #1b4c2b;
  font-size: 17px;
}

.match-favorite {
  color: var(--accent);
  font-size: 21px;
  line-height: 1;
}

.match-status {
  display: flex;
  align-items: center;
  margin: 1px 0 4px;
  gap: 4px;
  color: #35a953;
  font-size: 11px;
}

.match-status::before {
  content: "● LIVE";
  color: #3ca957;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.match-team {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  min-height: 21px;
  gap: 6px;
  color: #111;
  font-size: 12px;
}

.team-mark {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--white);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.team-mark-blue {
  background: #51725a;
}

.team-mark-green {
  background: #466d50;
}

.match-details {
  display: flex;
  align-items: center;
  padding: 2px 0 7px;
  gap: 7px;
  color: #193e27;
  background: transparent;
  border: 0;
  font-size: 12px;
  cursor: pointer;
}

.match-details-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.match-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.match-odds a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 25px;
  padding: 3px 5px;
  color: #111;
  background: #eaf2eb;
  border: 0;
  border-radius: 12px;
  font-size: 11px;
  cursor: pointer;
}

.match-odds a:hover {
  background: #d8e7db;
}

.match-odds strong {
  font-size: 12px;
  font-weight: 500;
}

.sports-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 32px;
  background: var(--header-bg);
}

.sports-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8cbd0;
  background: transparent;
  border: 0;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.sports-tabs a > span[aria-hidden="true"] {
  display: none;
}

.sports-tabs a.state-active {
  color: var(--white);
  background: var(--panel-bg);
}

.sports-tabs a.state-active span {
  color: var(--signal-blue);
}

.sports-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 32px;
  padding: 0 8px;
  gap: 6px;
  color: #111;
  background: var(--light-bg);
  font-size: 12px;
}

.sports-summary > span:last-child {
  font-size: 16px;
}

.sports-summary-tv {
  display: none;
}

.sports-list-heading {
  min-height: 32px;
  padding: 7px 8px;
  color: #111;
  background: #fbfdfb;
  border-top: 1px solid #eef1ed;
  font-size: 14px;
}

.sports-list {
  display: grid;
}

.sport-row {
  display: grid;
  grid-template-columns: 24px 1fr 32px;
  align-items: center;
  width: 100%;
  min-height: 32px;
  padding: 0 0 0 8px;
  color: #0a0a0a;
  background: var(--white);
  border: 0;
  border-top: 1px solid #e5e9e4;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.sport-row:hover {
  background: #ebf3ec;
}

.sport-row-icon {
  font-size: 17px;
  line-height: 1;
}

.sport-row-chevron {
  position: relative;
  align-self: stretch;
  border-left: 1px solid #d8dcdf;
}

.sport-row-chevron::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 11px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #0b0b0b;
  border-bottom: 2px solid #0b0b0b;
  transform: rotate(45deg);
}

.article-nav-nav-toggle {
  position: relative;
  width: 100%;
  padding: 9px 12px;
  color: var(--white);
  background: var(--control-bg);
  border: 0;
  border-bottom: 1px solid #4c5058;
  text-align: left;
}

.article-nav-nav-toggle span {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(45deg);
}

.article-nav-links {
  display: none;
  max-height: 310px;
  padding: 8px;
  overflow: auto;
  color: var(--dark-text);
  background: var(--white);
}

.article-nav-nav.state-open .article-nav-links {
  display: grid;
}

.article-nav-links a {
  padding: 5px 0;
  font-size: 13px;
  line-height: 1.35;
}

.article-nav-links a:hover {
  color: var(--accent);
}

/* Right site-sidebar */
.right-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 8px;
}

.right-sidebar-body {
  display: grid;
  gap: 14px;
}

.registration-card,
.bet-slip {
  overflow: hidden;
  border: 1px solid rgb(210 49 78 / 22%);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
}

.registration-card {
  padding: 12px 8px 0;
  color: var(--dark-text);
  background: var(--light-bg);
}

.registration-card h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
}

.registration-card label,
.signup-field {
  display: block;
  margin-bottom: 7px;
}

.registration-card input,
.registration-card select,
.signup-field,
.phone-method {
  width: 100%;
  height: 33px;
  padding: 7px 10px;
  color: #111;
  background: var(--white);
  border: 0;
  border-radius: 7px;
  font-size: 13px;
}

.signup-field {
  text-decoration: none;
}

.signup-placeholder {
  color: #777;
}

.phone-method {
  margin-bottom: 7px;
  color: var(--white);
  background: var(--panel-bg);
  text-align: center;
}

.phone-method.has-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-method.has-phone-icon::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'%3E%3Crect x='2' y='1' width='10' height='18' rx='2' fill='none' stroke='%23fff' stroke-width='1.7'/%3E%3Cpath d='M5.3 3h3.4M6.2 16.8h1.6' stroke='%23fff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.registration-card .signup-button,
.bet-slip .signup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 38px;
  margin: 1px 0 10px;
  color: var(--white);
  background: var(--accent);
  border: 0;
  border-radius: var(--radius);
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.registration-card small {
  display: block;
  padding: 2px 4px 11px;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
}

.signup-promo {
  display: block;
  width: auto;
  margin: 0 -8px;
  padding: 7px 8px;
  color: var(--white);
  background: var(--panel-bg);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

.bet-slip-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--panel-bg);
}

.bet-slip-tabs a {
  display: flex;
  align-items: center;
  min-height: 47px;
  padding: 8px 10px;
  color: #c5c8cd;
  background: transparent;
  border: 0;
  font-size: 14px;
  line-height: 1.1;
  text-align: left;
}

.bet-slip-tabs a:first-child {
  color: var(--white);
  background: #292d35;
}

.bet-slip-body {
  padding: 10px 8px 0;
  color: var(--dark-text);
  background: var(--light-bg);
}

.bet-slip-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.bet-slip-empty {
  display: grid;
  place-items: center;
  min-height: 140px;
  margin-bottom: 10px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.bet-slip-save {
  display: block;
  margin: 0 -8px;
  padding: 10px 8px;
  border-top: 1px dashed #202328;
  border-bottom: 1px dashed #202328;
  font-size: 11px;
  text-align: center;
  text-decoration: none;
}

.app-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--header-bg);
  border-radius: var(--radius);
}

.app-platforms a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  gap: 10px;
  color: #d3d5d8;
  font-size: 14px;
  text-align: center;
}

.app-platforms img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.app-platforms a:first-child {
  color: var(--white);
  background: var(--control-bg);
}

/* Hero */
.site-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 426px;
  margin-bottom: 20px;
  padding: 50px 60px;
  overflow: hidden;
  background: #090b0e;
  border-radius: var(--radius);
}

.site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(10 12 15 / 78%) 0%, rgb(10 12 15 / 61%) 58%, rgb(10 12 15 / 14%) 100%);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.hero-scene-image {
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(600px, 74%);
}

.hero-rating,
.hero-breadcrumbs {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-breadcrumbs {
  display: flex;
  gap: 5px;
}

.site-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(27px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.32;
  text-transform: uppercase;
  text-wrap: balance;
}

.site-hero p {
  max-width: 62ch;
  margin: 12px 0 0;
  color: #f0f1f2;
  font-size: 15px;
  line-height: 1.45;
}

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

.hero-actions .article-btn {
  min-width: 220px;
  min-height: 46px;
  text-transform: uppercase;
}

/* Section calls to action */
.section-cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
}

.section-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 220px;
  min-height: 46px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-cta-row .section-cta-link {
  min-height: 46px;
}

/* Even article and banner rhythm */
.article-content-flow {
  display: grid;
  min-width: 0;
  gap: var(--content-flow-gap);
}

.article-content-flow > * {
  min-width: 0;
  margin: 0;
}

.editorial-media {
  position: relative;
  isolation: isolate;
  height: clamp(230px, 28vw, 340px);
  margin: 16px 0 18px;
  overflow: hidden;
  background: #070b10;
  border: 1px solid rgb(69 167 223 / 42%);
  border-radius: var(--radius);
  box-shadow:
    0 14px 32px rgb(0 0 0 / 32%),
    0 0 0 1px rgb(35 138 67 / 12%) inset;
}

.editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 62%, rgb(0 0 0 / 32%)),
    linear-gradient(90deg, rgb(69 167 223 / 8%), transparent 38%, rgb(35 138 67 / 6%));
  box-shadow: inset 0 0 44px rgb(0 0 0 / 20%);
}

.editorial-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

/* Promotional bonus banners */
.promo-banner-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  height: clamp(350px, 28vw, 420px);
  min-height: 350px;
  max-height: 350px;
  padding: 26px 34px;
  overflow: hidden;
  color: var(--white);
  background: #090b0e;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgb(0 0 0 / 24%);
}

.promo-banner-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(4 6 8 / 68%) 0%,
      rgb(4 6 8 / 52%) 30%,
      rgb(4 6 8 / 20%) 52%,
      rgb(4 6 8 / 4%) 72%,
      transparent 100%
    );
}

.promo-banner-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
  filter: brightness(1.1) saturate(1.06);
}

.promo-banner-card.promo-img-right
  .promo-banner-image {
  transform: translateX(3%) scale(1.06);
  transform-origin: center;
}

.promo-banner-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: min(49%, 470px);
}

.promo-banner-card.promo-copy-opposite::after {
  background:
    linear-gradient(
      270deg,
      rgb(4 6 8 / 68%) 0%,
      rgb(4 6 8 / 52%) 30%,
      rgb(4 6 8 / 20%) 52%,
      rgb(4 6 8 / 4%) 72%,
      transparent 100%
    );
}

.promo-banner-card.promo-copy-opposite .promo-banner-copy {
  margin-left: auto;
}

.promo-banner-kicker {
  max-width: 34ch;
  margin: 0 0 10px;
  color: var(--accent-hover);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.22;
  text-wrap: balance;
  text-transform: uppercase;
}

.promo-banner-title {
  max-width: 21ch;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.promo-description {
  max-width: 38ch;
  margin: 0 0 16px;
  color: #e6e8eb;
  font-size: 14px;
  line-height: 1.35;
}

.promo-banner-cta,
.section-bonus-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.promo-banner-cta:hover,
.section-bonus-cta:hover {
  color: var(--white);
  background: var(--accent-hover);
}

.promo-banner-cta:active,
.section-bonus-cta:active {
  transform: translateY(1px);
}

/* App platform banners */
.platform-banner-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 350px;
  max-height: 350px;
  padding: 26px 30px;
  gap: 20px;
  overflow: hidden;
  background: #07090b;
  border: 1px solid rgb(73 196 91 / 46%);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgb(0 0 0 / 24%);
}

.platform-banner-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(4 6 8 / 84%) 0%,
      rgb(4 6 8 / 56%) 25%,
      rgb(4 6 8 / 8%) 42%,
      rgb(4 6 8 / 8%) 58%,
      rgb(4 6 8 / 56%) 75%,
      rgb(4 6 8 / 84%) 100%
    ),
    radial-gradient(circle at center, transparent 18%, rgb(4 6 8 / 34%) 72%);
}

.platform-banner-image {
  position: absolute;
  z-index: -2;
  inset: 12px 0;
  width: 100%;
  height: calc(100% - 24px);
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
}

.app-banner-center {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: center;
  width: clamp(156px, 17vw, 224px);
  height: 58px;
  pointer-events: none;
}

.app-banner-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 230px);
  min-height: 58px;
  padding: 10px 14px;
  gap: 11px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 5px 16px rgb(0 0 0 / 30%);
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.app-banner-btn:hover {
  color: var(--white);
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.app-banner-btn:active {
  transform: translateY(1px);
}

.app-banner-btn img {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.app-banner-btn span {
  display: grid;
  justify-items: center;
  gap: 2px;
  line-height: 1.05;
  text-align: center;
}

.app-banner-btn small,
.app-banner-btn strong {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
}

.app-banner-btn strong {
  font-size: 13px;
}

.app-banner-android {
  grid-column: 1;
  justify-self: start;
}

.app-banner-ios {
  grid-column: 3;
  justify-self: end;
}

/* Content sections */
.article-section,
.content-section,
.reviews-section,
.home-app-banner,
.bonus-banner-section,
.bonus-final-cta {
  margin-bottom: 20px;
  padding: 20px;
  background: var(--panel-bg);
  border-radius: var(--radius);
}

.article-section h2,
.content-section h2,
.reviews-section > h2 {
  position: relative;
  margin: 0 0 20px;
  padding: 8px 14px 8px 32px;
  color: var(--white);
  background: var(--heading-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.article-section h2::before,
.content-section h2::before,
.reviews-section > h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 9px solid var(--signal-blue);
  transform: translateY(-50%);
}

.article-section h3,
.content-section h3 {
  margin: 24px 0 12px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.article-section p,
.content-section p,
.article-section li,
.content-section li {
  color: #f1f2f3;
  font-size: 15px;
  line-height: 1.5;
}

.article-section p,
.content-section p {
  margin: 0 0 16px;
}

.article-section ul,
.content-section ul,
.article-section ol,
.content-section ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.article-source-block > ul[data-source-list],
.article-source-block > ol[data-source-list] {
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.article-source-block > ul[data-source-list] > li,
.article-source-block > ol[data-source-list] > li {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
}

.article-source-block > ul[data-source-list] > li + li,
.article-source-block > ol[data-source-list] > li + li {
  margin-top: 11px;
}

.article-source-block > ul[data-source-list] > li::before {
  content: "";
  position: absolute;
  top: calc(9px + 0.5em);
  left: 8px;
  width: 9px;
  height: 9px;
  background: var(--accent-hover);
  border: 1px solid #b8d6bf;
  border-radius: 2px;
  box-shadow:
    0 0 0 3px rgb(73 196 91 / 13%),
    0 0 9px rgb(73 196 91 / 40%);
  transform: rotate(45deg);
}

.article-source-block > ol[data-source-list] {
  counter-reset: article-step;
}

.article-source-block > ol[data-source-list] > li {
  counter-increment: article-step;
  padding-left: 40px;
}

.article-source-block > ol[data-source-list] > li::before {
  content: counter(article-step);
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  background: linear-gradient(145deg, var(--accent-hover), #347f18);
  border: 1px solid rgb(147 201 124 / 70%);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 24%),
    0 4px 10px rgb(0 0 0 / 28%);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.article-section li + li,
.content-section li + li {
  margin-top: 8px;
}

.article-source-block:empty {
  display: none;
}

.article-source-block table p,
.article-source-block th p,
.article-source-block td p,
.review-card p {
  margin: 0;
}

.article-source-block em,
.review-card em {
  color: #f7f8f9;
}

.review-card em {
  display: block;
  margin-bottom: 12px;
}

.article-scene-media {
  width: 100%;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid rgb(73 196 91 / 58%);
  border-radius: var(--radius);
  background: #0b0e11;
}

.article-scene-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.responsible-media {
  position: relative;
}

.safe-play-logo {
  position: absolute;
  top: clamp(10px, 2vw, 18px);
  left: clamp(10px, 2vw, 18px);
  width: clamp(96px, 18%, 180px);
  height: auto;
  padding: 8px 10px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 8px;
  background: rgb(11 14 17 / 78%);
  box-shadow: 0 8px 22px rgb(0 0 0 / 28%);
  backdrop-filter: blur(6px);
}

.section-visual,
.payment-visual,
.vip-program-visual {
  width: 100%;
  max-height: 420px;
  margin: 0 0 20px;
  object-fit: cover;
  border: 1px solid rgb(73 196 91 / 58%);
  border-radius: var(--radius);
}

/* Tables */
.site-table-wrap,
.table-scroll {
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.table-scroll {
  margin-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--white);
  background: #2e323a;
  font-size: 14px;
}

th,
td {
  padding: 12px 14px;
  border: 1px solid #50555e;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--heading-bg);
  font-weight: 700;
}

tr:nth-child(even) td {
  background: #353a43;
}

/* Offer banners */
.offer-banner,
.bonus-banner-section,
.home-app-banner,
.bonus-final-cta {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgb(73 196 91 / 58%);
  background: #191c21;
}

.offer-banner img,
.home-app-banner-media {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.offer-copy,
.app-banner-copy {
  padding: 18px;
  color: var(--white);
  background: #30343c;
  border-radius: 0 0 var(--radius) var(--radius);
}

.offer-copy h2,
.app-banner-copy h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.offer-kicker {
  color: var(--accent-hover);
  font-weight: 700;
}

.offer-actions,
.app-download-actions,
.bonus-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  gap: 8px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius);
}

.app-download-btn img {
  width: 22px;
  height: 22px;
}

.android-download,
.ios-section-download {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgb(73 196 91 / 20%);
}

.android-download .app-download-btn,
.ios-section-download .app-download-btn {
  min-width: min(100%, 320px);
  font-weight: 800;
}

/* Pros and cons */
.pros-cons-grid,
.install-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pros-cons-panel,
.install-platform-card {
  padding: 18px;
  background: var(--heading-bg);
  border-radius: var(--radius);
}

.pros-cons-panel h3,
.install-platform-head h3 {
  margin-top: 0;
}

.pros-cons-list {
  padding: 0;
  list-style: none;
}

.pros-cons-list li {
  position: relative;
  padding-left: 25px;
}

.pros-cons-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-hover);
  font-weight: 800;
}

.cons-panel .pros-cons-list li::before {
  content: "–";
  color: #89d797;
}

.install-platform-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.install-platform-head img {
  width: 30px;
  height: 30px;
}

.install-note {
  padding: 12px;
  background: #363b44;
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}

/* Reviews carousel */
.reviews-section {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at 96% 0%, rgb(73 196 91 / 13%), transparent 38%),
    linear-gradient(145deg, #0b0e0c, #02070d 72%);
  border: 1px solid rgb(73 196 91 / 24%);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 4%),
    0 18px 44px rgb(0 0 0 / 30%);
}

.reviews-section > h2 {
  margin-bottom: 12px;
  padding: 0 0 14px 24px;
  background: transparent;
  border-bottom: 1px solid rgb(73 196 91 / 22%);
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(21px, 2.3vw, 29px);
  letter-spacing: -0.025em;
}

.reviews-section > h2::before {
  top: 1px;
  bottom: 15px;
  left: 0;
  width: 5px;
  height: auto;
  background: linear-gradient(180deg, var(--signal-blue-hover), var(--signal-blue));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 0 18px rgb(69 167 223 / 44%);
  transform: none;
}

.reviews-section > .article-source-block {
  max-width: 72ch;
  margin-bottom: 22px;
  color: #b4bcb6;
}

.reviews-section > .article-source-block p {
  margin: 0;
  font-size: 15px;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 3px 18px;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgb(255 255 255 / 8%);
  overscroll-behavior-inline: contain;
}

.reviews-track.state-auto-scrolling {
  scroll-snap-type: none;
}

.reviews-track::-webkit-scrollbar {
  height: 4px;
}

.reviews-track::-webkit-scrollbar-track {
  background: rgb(255 255 255 / 5%);
  border-radius: 999px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent), #75d987);
  border-radius: 999px;
}

.review-card {
  flex: 0 0 calc(50% - 7px);
  padding: 16px;
  color: var(--white);
  background: var(--heading-bg);
  border-radius: var(--radius);
}

.reviews-track > .review-card {
  position: relative;
  flex: 0 0 min(62%, 500px);
  min-height: 230px;
  padding: 28px 26px 22px 30px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgb(73 196 91 / 15%), transparent 42%),
    linear-gradient(155deg, #111d15, #050d17 74%);
  border: 1px solid rgb(123 213 138 / 24%);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 6%),
    inset 4px 0 0 #35a953,
    0 14px 30px rgb(0 0 0 / 34%);
  scroll-snap-align: start;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.reviews-track > .review-card::before {
  content: "“";
  position: absolute;
  top: 13px;
  right: 20px;
  color: #75d987;
  opacity: 0.22;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.reviews-track > .review-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 22px;
  left: auto;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, #75d987, transparent);
  border-radius: 999px;
}

.reviews-section .review-card p {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  color: #dfe9e1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
}

.review-quote {
  display: block;
  flex: 1;
  max-width: 43ch;
  padding-right: 28px;
}

.review-author {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  margin-top: 20px;
  padding: 14px 92px 0 48px;
  color: #f6f7f5;
  border-top: 1px solid rgb(123 213 138 / 16%);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.review-author::before {
  content: attr(data-initials);
  position: absolute;
  bottom: -1px;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgb(255 255 255 / 20%), transparent 28%),
    linear-gradient(145deg, #49c45b, #238a43);
  border: 1px solid rgb(184 214 191 / 45%);
  border-radius: 50%;
  box-shadow: 0 7px 16px rgb(0 0 0 / 30%);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.review-author::after {
  content: "★★★★★";
  position: absolute;
  right: 0;
  bottom: 8px;
  color: #75d987;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-shadow: 0 0 10px rgb(73 196 91 / 32%);
}

.reviews-section .review-card em {
  display: block;
  margin-bottom: 20px;
  padding-right: 28px;
  color: #f7f8f9;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.62;
}

#pontuacoes ~ .reviews-track {
  display: block;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
}

#pontuacoes + .article-source-block {
  width: 100%;
  max-width: none;
}

#pontuacoes ~ .reviews-track > .review-card {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  scroll-snap-align: none;
  transform: none;
}

#pontuacoes ~ .reviews-track > .review-card::before,
#pontuacoes ~ .reviews-track > .review-card::after {
  content: none;
}

#pontuacoes ~ .reviews-track > .review-card p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

@media (hover: hover) {
  .reviews-track > .review-card:hover {
    border-color: rgb(123 213 138 / 56%);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 8%),
      inset 4px 0 0 #49c45b,
      0 18px 38px rgb(0 0 0 / 42%),
      0 0 20px rgb(73 196 91 / 12%);
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track > .review-card {
    transition: none;
  }
}


.site-table-wrap,
.table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.reviews-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 0 8px auto;
  padding: 0;
  place-items: center;
  color: #f8f4f1;
  background: #302927;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 9px;
  cursor: pointer;
}

.reviews-toggle:hover,
.reviews-toggle:focus-visible {
  color: #fff;
  background: #3a302e;
  border-color: var(--accent-bright);
  outline: none;
}

/* Final app-button layout: Android left, iOS right, matching two-line copy. */
.platform-banner-card {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-content: initial;
  align-items: center;
  justify-items: initial;
  gap: 20px;
}

.platform-banner-card .app-banner-center {
  display: block;
  grid-column: 2;
  grid-row: 1;
}

.platform-banner-card .app-banner-btn {
  grid-row: 1;
  width: min(100%, 260px);
  min-height: 58px;
  margin: 0;
  white-space: normal;
}

.platform-banner-card .app-banner-android {
  grid-column: 1;
  justify-self: start;
}

.platform-banner-card .app-banner-ios {
  grid-column: 3;
  justify-self: end;
}

.platform-banner-card .app-banner-btn span {
  display: grid;
  justify-items: center;
  gap: 2px;
  line-height: 1.05;
  text-align: center;
}

.platform-banner-card .app-banner-btn small,
.platform-banner-card .app-banner-btn strong {
  display: block;
  color: inherit;
  line-height: 1.05;
}

.platform-banner-card .app-banner-btn small {
  font-size: 10px;
  font-weight: 600;
}

.platform-banner-card .app-banner-btn strong {
  font-size: 13px;
  font-weight: 900;
}

.app-banner-btn strong::before {
  content: none !important;
}

@media (max-width: 767px) {
  .platform-banner-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(150px, 1fr) auto;
    align-content: stretch;
    padding: 18px 12px 12px;
    gap: 10px;
  }

  .platform-banner-card .app-banner-center {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .platform-banner-card .app-banner-btn {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    min-height: 56px;
  }

  .platform-banner-card .app-banner-android {
    grid-column: 1;
  }

  .platform-banner-card .app-banner-ios {
    grid-column: 2;
  }

  .platform-banner-card .app-banner-btn small {
    font-size: 9px;
  }

  .platform-banner-card .app-banner-btn strong {
    font-size: 11px;
  }
}

/* App editorial credit belongs to the troubleshooting section, not a second card. */
body[data-page-key="app"]
  [data-article-section="app"][data-section-index="10"]
  > .app-author {
  display: block;
  margin: 24px 0 0;
  padding: 18px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
  box-shadow: none;
}

body[data-page-key="app"]
  [data-article-section="app"][data-section-index="10"]
  > .app-author p {
  margin: 0;
}

@media (max-width: 767px) {
  body[data-page-key="app"]
    [data-article-section="app"][data-section-index="10"]
    > .app-author {
    margin-top: 20px;
    padding-top: 16px;
  }
}

/* App download controls: one uniform two-row stack in every platform banner. */
.platform-banner-card {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(2, auto);
  align-content: center;
  justify-items: center;
  gap: 12px;
}

.platform-banner-card .app-banner-center {
  display: none;
}

.platform-banner-card .app-banner-btn {
  grid-column: 1;
  justify-self: center;
  width: min(100%, 320px);
  min-height: 52px;
  margin: 0;
  white-space: nowrap;
}

.platform-banner-card .app-banner-ios {
  grid-row: 1;
}

.platform-banner-card .app-banner-android {
  grid-row: 2;
}

.app-banner-btn strong::before {
  content: none;
}

@media (max-width: 520px) {
  .platform-banner-card {
    padding-inline: 16px;
    gap: 10px;
  }

  .platform-banner-card .app-banner-btn {
    width: 100%;
    min-height: 48px;
    font-size: 11px;
  }
}

.reviews-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 0 8px auto;
  padding: 0;
  place-items: center;
  color: #f8f4f1;
  background: #302927;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 9px;
  cursor: pointer;
}

.reviews-toggle:hover,
.reviews-toggle:focus-visible {
  color: #fff;
  background: #3a302e;
  border-color: var(--accent-bright);
  outline: none;
}


.site-table-wrap,
.table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

/* Unified compact app-download CTA used in every app banner and install section. */
.app-banner-btn,
.app-download-btn {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 22px;
  width: min(100%, 260px);
  min-height: 44px;
  padding: 9px 16px;
  gap: 9px;
  border: 1px solid rgb(135 224 83 / 42%);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.app-banner-btn::after,
.app-download-btn::after {
  width: 22px;
  height: 1px;
  content: "";
}

.app-banner-btn img,
.app-download-btn img {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.app-banner-btn span {
  display: block;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: inherit;
}

.app-banner-btn small,
.app-banner-btn strong {
  display: none;
}

.app-banner-android span::before {
  content: "Télécharger l’application Android";
}

.app-banner-ios span::before {
  content: "Télécharger l’application iOS";
}

@media (max-width: 767px) {
  .app-banner-btn,
  .app-download-btn {
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    width: 100%;
    min-height: 44px;
    padding: 9px 10px;
    gap: 7px;
    font-size: 10px;
  }

  .app-banner-btn img,
  .app-download-btn img {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .app-banner-btn::after,
  .app-download-btn::after {
    width: 20px;
  }
}

/* Shared accent tokens: black, white and green framing with brand-green CTAs. */
.site-hot,
.registration-card .signup-button,
.bet-slip .signup-button,
.promo-banner-cta,
.section-cta-link {
  background: var(--brand-green);
}

.site-hot:hover,
.registration-card .signup-button:hover,
.bet-slip .signup-button:hover,
.promo-banner-cta:hover,
.section-cta-link:hover {
  background: var(--brand-green-hover);
}

.age-badge,
.hero-rating strong,
.promo-banner-kicker {
  color: var(--accent-pale);
}

.inline-review-card {
  margin: 0 0 12px;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-stars {
  color: #7bd58a;
}

.reviews-control,
.reviews-toggle {
  margin-top: 12px;
}

.faq-item {
  overflow: hidden;
  margin: 0 0 10px;
  background: var(--heading-bg);
  border-radius: var(--radius);
}

.faq-item summary {
  position: relative;
  padding: 15px 48px 15px 16px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  color: var(--accent-hover);
  font-size: 24px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item > p,
.faq-panel {
  padding: 0 16px 15px;
}

.faq-item > p {
  margin: 0;
}

.faq-item summary em {
  color: inherit;
  font-style: normal;
}

.faq-panel {
  overflow: hidden;
  transition: max-height 360ms ease;
}

/* Footer */
.site-footer {
  padding: 0 var(--page-gutter) 16px;
  background: var(--page-bg);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  padding: 18px;
  background: var(--header-bg);
  border-radius: var(--radius);
}

.legacy-footer-column {
  display: grid;
  align-content: start;
  gap: 7px;
}

.legacy-footer-column h3 {
  margin: 0 0 3px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.legacy-footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cfd1d5;
  font-size: 12px;
}

.footer-app-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.legacy-footer-column a:hover {
  color: var(--accent-hover);
}

.legacy-footer-notice,
.footer-legal-row,
.footer-payments {
  margin-top: 8px;
  padding: 16px;
  background: var(--header-bg);
  border-radius: var(--radius);
}

.legacy-footer-notice,
.footer-legal-row {
  color: #aeb2b8;
  font-size: 12px;
}

.footer-legal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer-legal-row p {
  margin: 0;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--white);
  background: var(--accent);
  border: 2px solid rgb(255 255 255 / 72%);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgb(214 41 73 / 28%);
  font-size: 17px;
  line-height: 1;
  text-align: center;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 58px;
  gap: 26px;
}

.footer-payments img {
  width: auto;
  max-width: 92px;
  height: 26px;
  object-fit: contain;
}

.footer-service-links,
.footer-legal-copy {
  display: none;
}

/* Cookie notice */
.site-cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: center;
  max-width: 420px;
  min-height: 58px;
  padding: 12px 14px;
  gap: 14px;
  color: var(--text);
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgb(0 0 0 / 42%);
}

.site-cookie.state-visible {
  display: flex;
}

.cookies-copy {
  flex: 1;
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.cookies-policy-link {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-cookie button {
  min-height: 38px;
  padding: 9px 15px;
  color: var(--white);
  background: var(--accent);
  border: 0;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.site-cookie button:hover {
  background: var(--accent-hover);
}

.site-cookie button:active {
  transform: translateY(1px);
}

/* Floating controls */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  opacity: 0;
  pointer-events: none;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top::before {
  content: "↑";
  color: var(--white);
  font-size: 24px;
}

.scroll-top.state-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Keep the control fixed above the site-footer; the script's dock coordinates are document-based. */
.scroll-top.state-docked {
  top: auto !important;
  bottom: 24px !important;
}

@media (max-width: 620px) {
  .scroll-top.state-docked {
    bottom: 16px !important;
  }
}

.scroll-top:hover {
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 1180px) {
  :root {
    --left-column: 230px;
  }

  .page-shell {
    grid-template-columns: var(--left-column) minmax(0, 1fr);
  }

  .page-shell.state-left-collapsed {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .right-sidebar {
    display: none;
  }

  .header-time {
    display: none;
  }

  .nav-links {
    gap: 20px;
  }

  .promo-banner-copy {
    align-items: center;
    width: min(68%, 500px);
    margin-inline: auto;
    padding: clamp(18px, 2.4vw, 26px);
    text-align: center;
    background: rgb(24 27 31 / 78%);
    border: 1px solid rgb(255 255 255 / 11%);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgb(0 0 0 / 26%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}

/* Progressively release header space before the mobile navigation takes over. */
@media (max-width: 1240px) {
  .tool-button:first-child {
    display: none;
  }
}

@media (max-width: 1120px) {
  .tool-button:nth-child(2) {
    display: none;
  }
}

/* Mobile */
@media (max-width: 900px) {
  :root {
    --header-height: 70px;
    --page-gutter: 10px;
  }

  body {
    padding-top: var(--header-height);
  }

  .topbar {
    position: fixed;
    right: 0;
    left: 0;
    height: var(--header-height);
  }

  .site-nav {
    padding: 0 10px;
    gap: 10px;
  }

  .site-brand {
    flex-basis: 118px;
    margin-right: auto;
  }

  .site-logo {
    width: 110px;
    max-height: 36px;
  }

  .nav-links,
  .site-auth,
  .header-time {
    display: none;
  }

  .header-tools {
    display: flex;
    margin-left: auto;
  }

  .header-tools .tool-button {
    display: grid;
  }

  .language-switch {
    display: flex;
    flex: 0 0 auto;
    font-size: 12px;
  }

  .language-flag-uz {
    width: 26px;
    height: 26px;
  }

  .mobile-burger {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 5px 2px;
    align-content: space-around;
    background: transparent;
    border: 0;
  }

  .mobile-burger span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--white);
  }

  .mobile-menu {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    opacity: 0;
    background: var(--header-bg);
    box-shadow: 0 12px 30px rgb(0 0 0 / 35%);
    transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease;
  }

  .mobile-menu-open .mobile-menu {
    max-height: min(560px, calc(100dvh - var(--header-height) - 12px));
    padding-top: 10px;
    padding-bottom: 14px;
    opacity: 1;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    color: #fff;
    background: linear-gradient(90deg, rgb(54 17 27 / 96%), rgb(22 8 12 / 96%));
    border: 1px solid rgb(232 65 95 / 32%);
    border-radius: 9px;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-menu > a + a {
    margin-top: 7px;
  }

  .mobile-menu > a:not(.btn):hover,
  .mobile-menu > a:not(.btn):focus-visible {
    background: linear-gradient(90deg, rgb(111 22 42 / 92%), rgb(31 9 15 / 98%));
    border-color: rgb(255 111 134 / 62%);
  }

  .mobile-menu > a.state-active {
    background: linear-gradient(90deg, rgb(111 22 42 / 92%), rgb(31 9 15 / 98%));
    border-color: rgb(255 111 134 / 62%);
    box-shadow: inset 4px 0 0 var(--accent), 0 0 18px rgb(214 41 73 / 18%);
  }

  .mobile-menu > .btn {
    justify-content: center;
    min-height: 46px;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
  }

  .mobile-menu > .btn.site-hot {
    background: linear-gradient(180deg, #49c45b, #2da546);
    border-color: #79d889;
    color: #06130a;
  }

  .mobile-menu > .btn.ghost {
    color: #fff;
    background: linear-gradient(180deg, #451724, #210b11);
    border-color: rgb(255 111 134 / 56%);
  }

  .mobile-menu .nav-link-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .slot-viewport {
    mask-image: linear-gradient(90deg, transparent, #000 8px, #000 calc(100% - 14px), transparent);
  }


  .page-shell {
    display: block;
    padding: 16px var(--page-gutter) 30px;
  }

  .article-sidebar,
  .right-sidebar {
    display: none;
  }

  .site-hero {
    min-height: 543px;
    margin-bottom: 20px;
    padding: 48px 20px;
    text-align: center;
  }

  .site-hero::after {
    background: linear-gradient(180deg, rgb(9 11 14 / 45%) 0%, rgb(9 11 14 / 80%) 65%, rgb(9 11 14 / 58%) 100%);
  }

  .hero-scene-image {
    object-position: 70% center;
  }

  .hero-copy {
    box-sizing: border-box;
    width: min(100%, 680px);
    margin-inline: auto;
    padding: 20px 16px;
    text-align: center;
    background: rgb(5 8 10 / 68%);
    border: 1px solid rgb(255 255 255 / 8%);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgb(0 0 0 / 22%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .hero-breadcrumbs {
    justify-content: center;
  }

  .site-hero h1 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.25;
  }

  .site-hero p {
    margin-inline: auto;
    font-size: 15px;
  }

  .hero-actions .article-btn {
    min-width: 220px;
  }

  .promo-banner-card {
    height: 350px;
    min-height: 350px;
    padding: 22px;
  }

  .promo-banner-copy {
    width: min(62%, 470px);
  }

  .platform-banner-card {
    min-height: 350px;
    padding: 20px;
    gap: 14px;
  }

  .app-banner-btn {
    max-width: 205px;
    padding: 9px 11px;
  }

  .app-banner-btn img {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .app-banner-btn small {
    font-size: 9px;
  }

  .app-banner-btn strong {
    font-size: 11px;
  }

  .article-nav-nav.mobile-nav-mounted {
    display: block;
    margin: 0 0 20px;
  }

  .article-section,
  .content-section,
  .reviews-section,
  .home-app-banner,
  .bonus-banner-section,
  .bonus-final-cta {
    padding: 10px;
  }

  .article-section h2,
  .content-section h2,
  .reviews-section > h2 {
    padding: 10px 12px 10px 32px;
    font-size: 21px;
    line-height: 1.38;
  }

  .article-section p,
  .content-section p,
  .article-section li,
  .content-section li {
    font-size: 16px;
  }

  .pros-cons-grid,
  .install-platform-grid {
    grid-template-columns: 1fr;
  }

  .reviews-track {
    gap: 12px;
    margin-right: 0;
    padding: 6px 1px 14px;
  }

  .reviews-track > .review-card {
    flex-basis: min(88%, 420px);
    min-height: 0;
    padding: 24px 18px 18px 22px;
    border-radius: 14px;
  }

  .reviews-section .review-card em {
    padding-right: 18px;
    font-size: 14px;
  }

  .reviews-section {
    padding: 16px;
    border-radius: 14px;
  }

  .reviews-section > h2 {
    padding: 0 0 12px 20px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .reviews-section > h2::before {
    top: 2px;
    bottom: 13px;
    left: 0;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, #75d987, #238a43);
    border: 0;
    border-radius: 999px;
    transform: none;
  }

  .review-author {
    padding-right: 0;
  }

  .review-author::after {
    display: none;
  }

  .site-footer {
    padding: 0 10px 12px;
  }

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

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

  .footer-payments {
    flex-wrap: wrap;
  }

  .site-cookie {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .site-nav {
    gap: 6px;
  }

  .site-brand {
    flex-basis: 100px;
  }

  .site-logo {
    width: 100px;
  }

  .header-tools {
    display: flex;
    gap: 6px;
  }

  .header-tools .tool-button {
    display: grid;
    width: 30px;
    height: 30px;
  }

  .language-switch {
    display: flex;
    min-height: 36px;
    padding-right: 8px;
  }
}

/* Small phones */
@media (max-width: 520px) {
  :root {
    --content-flow-gap: 12px;
  }

  .section-cta-row {
    margin-top: 14px;
  }

  .section-cta-link {
    width: 100%;
    min-width: 0;
  }

  .site-hero {
    min-height: 520px;
    padding: 42px 12px;
  }

  .hero-img {
    inset: 0;
    height: 100%;
  }

  .platform-banner-image {
    inset-block: 8px;
    height: calc(100% - 16px);
  }

  .promo-banner-card {
    height: 350px;
    min-height: 350px;
    padding: 18px;
  }

  .promo-banner-card::after {
    background:
      linear-gradient(
        90deg,
        rgb(4 6 8 / 72%) 0%,
        rgb(4 6 8 / 56%) 44%,
        rgb(4 6 8 / 24%) 70%,
        rgb(4 6 8 / 3%) 100%
      );
  }

  .promo-banner-image {
    inset-block: 0;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  img[src*="ca-promo-home-volleyball.webp"] {
    object-position: 82% center;
  }

  img[src*="ca-promo-home-basketball.webp"] {
    object-position: 84% center;
  }

  img[src*="ca-promo-casino-esports.webp"] {
    object-position: 82% center;
  }

  img[src*="ca-promo-casino-football.webp"] {
    object-position: 82% center;
  }

  img[src*="ca-promo-bonus-tennis.webp"] {
    object-position: 82% center;
  }

  img[src*="ca-promo-bonus-football.webp"] {
    object-position: 82% center;
  }

  img[src*="ca-promo-bonus-cycling.webp"] {
    object-position: 84% center;
  }

  .promo-banner-copy {
    width: 69%;
  }

  .promo-banner-card.promo-copy-opposite::after {
    background:
      linear-gradient(
        270deg,
        rgb(4 6 8 / 72%) 0%,
        rgb(4 6 8 / 56%) 44%,
        rgb(4 6 8 / 24%) 70%,
        rgb(4 6 8 / 3%) 100%
      );
  }

  .promo-banner-kicker {
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.18;
  }

  .promo-banner-title {
    margin-bottom: 15px;
    font-size: 21px;
  }

  .promo-description {
    margin: 7px 0 13px;
    font-size: 12px;
    line-height: 1.3;
  }

  .promo-banner-cta,
  .section-bonus-cta {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 11px;
  }

  .platform-banner-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(150px, 1fr) auto;
    min-height: 350px;
    padding: 18px 12px 12px;
    gap: 10px;
  }

  .platform-banner-card::after {
    background:
      linear-gradient(
        180deg,
        rgb(4 6 8 / 18%) 0%,
        rgb(4 6 8 / 30%) 48%,
        rgb(4 6 8 / 84%) 72%,
        rgb(4 6 8 / 96%) 100%
      ),
      radial-gradient(circle at center, transparent 8%, rgb(4 6 8 / 35%) 76%);
  }

  .platform-banner-image {
    object-position: center;
  }

  .app-banner-center {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
    width: 150px;
    height: 48px;
  }

  .app-banner-btn {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    min-height: 56px;
    padding: 8px;
    gap: 7px;
  }

  .app-banner-android {
    grid-column: 1;
  }

  .app-banner-ios {
    grid-column: 2;
  }

  .app-banner-btn img {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .app-banner-btn span {
    gap: 1px;
  }

  .app-banner-btn small {
    font-size: 8px;
  }

  .app-banner-btn strong {
    font-size: 10px;
  }

  .site-hero h1 {
    font-size: 27px;
  }

  .site-hero p {
    font-size: 14px;
  }

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

  .footer-payments img {
    max-width: 72px;
    height: 22px;
  }
}

/* Slot library inside the casino article */
.slot-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  gap: 12px;
}

@property --slot-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.slot-library-card {
  --slot-border-angle: 0deg;

  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 301 / 180;
  background: #16181d;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgb(0 0 0 / 24%);
}

.slot-library-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  padding: 2px;
  pointer-events: none;
  background: conic-gradient(
    from var(--slot-border-angle),
    transparent 0deg 205deg,
    rgb(73 196 91 / 20%) 225deg,
    var(--accent-hover) 250deg,
    #edf6ef 270deg,
    var(--accent-hover) 290deg,
    rgb(73 196 91 / 20%) 315deg,
    transparent 338deg 360deg
  );
  border-radius: inherit;
  opacity: 0.9;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: slot-border-orbit 3.2s linear infinite;
  transition:
    opacity 180ms ease,
    padding 180ms ease;
}

.slot-library-card:nth-child(4n + 2)::before {
  animation-delay: -0.8s;
}

.slot-library-card:nth-child(4n + 3)::before {
  animation-delay: -1.6s;
}

.slot-library-card:nth-child(4n + 4)::before {
  animation-delay: -2.4s;
}

.slot-library-card:hover::before,
.slot-library-card:focus-visible::before {
  padding: 3px;
  opacity: 1;
  animation-duration: 1.65s;
}

.slot-library-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.slot-library-name {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  padding: 22px 10px 8px;
  color: var(--white);
  background: linear-gradient(transparent, rgb(0 0 0 / 88%));
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slot-library-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgb(10 12 15 / 78%);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.slot-library-hover strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.slot-library-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 34px;
  margin-top: 10px;
  padding: 7px 18px;
  color: var(--white);
  background: var(--accent);
  border-radius: 5px;
  box-shadow: 0 5px 14px rgb(0 0 0 / 32%);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.slot-library-card:hover img,
.slot-library-card:focus-visible img {
  filter: brightness(0.6);
  transform: scale(1.045);
}

.slot-library-card:hover .slot-library-hover,
.slot-library-card:focus-visible .slot-library-hover {
  opacity: 1;
  transform: translateY(0);
}

.slot-library-card:hover .slot-library-play {
  background: var(--accent-hover);
}

@keyframes slot-border-orbit {
  to {
    --slot-border-angle: 360deg;
  }
}

@media (max-width: 720px) {
  .slot-library-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (hover: none) {
  .slot-library-hover {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 10px;
    background: linear-gradient(transparent 30%, rgb(10 12 15 / 92%));
    opacity: 1;
    transform: none;
  }

  .slot-library-hover strong {
    font-size: 12px;
  }

  .slot-library-play {
    min-width: 68px;
    min-height: 30px;
    margin-top: 6px;
    padding: 5px 12px;
    font-size: 10px;
  }

  .slot-library-name {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .slot-viewport {
    overflow-x: auto;
    mask-image: none;
    scrollbar-width: none;
  }

  .slot-viewport::-webkit-scrollbar {
    display: none;
  }

  .slot-library-card::before {
    background: var(--accent);
    opacity: 0.8;
    animation: none;
  }
}
/* Floating support and fortune-wheel actions */
.floating-actions {
  --widget-green: var(--accent);
  --widget-lime: var(--accent-soft);
  --widget-red: var(--accent-bright);
  --widget-gold: var(--accent-pale);
  --widget-ink: var(--header-bg);
  position: relative;
  z-index: 1200;
}

.floating-chat{
  -webkit-tap-highlight-color: transparent;
}

.floating-chat {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 86px;
  z-index: 1202;
  display: block;
  width: 62px;
  height: 62px;
  padding: 3px;
  color: #fff;
  background: linear-gradient(145deg, #39d3b2, #0b7c70 54%, #62e6bb);
  border: 1px solid rgb(85 255 214 / 70%);
  border-radius: 50%;
  box-shadow:
    0 14px 34px rgb(0 0 0 / 52%),
    0 0 0 5px rgb(48 201 164 / 12%);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  isolation: isolate;
}

.floating-chat::before {
  position: absolute;
  inset: -7px;
  z-index: -1;
  content: "";
  border: 1px solid rgb(57 211 178 / 46%);
  border-radius: inherit;
  animation: site-chat-pulse 2.4s ease-out infinite;
}

.floating-chat-avatar {
  display: block;
  width: 100%;
  height: 100%;
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: 185% auto;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: inherit;
  filter: saturate(0.88) contrast(1.08);
}

.floating-chat-mark {
  position: absolute;
  right: -3px;
  bottom: -2px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #061b1a;
  background: #39d3b2;
  border: 2px solid #14232c;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgb(0 0 0 / 42%);
}

.floating-chat-mark svg {
  width: 13px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.chat-invite {
  position: fixed;
  left: 22px;
  bottom: 160px;
  z-index: 1201;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  width: min(330px, calc(100vw - 44px));
  padding: 16px;
  color: #eefcf8;
  background:
    linear-gradient(125deg, rgb(35 60 68 / 95%), rgb(14 29 37 / 98%) 62%),
    #101b22;
  border: 1px solid rgb(57 211 178 / 44%);
  border-radius: 14px;
  box-shadow: 0 22px 58px rgb(0 0 0 / 54%), inset 0 1px rgb(255 255 255 / 5%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: 30px 100%;
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms;
}

.chat-invite::after {
  position: absolute;
  bottom: -8px;
  left: 26px;
  width: 14px;
  height: 14px;
  content: "";
  background: #14232c;
  border-right: 1px solid rgb(57 211 178 / 44%);
  border-bottom: 1px solid rgb(57 211 178 / 44%);
  transform: rotate(45deg);
}

.chat-invite.flag-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-invite-avatar {
  display: block;
  width: 58px;
  height: 58px;
  background-position: 50% 20%;
  background-repeat: no-repeat;
  background-size: 185% auto;
  border: 1px solid rgb(86 229 196 / 52%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(57 211 178 / 9%);
}

.chat-invite-copy {
  min-width: 0;
}

.chat-invite-copy > span {
  display: block;
  margin-bottom: 2px;
  color: #5de1c1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-invite-copy strong {
  display: block;
  padding-right: 20px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.chat-invite-copy p {
  margin: 7px 0 12px;
  color: #abc0c4;
  font-size: 12px;
  line-height: 1.45;
}

.chat-invite-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  color: #061b1a;
  background: #39d3b2;
  border: 1px solid #69f0cf;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.chat-invite-copy a:hover,
.chat-invite-copy a:focus-visible {
  background: #63e2c5;
  transform: translateY(-1px);
}

.chat-invite-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  color: #91aaa9;
  background: transparent;
  border: 0;
  border-radius: 50%;
  font: 400 22px/1 sans-serif;
  cursor: pointer;
}

.chat-invite-close:hover,
.chat-invite-close:focus-visible {
  color: #fff;
  background: rgb(255 255 255 / 7%);
}

.floating-chat:hover,
.floating-chat:focus-visible {
  box-shadow:
    0 15px 38px rgb(0 0 0 / 54%),
    0 0 0 7px rgb(57 211 178 / 18%);
  transform: translateY(-3px);
}

@keyframes site-chat-pulse {
  0% { opacity: 0.8; transform: scale(0.84); }
  70%, 100% { opacity: 0; transform: scale(1.22); }
}

@media (prefers-reduced-motion: reduce) {
  .floating-chat::before { animation: none; }
  .floating-chat,
  .chat-invite,
  .chat-invite-copy a { transition: none; }
}

.star-dot-two {
  animation-delay: -0.58s;
}

@keyframes fortune-spin {
  to {
    transform: rotate(1902deg);
  }
}

@keyframes fortune-panel-win {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  34% {
    transform: translateX(0) scale(1.045) rotate(-0.8deg);
  }
  68% {
    transform: translateX(0) scale(0.985) rotate(0.45deg);
  }
}

@keyframes fortune-rays {
  0% {
    opacity: 0;
    transform: scale(0.45) rotate(-18deg);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0.22;
    transform: scale(1.08) rotate(16deg);
  }
}

@keyframes fortune-result-pop {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-8deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.08) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes fortune-win-beat {
  0%,
  100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.35);
    transform: scale(1.16);
  }
}

@keyframes fortune-status-pop {
  0% {
    opacity: 0;
    transform: translateY(7px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fortune-confetti-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(0);
  }
  14% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--x)), calc(-50% + var(--y)))
      scale(1)
      rotate(var(--r));
  }
}

@keyframes fortune-tab-invite {
  0%,
  12%,
  88%,
  100% {
    filter: brightness(1);
    transform: translateX(calc(100% - var(--fortune-handle)));
  }
  24%,
  70% {
    filter: brightness(1);
    transform: translateX(0);
  }
  34%,
  44% {
    filter: brightness(1.16);
    transform: translateX(0);
  }
}

@keyframes fortune-spark {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fortune-star-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.78) rotate(-5deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.08) rotate(5deg);
  }
}

@keyframes fortune-star-twinkle {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.65);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@media (max-width: 620px) {
  .floating-chat {
    left: 12px;
    right: auto;
    bottom: 76px;
    width: 52px;
    height: 52px;
  }

  .chat-invite {
    left: 12px;
    bottom: 140px;
    grid-template-columns: 50px minmax(0, 1fr);
    width: calc(100vw - 24px);
    padding: 14px;
  }

  .chat-invite-avatar {
    width: 50px;
    height: 50px;
  }
}
/* Homepage rating and page breadcrumbs */
.hero-rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-rating strong {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hero-rating span {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-breadcrumbs {
  align-items: center;
  flex-wrap: wrap;
}

.hero-breadcrumbs a,
.content-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.hero-breadcrumbs a:hover,
.hero-breadcrumbs a:focus-visible,
.content-breadcrumbs a:hover,
.content-breadcrumbs a:focus-visible {
  color: var(--accent-hover);
}

.breadcrumb-separator {
  display: inline-block;
  flex: 0 0 0.42em;
  width: 0.42em;
  height: 0.72em;
  overflow: hidden;
  background: var(--accent-hover);
  font-size: inherit;
  line-height: 1;
  text-indent: -999px;
  vertical-align: -0.02em;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14'%3E%3Cpath d='M1 1.25 6.5 7 1 12.75' fill='none' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14'%3E%3Cpath d='M1 1.25 6.5 7 1 12.75' fill='none' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.content-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  color: #cbd0c8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.content-breadcrumbs [aria-current="page"] {
  color: #fff;
}

@media (max-width: 620px) {
  .hero-rating {
    gap: 5px;
    margin-bottom: 9px;
    font-size: 10px;
  }

  .hero-breadcrumbs {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .content-breadcrumbs {
    margin-bottom: 13px;
    font-size: 10px;
  }
}
/* Featured four-deposit bonus list */
.bonus-showcase {
  position: relative;
  isolation: isolate;
  min-height: 288px;
  margin: 22px 0 26px;
  padding: 28px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 24%, rgb(73 196 91 / 28%), transparent 28%),
    radial-gradient(circle at 92% 105%, rgb(226 184 55 / 22%), transparent 36%),
    linear-gradient(118deg, #070a08 0%, #111d15 48%, #103b21 100%);
  border: 1px solid rgb(73 196 91 / 40%);
  border-radius: 18px;
  box-shadow:
    0 22px 50px rgb(0 0 0 / 28%),
    inset 0 1px 0 rgb(255 255 255 / 7%);
}

.bonus-showcase::before,
.bonus-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.bonus-showcase::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgb(13 18 16 / 12%), rgb(13 18 16 / 2%) 50%, rgb(13 18 16 / 42%)),
    repeating-linear-gradient(
      135deg,
      rgb(255 255 255 / 2%) 0 1px,
      transparent 1px 10px
    );
}

.bonus-showcase::after {
  right: 18%;
  bottom: -82px;
  width: 210px;
  height: 210px;
  border: 1px solid rgb(73 196 91 / 24%);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgb(73 196 91 / 5%),
    0 0 0 64px rgb(73 196 91 / 3%);
}

.bonus-showcase > ul[data-source-list] {
  position: relative;
  z-index: 2;
  margin: 0;
}

.bonus-showcase > ul[data-source-list] > li {
  min-height: 44px;
  padding-left: 42px;
  color: #f5f7f4;
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.35;
}

.bonus-showcase > ul[data-source-list] > li + li {
  margin-top: 12px;
}

.bonus-showcase > ul[data-source-list] > li strong {
  color: #fff;
  font-weight: 900;
}

.bonus-showcase > ul[data-source-list] > li::before {
  top: calc(9px + 0.42em);
  left: 7px;
  width: 13px;
  height: 13px;
  background: #49c45b;
  border-color: #b8d6bf;
  box-shadow:
    0 0 0 5px rgb(73 196 91 / 14%),
    0 0 15px rgb(73 196 91 / 64%);
}

@media (max-width: 720px) {
  .bonus-showcase {
    min-height: 0;
    padding: 24px 18px;
  }

  .bonus-showcase::after {
    right: -35px;
    bottom: -105px;
  }

  .bonus-showcase > ul[data-source-list] {
    padding-right: 0;
  }

  .bonus-showcase > ul[data-source-list] > li {
    min-height: 42px;
    padding-right: 66px;
    padding-left: 34px;
    font-size: 14px;
  }

  .bonus-showcase > ul[data-source-list] > li::before {
    left: 4px;
    width: 10px;
    height: 10px;
  }

  .bonus-character {
    right: -28px;
    bottom: -20px;
    height: 72%;
    max-width: 42%;
    opacity: 0.52;
    filter: drop-shadow(-8px 8px 13px rgb(0 0 0 / 50%));
  }
}
/* Brand-green filled action contract */
.skip,
.site-hot,
.registration-card .signup-button,
.bet-slip .signup-button,
.promo-banner-cta,
.section-bonus-cta,
.section-cta-link,
.app-banner-btn,
.app-download-btn,
.site-cookie button,
.scroll-top,
.slot-library-play{
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-green-hover), var(--brand-green));
  border-color: rgb(125 214 77 / 42%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 20%),
    0 7px 18px rgb(39 124 17 / 25%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-hot:hover,
.registration-card .signup-button:hover,
.bet-slip .signup-button:hover,
.promo-banner-cta:hover,
.section-bonus-cta:hover,
.section-cta-link:hover,
.app-banner-btn:hover,
.app-download-btn:hover,
.site-cookie button:hover,
.scroll-top:hover,
.slot-library-card:hover .slot-library-play{
  color: var(--white);
  background: linear-gradient(145deg, #64d878, var(--brand-green-hover));
  border-color: rgb(151 231 105 / 62%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 26%),
    0 9px 22px rgb(51 142 24 / 34%);
}

.site-hot:active,
.registration-card .signup-button:active,
.bet-slip .signup-button:active,
.promo-banner-cta:active,
.section-bonus-cta:active,
.section-cta-link:active,
.app-banner-btn:active,
.app-download-btn:active,
.site-cookie button:active,
.scroll-top:active {
  background: var(--brand-green-active);
  box-shadow:
    inset 0 2px 4px rgb(0 0 0 / 22%),
    0 3px 9px rgb(39 124 17 / 22%);
  transform: translateY(1px) scale(0.985);
}

.site-hot:focus-visible,
.registration-card .signup-button:focus-visible,
.bet-slip .signup-button:focus-visible,
.promo-banner-cta:focus-visible,
.section-bonus-cta:focus-visible,
.section-cta-link:focus-visible,
.app-banner-btn:focus-visible,
.app-download-btn:focus-visible,
.site-cookie button:focus-visible,
.scroll-top:focus-visible {
  outline-color: rgb(115 210 66 / 48%);
}

/* Interactive promo scratch coupon */
.site-promo-coupon {
  width: 100%;
  overflow: hidden;
  color: #f6f7f5;
  background:
    radial-gradient(circle at 90% -10%, rgb(73 196 91 / 20%), transparent 38%),
    linear-gradient(155deg, #0d1710, #050806 72%);
  border: 1px solid rgb(73 196 91 / 48%);
  border-radius: 12px;
  box-shadow:
    0 14px 30px rgb(0 0 0 / 28%),
    inset 0 1px 0 rgb(255 255 255 / 6%);
}

.coupon-header {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 10px 12px;
  gap: 10px;
  background:
    linear-gradient(110deg, rgb(73 196 91 / 18%), transparent 62%),
    #111d15;
  border-bottom: 1px dashed rgb(123 213 138 / 42%);
}

.coupon-header > div {
  display: grid;
  gap: 1px;
}

.coupon-header strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.coupon-header small {
  color: #7bd58a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coupon-ticket-icon {
  position: relative;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  background: linear-gradient(145deg, #49c45b, #238a43);
  border: 1px solid rgb(184 214 191 / 56%);
  border-radius: 8px 4px 8px 4px;
  box-shadow:
    inset 0 1px rgb(255 255 255 / 24%),
    0 5px 12px rgb(2 42 88 / 36%);
  transform: rotate(-4deg);
}

.coupon-ticket-icon::before,
.coupon-ticket-icon::after {
  position: absolute;
  content: "";
}

.coupon-ticket-icon::before {
  inset: 7px 5px;
  border-top: 2px dashed rgb(255 255 255 / 76%);
  border-bottom: 2px dashed rgb(255 255 255 / 76%);
}

.coupon-ticket-icon::after {
  top: 6px;
  bottom: 6px;
  left: 50%;
  border-left: 1px dashed rgb(255 255 255 / 50%);
}

.coupon-body {
  padding: 11px 10px 12px;
}

.coupon-intro {
  margin: 0 2px 10px;
  color: #bac5bc;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.coupon-offer {
  padding: 8px;
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 9px;
}

.coupon-offer-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin-bottom: 7px;
  gap: 7px;
}

.coupon-offer-head span {
  padding: 4px 6px;
  color: #f6f7f5;
  background: #35a953;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coupon-offer-head strong {
  min-width: 0;
  color: #f6faf4;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
}

.coupon-offer > p {
  margin: 6px 1px 0;
  color: #a5b3a8;
  font-size: 9px;
  line-height: 1.25;
  text-align: center;
}

.scratch-card {
  position: relative;
  isolation: isolate;
  height: 72px;
  overflow: hidden;
  background: #edf5ef;
  border: 1px solid rgb(73 196 91 / 48%);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 2px rgb(255 255 255 / 66%),
    0 5px 13px rgb(0 0 0 / 22%);
  animation: blau-coupon-pulse 1.9s ease-in-out infinite;
  transition:
    opacity 360ms ease,
    transform 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease;
}

.scratch-reveal {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  padding: 10px 9px 9px 13px;
  column-gap: 8px;
  color: #0b0e0c;
  background:
    radial-gradient(circle at 20% 20%, rgb(73 196 91 / 25%), transparent 48%),
    linear-gradient(135deg, #f5f7f5, #dceadf);
}

.scratch-reveal small {
  grid-column: 1;
  color: #2e613b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scratch-reveal > strong {
  grid-column: 1;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
}

.coupon-copy {
  grid-column: 2;
  grid-row: 1 / 3;
  min-width: 48px;
  min-height: 30px;
  padding: 6px;
  color: #fff;
  background: var(--brand-green);
  border: 0;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.scratch-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.scratch-tool {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 28%, #f2faf3 0 8%, transparent 9%),
    radial-gradient(circle at 38% 34%, #b9e8c1 0 24%, #68bd78 58%, #2d673a 100%);
  border: 1px solid #bfe9c6;
  border-radius: 50%;
  box-shadow:
    inset -3px -4px 6px rgb(78 45 5 / 38%),
    inset 2px 2px 3px rgb(255 255 255 / 55%),
    0 5px 9px rgb(0 0 0 / 42%);
  opacity: 0;
  transform: translate(calc(var(--scratch-x, 50%) - 15px), calc(var(--scratch-y, 50%) - 15px)) rotate(-18deg) scale(0.82);
  transition: opacity 120ms ease, filter 120ms ease;
}

.scratch-tool::before,
.scratch-tool::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.scratch-tool::before {
  inset: 4px;
  border: 1px dashed rgb(107 69 10 / 55%);
  box-shadow: inset 0 0 0 1px rgb(255 243 158 / 38%);
}

.scratch-tool::after {
  right: 3px;
  bottom: 2px;
  left: 3px;
  height: 5px;
  background: linear-gradient(180deg, #55a968, #275a33);
  filter: blur(0.4px);
  transform: rotate(8deg);
}

.scratch-tool > span {
  position: absolute;
  inset: 9px;
  background: #55aa68;
  border: 1px solid rgb(101 62 7 / 52%);
  border-radius: 3px;
  box-shadow: inset 1px 1px rgb(255 234 134 / 46%);
  transform: rotate(45deg);
}

.scratch-tool.state-active {
  opacity: 1;
  filter: drop-shadow(0 2px 2px rgb(0 0 0 / 24%));
}

.scratch-card:hover:not(.state-revealed) .scratch-tool:not(.state-active) {
  --scratch-x: calc(100% - 23px);
  --scratch-y: 19px;
  opacity: 0.7;
  animation: blau-scratch-tool-invite 1.2s ease-in-out infinite;
}

.scratch-debris {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.scratch-debris i {
  position: absolute;
  top: var(--debris-y);
  left: var(--debris-x);
  width: 4px;
  height: 2px;
  background: linear-gradient(90deg, #f2f5ef, #697267);
  border-radius: 60% 25% 55% 35%;
  box-shadow: 0 1px 1px rgb(0 0 0 / 38%);
  animation: blau-scratch-debris-fall 620ms var(--debris-delay) cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.scratch-card.state-scratching {
  animation: none;
  box-shadow:
    inset 0 0 0 2px rgb(255 255 255 / 72%),
    0 0 0 3px rgb(73 196 91 / 11%),
    0 7px 18px rgb(0 0 0 / 30%);
}

.scratch-card.state-revealed .scratch-canvas {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
}

.scratch-card.state-revealed {
  border-color: rgb(73 196 91 / 78%);
  box-shadow:
    inset 0 0 0 2px rgb(255 255 255 / 76%),
    0 0 0 3px rgb(73 196 91 / 13%),
    0 9px 24px rgb(35 138 67 / 30%);
  animation: none;
}

.scratch-card.state-resetting {
  opacity: 0.18;
  transform: scale(0.96) rotateX(8deg);
}

.coupon-auto-status {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin: 7px 0 0;
  gap: 7px;
  color: #bac5bc;
  font-size: 9px;
  letter-spacing: 0.025em;
  text-align: center;
}

.coupon-auto-status span {
  width: 7px;
  height: 7px;
  background: #49c45b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(73 196 91 / 52%);
  animation: blau-coupon-status-pulse 1.25s ease-out infinite;
}

.coupon-auto-status strong {
  font-weight: 700;
}

@keyframes blau-coupon-pulse {
  0%,
  100% {
    border-color: rgb(73 196 91 / 42%);
    box-shadow:
      inset 0 0 0 2px rgb(255 255 255 / 66%),
      0 5px 13px rgb(0 0 0 / 22%);
    transform: scale(1);
  }

  50% {
    border-color: rgb(123 213 138 / 88%);
    box-shadow:
      inset 0 0 0 2px rgb(255 255 255 / 78%),
      0 0 0 4px rgb(73 196 91 / 14%),
      0 8px 22px rgb(35 138 67 / 38%);
    transform: scale(1.018);
  }
}

@keyframes blau-coupon-status-pulse {
  70% {
    box-shadow: 0 0 0 6px rgb(73 196 91 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(73 196 91 / 0%);
  }
}

@keyframes blau-scratch-tool-invite {
  0%,
  100% {
    transform: translate(calc(var(--scratch-x) - 15px), calc(var(--scratch-y) - 15px)) rotate(-22deg) scale(0.78);
  }

  50% {
    transform: translate(calc(var(--scratch-x) - 20px), calc(var(--scratch-y) - 12px)) rotate(-8deg) scale(0.88);
  }
}

@keyframes blau-scratch-debris-fall {
  0% {
    opacity: 0.95;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--debris-drift), 24px) rotate(210deg) scale(0.45);
  }
}

.coupon-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 7px 0;
  gap: 6px;
  color: #7bd58a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.coupon-divider::before,
.coupon-divider::after {
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(123 213 138 / 48%));
}

.coupon-divider::after {
  transform: scaleX(-1);
}

.coupon-register {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 10px;
  padding: 8px 10px;
  background: linear-gradient(145deg, var(--brand-green-hover), var(--brand-green));
  border: 1px solid rgb(142 225 99 / 42%);
  border-radius: 7px;
  box-shadow:
    inset 0 1px rgb(255 255 255 / 19%),
    0 7px 15px rgb(39 124 17 / 22%);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.coupon-note {
  display: block;
  margin: 7px 3px 0;
  color: #919d93;
  font-size: 8px;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-promo-coupon {
    max-width: 100%;
  }

  .scratch-card {
    height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scratch-card,
  .scratch-canvas,
  .scratch-tool,
  .scratch-debris i,
  .coupon-auto-status span {
    animation: none;
    transition: none;
  }
}

/* Final app CTA typography: identical two-line wrapping with optically centred text. */
.app-banner-btn,
.app-download-btn {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  width: min(100%, 290px);
  min-height: 58px;
  padding: 9px 15px;
  gap: 10px;
  font-size: 13px;
  line-height: 1.08;
  white-space: normal;
}

.app-banner-btn img,
.app-download-btn img {
  flex-basis: 24px;
  width: 24px;
  height: 24px;
}

.app-banner-btn::after,
.app-download-btn::after {
  width: 24px;
}

.app-banner-btn span,
.app-download-btn span {
  display: grid;
  justify-items: center;
  gap: 3px;
  min-width: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: center;
}

.app-banner-btn small,
.app-banner-btn strong,
.app-download-btn small,
.app-download-btn strong {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
}

.app-banner-android span::before,
.app-banner-ios span::before {
  content: none;
}

.app-banner-btn strong::before {
  content: "";
}

@media (max-width: 767px) {
  .app-banner-btn,
  .app-download-btn {
    grid-template-columns: 22px minmax(0, 1fr) 22px;
    width: 100%;
    min-height: 56px;
    padding: 8px 10px;
    gap: 7px;
    font-size: 12px;
  }

  .app-banner-btn img,
  .app-download-btn img {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .app-banner-btn::after,
  .app-download-btn::after {
    width: 22px;
  }
}
@keyframes blau-mega-orbit{to{transform:rotate(360deg)}}@keyframes blau-mega-coin{0%{transform:translateY(-10vh) rotateY(0);opacity:0}12%{opacity:1}100%{transform:translateY(115vh) rotateY(900deg);opacity:.2}}@keyframes blau-mega-number{from{opacity:0;transform:translateY(24px) scale(.7)}to{opacity:1;transform:none}}.prize-digit{display:block;width:.66em;height:1em;overflow:hidden}.prize-digit-track{display:flex;flex-direction:column;animation:blau-mega-counter-roll 1.7s cubic-bezier(.14,.78,.2,1) var(--counter-delay) both}.prize-digit-track i{display:block;flex:0 0 1em;height:1em;font-style:normal;line-height:1;text-align:center}.prize-firework-left{left:5%}.prize-firework-right{right:5%}
@keyframes blau-mega-rays{from{transform:translate(-50%,-50%) scale(.88) rotate(0)}to{transform:translate(-50%,-50%) scale(.88) rotate(360deg)}}@keyframes blau-mega-pulse{0%,100%{opacity:.35;transform:scale(.82)}50%{opacity:1;transform:scale(1.08)}}@keyframes blau-mega-burst{0%,100%{transform:translate(-50%,-50%) scale(.94)}50%{transform:translate(-50%,-50%) scale(1.05)}}@keyframes blau-mega-firework{0%{opacity:0;transform:translate(-50%,-100%) rotate(var(--spark-angle)) scaleY(.1)}28%{opacity:1}72%{opacity:.9;transform:translate(-50%,-100%) rotate(var(--spark-angle)) scaleY(1)}100%{opacity:0;transform:translate(-50%,-100%) rotate(var(--spark-angle)) scaleY(1.22)}}@keyframes blau-mega-counter-roll{from{transform:translateY(0)}to{transform:translateY(calc(var(--final-index) * -1em))}}
@media (max-width: 640px){.prize-firework-left{left:-38px}.prize-firework-right{right:-38px}}
@media (prefers-reduced-motion: reduce){.prize-digit-track{animation:none}.prize-digit-track{transform:translateY(calc(var(--final-index) * -1em))}}
/* Responsive containment keeps long localized headings inside the viewport. */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-shell,
  .site-article,
  .content-flow,
  .article-flow,
  .site-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body .hero-copy {
    width: calc(100vw - (var(--page-gutter) * 2) - 20px);
    max-width: 680px;
    min-width: 0;
  }

  .site-hero h1,
  .site-hero p,
  .hero-breadcrumbs,
  .hero-rating {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  body .hero-copy {
    width: calc(100vw - 40px);
    padding: 20px 14px;
  }

  .site-hero h1 {
    font-size: clamp(23px, 7.2vw, 28px);
  }
}

@media (max-width: 900px) {
  body .hero-copy {
    flex: 0 1 auto;
    width: calc(100% - 20px);
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
  }

  .hero-actions,
  .hero-actions .article-btn {
    max-width: 100%;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .site-nav {
    gap: 8px;
    padding-inline: 12px;
  }

  .nav-links {
    gap: 3px;
  }

  .nav-links a {
    padding-inline: 9px;
  }

  .nav-link-icon {
    display: none;
  }

  .site-auth {
    gap: 6px;
  }

  .site-auth .btn {
    padding-inline: 12px;
  }
}

/* END MULTISITE MEGA PRIZE */

/* Neutral image treatment: preserve natural photography without coloured washes. */
.site-hero::after {
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 68%) 0%,
    rgb(0 0 0 / 52%) 38%,
    rgb(0 0 0 / 20%) 66%,
    transparent 100%
  );
}

.editorial-media::after {
  background: linear-gradient(180deg, transparent 68%, rgb(0 0 0 / 28%));
  box-shadow: inset 0 0 32px rgb(0 0 0 / 12%);
}

.promo-banner-card::after {
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 64%) 0%,
    rgb(0 0 0 / 46%) 32%,
    rgb(0 0 0 / 15%) 56%,
    transparent 78%
  );
}

.promo-banner-card.promo-copy-opposite::after {
  background: linear-gradient(
    270deg,
    rgb(0 0 0 / 64%) 0%,
    rgb(0 0 0 / 46%) 32%,
    rgb(0 0 0 / 15%) 56%,
    transparent 78%
  );
}

.platform-banner-card::after {
  background:
    linear-gradient(
      90deg,
      rgb(0 0 0 / 68%) 0%,
      rgb(0 0 0 / 34%) 28%,
      rgb(0 0 0 / 6%) 46% 54%,
      rgb(0 0 0 / 34%) 72%,
      rgb(0 0 0 / 68%) 100%
    );
}

.article-section h2,
.content-section h2,
.reviews-section > h2 {
  background: #07111f;
}

@media (max-width: 900px) {
  .site-hero::after {
    background: linear-gradient(
      180deg,
      rgb(0 0 0 / 20%) 0%,
      rgb(0 0 0 / 62%) 48%,
      rgb(0 0 0 / 74%) 100%
    );
  }
}

/* Application download banners: edge-to-edge imagery with no internal gutters. */
.platform-banner-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* Generated editorial media and section-level conversion actions. */
.editorial-generated {
  margin-block: 22px 14px;
  border-color: rgb(73 196 91 / 42%);
}

.section-cta-row {
  justify-content: center;
  margin: 12px 0 6px;
}

.section-cta-link {
  width: min(100%, 250px);
  min-height: 48px;
  padding-inline: 26px;
  box-shadow: 0 9px 22px rgb(57 199 65 / 20%);
}

@media (max-width: 620px) {
  .editorial-generated {
    height: clamp(210px, 62vw, 285px);
    margin-block: 18px 10px;
  }

  .section-cta-row,
  .section-cta-link {
    width: 100%;
  }
}
/* Canada legal content uses the donor layout while keeping each text group
   visually contained and readable at long-form widths. */
.legal-article {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.legal-intro {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-left: 4px solid var(--accent-bright, #d33251);
  border-radius: 8px;
  background: #202423;
  color: #f2f4f3;
  line-height: 1.65;
}

.legal-article .content-section {
  margin: 0;
}

.editorial-review {
  margin-block: 14px;
}

@media (max-width: 860px) {
  .legal-intro {
    padding: 15px 16px;
  }
}

/* Promo banner composition follows the subject in each Canada artwork.
   Photography stays untinted; only compact neutral copy panels are used on
   narrower screens where the available negative space is reduced. */
.promo-banner-card,
.promo-banner-card.promo-copy-opposite {
  background: #080a0c;
}

.promo-banner-card::after,
.promo-banner-card.promo-copy-opposite::after {
  content: none;
  background: none;
  opacity: 0;
}

.promo-banner-image,
.promo-banner-card.promo-img-right .promo-banner-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transform: none;
}

.promo-banner-copy,
.promo-banner-card.promo-copy-opposite .promo-banner-copy {
  position: relative;
  z-index: 1;
  width: min(42%, 470px);
  margin-right: auto;
  margin-left: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
  text-shadow: 0 2px 12px rgb(0 0 0 / 92%);
}

.promo-banner-card.promo-copy-opposite .promo-banner-copy {
  margin-right: 0;
  margin-left: auto;
}

@media (max-width: 900px) {
  .promo-banner-card {
    padding: 18px;
  }

  .promo-banner-copy,
  .promo-banner-card.promo-copy-opposite .promo-banner-copy {
    width: min(48%, 360px);
    margin-right: auto;
    margin-left: 0;
    padding: 16px;
    align-items: center;
    background: rgb(5 7 9 / 76%);
    border: 1px solid rgb(255 255 255 / 13%);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgb(0 0 0 / 26%);
    backdrop-filter: blur(5px);
    text-align: center;
    text-shadow: 0 2px 8px rgb(0 0 0 / 86%);
  }

  .promo-banner-card.promo-copy-opposite .promo-banner-copy {
    margin-right: 0;
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .promo-banner-card {
    align-items: flex-end;
    min-height: 350px;
    padding: 12px;
  }

  .promo-banner-copy,
  .promo-banner-card.promo-copy-opposite .promo-banner-copy {
    width: min(78%, 300px);
    padding: 13px 14px;
  }
}

/* Canada visual foundation: warm graphite surfaces with red structure and
   green actions. This layer intentionally leaves the logo and photography
   untouched while unifying every shared component across the locale. */
:root {
  --page-bg: #151311;
  --header-bg: #171413;
  --panel-bg: #1c1a18;
  --panel-soft: #25211f;
  --heading-bg: #2b2423;
  --control-bg: #211d1c;
  --light-bg: #f2eee8;
  --text: #f5f1ec;
  --muted: #bdb4ad;
  --dark-text: #171412;
  --accent: #c9364e;
  --accent-hover: #e24b63;
  --accent-soft: #dca5ae;
  --accent-bright: #ef667a;
  --accent-highlight: #ff8999;
  --accent-pale: #ffd9df;
  --signal-blue: #b72e45;
  --signal-blue-hover: #e05268;
  --signal-blue-soft: #f0b5be;
  --brand-green: #38b94f;
  --brand-green-hover: #50cd65;
  --brand-green-active: #247e35;
  --line: #563038;
  --radius: 12px;
  --shadow: 0 18px 42px rgb(5 2 2 / 34%);
}

html {
  background: var(--page-bg);
}

body {
  color: var(--text);
  background-color: var(--page-bg);
  background-image: none;
  letter-spacing: -0.006em;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline-color: rgb(80 205 101 / 76%);
}

.topbar {
  background: rgb(23 20 19 / 94%);
  border-bottom: 1px solid rgb(201 54 78 / 34%);
  box-shadow:
    0 12px 32px rgb(4 2 2 / 44%),
    inset 0 -1px 0 rgb(255 255 255 / 3%);
  backdrop-filter: blur(16px) saturate(120%);
}

.nav-links a {
  border-radius: 10px;
  letter-spacing: 0.035em;
}

.nav-links a:hover,
.nav-links .state-active {
  color: #fff;
  background: rgb(201 54 78 / 11%);
  border-color: rgb(201 54 78 / 28%);
}

.nav-links .state-active::after {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 12px rgb(201 54 78 / 45%);
}

.nav-links a:hover .nav-link-icon,
.nav-links .state-active .nav-link-icon {
  background:
    radial-gradient(circle at 28% 18%, rgb(255 255 255 / 16%), transparent 36%),
    linear-gradient(145deg, #4a222b, #211919 72%);
  border-color: rgb(201 54 78 / 64%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 12%),
    0 8px 20px rgb(99 18 34 / 34%),
    0 0 0 3px rgb(201 54 78 / 10%);
}

.nav-links a:hover .nav-icon-accent,
.nav-links .state-active .nav-icon-accent {
  fill: var(--brand-green);
  stroke: #c9efd0;
  filter: drop-shadow(0 0 4px rgb(56 185 79 / 74%));
}

@keyframes blau-nav-icon-pulse {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%), 0 7px 18px rgb(99 18 34 / 28%), 0 0 0 2px rgb(201 54 78 / 8%);
  }
  50% {
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%), 0 9px 22px rgb(99 18 34 / 40%), 0 0 0 4px rgb(201 54 78 / 13%);
  }
}

.tool-button,
.language-switch,
.ghost {
  background: linear-gradient(145deg, #282220, #191716);
  border: 1px solid rgb(255 255 255 / 8%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%);
}

.language-switch:hover,
.language-switch:focus-visible,
.ghost:hover {
  background: #312324;
  border-color: rgb(201 54 78 / 62%);
}

.page-shell {
  gap: 22px;
  padding-top: 10px;
}

.article-sidebar,
.right-sidebar {
  scrollbar-color: var(--accent) transparent;
}

.article-nav-nav,
.sport-side-toggle,
.app-platforms {
  background: linear-gradient(160deg, #28201f, #171514 72%);
  border-color: rgb(201 54 78 / 30%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 4%),
    0 14px 30px rgb(5 2 2 / 28%);
}

.sports-quick-row,
.top-game-header,
.sports-catalog-header,
.sports-tabs {
  background: #201c1b;
}

.sports-quick-row:hover,
.sports-quick-row.state-open {
  background: #342528;
  border-color: rgb(201 54 78 / 45%);
}

.sports-row-arrow {
  background: #171514;
  border-left-color: rgb(255 255 255 / 8%);
}

.right-sidebar-body {
  gap: 16px;
}

.registration-card,
.bet-slip {
  color: var(--text);
  background: linear-gradient(155deg, #24201e, #151312 76%);
  border-color: rgb(201 54 78 / 30%);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 5%),
    0 18px 36px rgb(5 2 2 / 34%);
}

.registration-card h2,
.bet-slip-heading {
  color: var(--text);
  letter-spacing: 0.04em;
}

.registration-card input,
.registration-card select,
.signup-field,
.bet-slip-empty {
  color: #1a1715;
  background: #f4f0ea;
  border: 1px solid rgb(201 54 78 / 12%);
  box-shadow: inset 0 1px 3px rgb(53 32 27 / 8%);
}

.signup-placeholder {
  color: #756d67;
}

.phone-method,
.bet-slip-tabs,
.signup-promo {
  color: var(--text);
  background: #2b2423;
}

.bet-slip-tabs a:first-child {
  background: rgb(201 54 78 / 16%);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.bet-slip-body {
  color: var(--text);
  background: transparent;
}

.bet-slip-save {
  color: var(--muted);
  border-color: rgb(255 255 255 / 12%);
}

.article-section,
.content-section,
.reviews-section,
.home-app-banner,
.bonus-banner-section,
.bonus-final-cta {
  margin-bottom: 24px;
  padding: clamp(18px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 100% 0%, rgb(56 185 79 / 5%), transparent 28rem),
    linear-gradient(150deg, #211e1c, #181615 74%);
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 4%),
    0 20px 44px rgb(5 2 2 / 28%);
}

.article-section h2,
.content-section h2,
.reviews-section > h2 {
  margin-bottom: 24px;
  padding: 11px 16px 11px 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgb(201 54 78 / 18%), transparent 58%),
    #292321;
  border: 1px solid rgb(201 54 78 / 20%);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
  font-size: clamp(22px, 2.3vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.article-section h2::before,
.content-section h2::before,
.reviews-section > h2::before {
  top: 10px;
  bottom: 10px;
  left: 13px;
  width: 4px;
  height: auto;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 0 12px rgb(201 54 78 / 30%);
  transform: none;
}

.article-section h3,
.content-section h3 {
  margin-top: 30px;
  color: #fff;
  font-size: clamp(19px, 1.7vw, 23px);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.article-section p,
.content-section p,
.article-section li,
.content-section li {
  color: #e8e2dc;
  line-height: 1.68;
  text-wrap: pretty;
}

.article-source-block > ul[data-source-list] > li,
.article-source-block > ol[data-source-list] > li {
  padding-top: 9px;
  padding-right: 12px;
  padding-bottom: 9px;
  background: rgb(255 255 255 / 2.6%);
  border: 1px solid rgb(255 255 255 / 6%);
  border-radius: 9px;
}

.article-source-block > ul[data-source-list] > li::before {
  background: var(--accent);
  border-color: #f2b6c0;
  box-shadow: 0 0 0 3px rgb(201 54 78 / 12%), 0 0 10px rgb(201 54 78 / 28%);
}

.article-source-block > ol[data-source-list] > li::before {
  top: 8px;
  left: 7px;
  background: linear-gradient(145deg, var(--brand-green-hover), var(--brand-green-active));
  border-color: rgb(164 226 175 / 58%);
}

/* Editorial lists: scoped to article copy so navigation and carousels stay untouched. */
.content-section > ul,
.content-section > ol,
.content-section .article-source-block > ul,
.content-section .article-source-block > ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: article-step;
}

.content-section > ul > li,
.content-section > ol > li,
.content-section .article-source-block > ul > li,
.content-section .article-source-block > ol > li {
  position: relative;
  min-height: 46px;
  margin: 0;
  padding: 11px 14px 11px 52px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgb(255 255 255 / 4%), transparent 62%),
    rgb(12 12 12 / 34%);
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 11px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
}

.content-section > ul > li::before,
.content-section > ol > li::before,
.content-section .article-source-block > ul > li::before,
.content-section .article-source-block > ol > li::before {
  position: absolute;
  top: 13px;
  left: 17px;
  display: grid;
  width: 21px;
  height: 21px;
  padding: 0;
  place-items: center;
  border-radius: 7px;
  box-sizing: border-box;
}

.content-section > ul > li::before,
.content-section .article-source-block > ul > li::before {
  content: "";
  background:
    radial-gradient(circle, #fff 0 2px, transparent 3px),
    linear-gradient(145deg, var(--accent-bright), var(--accent));
  border: 1px solid rgb(255 255 255 / 24%);
  box-shadow: 0 0 0 4px rgb(201 54 78 / 10%);
}

.content-section > ol > li,
.content-section .article-source-block > ol > li {
  counter-increment: article-step;
}

.content-section > ol > li::before,
.content-section .article-source-block > ol > li::before {
  content: counter(article-step, decimal-leading-zero);
  color: #07130a;
  background: linear-gradient(145deg, #79dc8b, var(--brand-green-active));
  border: 1px solid rgb(209 255 217 / 40%);
  box-shadow: 0 0 0 4px rgb(56 185 79 / 9%);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

/* Repeated H4 + copy patterns become a quiet editorial sequence, not generic cards everywhere. */
.pattern-series {
  counter-reset: pattern-item;
}

.pattern-item {
  margin: 22px 0 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(56 185 79 / 7%), rgb(255 255 255 / 1.6%) 72%);
  border: 1px solid rgb(104 211 123 / 17%);
  border-radius: 12px;
  counter-increment: pattern-item;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
}

.pattern-item > h4 {
  position: relative;
  margin: 0;
  padding: 13px 16px 13px 54px;
  color: #fff;
  background: linear-gradient(90deg, rgb(56 185 79 / 13%), rgb(255 255 255 / 2%) 72%);
  border: 0;
  border-bottom: 1px solid rgb(104 211 123 / 14%);
  font-size: clamp(17px, 1.45vw, 20px);
  letter-spacing: -0.01em;
}

.pattern-item > h4::before {
  content: counter(pattern-item, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--brand-green-hover);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: translateY(-50%);
}

.pattern-item > .article-source-block {
  margin: 0;
  padding: 0 16px 0 54px;
}

.pattern-item > .article-source-block:first-of-type {
  padding-top: 10px;
}

.pattern-item > .article-source-block:last-child {
  padding-bottom: 14px;
}

.pattern-item > ul,
.pattern-item > ol {
  margin: 0;
  padding: 10px 16px 14px 54px;
  list-style-position: inside;
}

.pattern-item > .article-source-block > p:first-child {
  margin-top: 8px;
}

.pattern-item > .article-source-block > p:last-child {
  margin-bottom: 8px;
}

.article-scene-media,
.section-visual,
.payment-visual,
.vip-program-visual,
.editorial-generated {
  border-color: rgb(201 54 78 / 34%);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgb(5 2 2 / 30%);
}

.site-table-wrap,
.table-scroll {
  overflow: hidden;
  border: 1px solid rgb(201 54 78 / 22%);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgb(5 2 2 / 28%);
}

table {
  color: var(--text);
  background: #201d1b;
}

th,
td {
  border-color: rgb(255 255 255 / 8%);
}

th {
  color: #fff;
  background: #342527;
  box-shadow: inset 0 -2px 0 rgb(201 54 78 / 40%);
}

tr:nth-child(even) td {
  background: #272320;
}

tr:nth-child(odd) td {
  background: #211e1c;
}

.install-note {
  background: #292321;
  border-left-color: var(--brand-green);
}

.reviews-section {
  background:
    radial-gradient(circle at 96% 0%, rgb(201 54 78 / 10%), transparent 36%),
    linear-gradient(145deg, #211d1c, #141211 72%);
  border-color: rgb(201 54 78 / 18%);
}

.reviews-section > .review-card + .review-card {
  margin-top: 16px;
}

.reviews-track > .review-card {
  background:
    radial-gradient(circle at 100% 0%, rgb(56 185 79 / 10%), transparent 42%),
    linear-gradient(155deg, #292320, #181514 74%);
  border-color: rgb(201 54 78 / 20%);
  box-shadow: inset 4px 0 0 var(--accent), 0 16px 34px rgb(5 2 2 / 34%);
}

.review-author,
.reviews-section > h2 {
  border-color: rgb(201 54 78 / 18%);
}

.review-author::before {
  background: linear-gradient(145deg, var(--accent-bright), #98253a);
  border-color: rgb(255 210 218 / 34%);
}

.review-author::after,
.review-stars {
  color: var(--brand-green-hover);
}

.faq-item {
  background: linear-gradient(145deg, #2a2422, #1b1817);
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 10px;
}

.faq-item[open] {
  border-color: rgb(201 54 78 / 32%);
  box-shadow: inset 3px 0 0 var(--accent);
}

.faq-item summary::after {
  color: var(--brand-green-hover);
}

.promo-banner-card,
.platform-banner-card,
.site-hero {
  border-color: rgb(201 54 78 / 26%);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgb(5 2 2 / 38%);
}

.promo-banner-cta,
.section-cta-link,
.app-banner-btn,
.app-download-btn,
.registration-card .signup-button,
.bet-slip .signup-button,
.site-hot {
  border-radius: 9px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 18%),
    0 8px 20px rgb(20 100 37 / 24%);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.promo-banner-cta:hover,
.section-cta-link:hover,
.app-banner-btn:hover,
.app-download-btn:hover,
.registration-card .signup-button:hover,
.bet-slip .signup-button:hover,
.site-hot:hover {
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 22%),
    0 12px 26px rgb(20 100 37 / 34%);
  transform: translateY(-2px);
}

.promo-banner-cta:active,
.section-cta-link:active,
.app-banner-btn:active,
.app-download-btn:active,
.registration-card .signup-button:active,
.bet-slip .signup-button:active,
.site-hot:active {
  transform: translateY(1px) scale(0.985);
}

.footer-columns,
.legacy-footer-notice,
.footer-legal-row,
.footer-payments {
  background:
    radial-gradient(circle at 0 0, rgb(201 54 78 / 8%), transparent 25rem),
    #191615;
  border: 1px solid rgb(255 255 255 / 6%);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgb(5 2 2 / 24%);
}

.legacy-footer-column h3 {
  color: #fff;
  letter-spacing: 0.05em;
}

.legacy-footer-column a:hover {
  color: var(--brand-green-hover);
}

.site-cookie {
  background: rgb(33 29 27 / 96%);
  border: 1px solid rgb(201 54 78 / 28%);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgb(5 2 2 / 46%);
  backdrop-filter: blur(14px);
}

@media (hover: hover) {
  .article-section:hover,
  .content-section:hover {
    border-color: rgb(201 54 78 / 16%);
  }
}

@media (max-width: 900px) {
  .page-shell {
    padding-top: 16px;
  }

  .article-section,
  .content-section,
  .reviews-section,
  .home-app-banner,
  .bonus-banner-section,
  .bonus-final-cta {
    padding: 16px;
    border-radius: 13px;
  }

  .article-section h2,
  .content-section h2,
  .reviews-section > h2 {
    font-size: clamp(20px, 5vw, 25px);
  }

  .content-section > ul > li,
  .content-section > ol > li,
  .content-section .article-source-block > ul > li,
  .content-section .article-source-block > ol > li {
    padding: 10px 11px 10px 45px;
  }

  .content-section > ul > li::before,
  .content-section > ol > li::before,
  .content-section .article-source-block > ul > li::before,
  .content-section .article-source-block > ol > li::before {
    left: 13px;
  }

  .pattern-item > h4 {
    padding-left: 46px;
  }

  .pattern-item > .article-source-block,
  .pattern-item > ul,
  .pattern-item > ol {
    padding-left: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-banner-cta,
  .section-cta-link,
  .app-banner-btn,
  .app-download-btn,
  .registration-card .signup-button,
  .bet-slip .signup-button,
  .site-hot {
    transition: none;
  }
}

/* Final narrow-viewport containment after all theme layers. */
@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  body .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  body .site-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
}

/* Generated editorial scenes stay inside their related article sections. */
.section-media {
  height: clamp(230px, 28vw, 340px);
  margin-block: 22px 14px;
  border-color: rgb(201 54 78 / 34%);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgb(5 2 2 / 30%);
}

.section-media::after {
  background: linear-gradient(180deg, transparent 72%, rgb(0 0 0 / 22%));
}

.section-actions {
  display: flex;
  justify-content: center;
  margin: 14px 0 6px;
}

.section-actions .section-cta {
  width: min(100%, 260px);
  min-height: 46px;
  padding: 10px 24px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
  box-shadow: 0 10px 24px rgb(201 54 78 / 22%);
}

@media (max-width: 620px) {
  .section-media {
    height: clamp(210px, 62vw, 285px);
    margin-block: 18px 10px;
  }

  .section-actions,
  .section-actions .section-cta {
    width: 100%;
  }
}

@keyframes blau-live-signal-pulse {
  0%, 100% {
    opacity: .62;
    transform: scale(.82);
    box-shadow: 0 0 0 2px rgb(53 169 83 / 8%);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 4px rgb(53 169 83 / 18%);
  }
}

/* Monochrome live-casino provider wall in the shared site-footer. */
.footer-providers {
  margin: 30px 0 22px;
  padding: 26px;
  overflow: hidden;
  color: #f1f2f2;
  background: #111315;
  border: 1px solid #303438;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
}

.footer-providers h2 {
  margin: 0;
  color: #f5f6f6;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.provider-intro {
  margin: 8px 0 22px;
  color: #969ba0;
  font-size: 14px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 0;
  background: #171a1d;
  list-style: none;
}

.provider-card {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 88px;
  padding: 14px 10px;
  color: #aeb2b5;
  background: #171a1d;
  box-shadow: inset 0 0 0 1px #34383c, inset 0 1px 0 rgb(255 255 255 / 3%);
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.provider-card span {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(11px, 1.15vw, 16px);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

.provider-card-2 span,
.provider-card-5 span,
.provider-card-9 span,
.provider-card-14 span,
.provider-card-15 span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: none;
}

.provider-card-3 span,
.provider-card-6 span,
.provider-card-10 span,
.provider-card-17 span {
  letter-spacing: 0.11em;
}

.provider-card-7 span,
.provider-card-11 span,
.provider-card-13 span {
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (hover: hover) {
  .provider-card:hover {
    z-index: 1;
    color: #fff;
    background: #202428;
    box-shadow: inset 0 0 0 1px #555b60, 0 8px 20px rgb(0 0 0 / 24%);
  }
}

@media (max-width: 900px) {
  .footer-providers {
    padding: 20px;
  }

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

@media (max-width: 620px) {
  .footer-providers {
    margin-block: 24px 18px;
    padding: 16px;
    border-radius: 13px;
  }

  .provider-intro {
    margin-bottom: 16px;
    font-size: 12px;
  }

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

  .provider-card {
    min-height: 72px;
  }

  .provider-card span {
    font-size: 11px;
  }
}

/* Unified site-footer surface and the generated live-casino provider artwork. */
.site-footer {
  padding-top: 22px;
  background: var(--page-bg);
}

.footer-inner {
  overflow: hidden;
  background: var(--panel-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%), 0 18px 42px rgb(0 5 12 / 30%);
}

.footer-columns,
.footer-providers,
.legacy-footer-notice,
.footer-legal-row,
.footer-payments {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-columns,
.footer-providers,
.legacy-footer-notice,
.footer-legal-row,
.footer-payments {
  padding: 22px 26px;
}

.footer-providers,
.legacy-footer-notice,
.footer-legal-row,
.footer-payments {
  border-top: 1px solid #272c2e;
}

.provider-intro {
  margin-bottom: 18px;
}

.provider-logo-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: #293033;
  border: 1px solid #303638;
}

.provider-logo-item {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  padding: 1px 8px;
  object-fit: contain;
  background: #0c1112;
}

.provider-logo-grid::after {
  content: "";
  background: #0c1112;
}

@media (max-width: 900px) {
  .provider-logo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-top: 14px;
  }

  .footer-inner {
    border-radius: 12px;
  }

  .footer-columns,
  .footer-providers,
  .legacy-footer-notice,
  .footer-legal-row,
  .footer-payments {
    padding: 18px 16px;
  }

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

  .provider-logo-item {
    height: 72px;
    padding: 9px 6px;
  }
}

/* Plain app-author signature: editorial credit, not an accordion control. */
.app-author {
  display: grid;
  margin: 18px 0 6px;
  padding: 0;
  gap: 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.app-author strong {
  color: #f4f5f4;
  font-size: 15px;
}

.app-author em {
  color: #c7cbca;
  font-size: 14px;
}

/* Low in-article game ribbons based on the compact Vave casino rail. */
.article-sidebar.state-collapsed {
  width: 42px;
  max-height: calc(100dvh - var(--header-height) - 24px);
  padding-bottom: 4px;
  gap: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #101318;
  scrollbar-width: none;
}

.article-sidebar.state-collapsed::-webkit-scrollbar {
  display: none;
}

.article-sidebar.state-collapsed .sports-sidebar {
  width: 42px;
  gap: 5px;
}

.article-sidebar.state-collapsed .sport-side-toggle {
  width: 34px;
  min-height: 32px;
  margin-inline: 4px;
  color: #d7d9dc;
  background: #191c22;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
}

.article-sidebar.state-collapsed .sports-sidebar-body {
  display: grid;
  gap: 5px;
}

.article-sidebar.state-collapsed .sports-quick-links {
  gap: 4px;
  padding-inline: 4px;
}

.article-sidebar.state-collapsed .sports-quick-row {
  display: grid;
  place-items: center;
  width: 34px;
  min-height: 32px;
  height: 32px;
  padding: 0;
  color: #f3f4f5;
  background: #22262d;
  border: 0;
  border-radius: 6px;
}

.article-sidebar.state-collapsed .sports-quick-row > span:not(:first-child) {
  display: none;
}

.article-sidebar.state-collapsed .sports-quick-icon {
  display: grid;
  place-items: center;
  width: 100%;
  flex-basis: auto;
}

.article-sidebar.state-collapsed .sports-quick-icon .bet-aside-icon {
  width: 18px;
  height: 18px;
}

.article-sidebar.state-collapsed .top-game-card {
  display: none;
}

.article-sidebar.state-collapsed .sports-catalog {
  display: grid;
  overflow: visible;
  background: #fff;
  border-radius: 0;
}

.article-sidebar.state-collapsed .sports-tabs {
  display: grid;
  grid-template-columns: 42px;
  min-height: 32px;
  padding: 0 4px;
  background: #101318;
}

.article-sidebar.state-collapsed .sports-tabs a {
  width: 34px;
  min-height: 32px;
  color: #8fd637;
  background: #22272d;
  border-radius: 5px 5px 0 0;
  font-size: 0;
}

.article-sidebar.state-collapsed .sports-tabs a:not(.state-active) {
  display: none;
}

.article-sidebar.state-collapsed .sports-tabs .state-active span {
  display: grid;
  place-items: center;
  margin: 0;
  color: #8fd637;
}

.article-sidebar.state-collapsed .sports-tabs .bet-aside-icon {
  width: 18px;
  height: 18px;
  margin: 0;
}

.article-sidebar.state-collapsed .sports-summary {
  display: grid;
  grid-template-columns: 42px;
  min-height: 38px;
  padding: 0;
  gap: 0;
  color: #101214;
  background: #fff;
  border-bottom: 1px solid #d9ddda;
}

.article-sidebar.state-collapsed .sports-summary > :not(strong) {
  display: none;
}

.article-sidebar.state-collapsed .sports-summary > strong {
  display: grid;
  place-items: center;
  width: 42px;
  min-height: 38px;
  font-size: 0;
}

.article-sidebar.state-collapsed .sports-summary-tv {
  display: block;
  width: 16px;
  height: 16px;
  color: #4d5357;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-sidebar.state-collapsed .sports-list-heading {
  display: none;
}

.article-sidebar.state-collapsed .sports-list {
  display: grid;
  width: 42px;
}

.article-sidebar.state-collapsed .sport-row {
  display: grid;
  grid-template-columns: 42px;
  place-items: center;
  width: 42px;
  min-height: 32px;
  padding: 0;
  color: #050606;
  background: #fff;
  border-top: 1px solid #e1e5e2;
}

.article-sidebar.state-collapsed .sport-row > span:not(:first-child) {
  display: none;
}

.article-sidebar.state-collapsed .sport-row-icon {
  display: grid;
  place-items: center;
  width: 42px;
}

.article-sidebar.state-collapsed .sport-row-icon .bet-aside-icon {
  width: 18px;
  height: 18px;
}

.article-sidebar.state-collapsed .sport-row:hover,
.article-sidebar.state-collapsed .sport-row:focus-visible {
  color: #238a43;
  background: #eef6ef;
}

.right-sidebar.state-collapsed {
  width: 42px;
  max-height: calc(100dvh - var(--header-height) - 24px);
  padding-bottom: 4px;
  gap: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #101318;
  scrollbar-width: none;
}

.right-sidebar.state-collapsed::-webkit-scrollbar {
  display: none;
}

.right-sidebar.state-collapsed .sport-side-toggle {
  width: 34px;
  min-height: 32px;
  margin-inline: 4px;
  color: #d7d9dc;
  background: #191c22;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
}

.right-sidebar.state-collapsed .right-sidebar-body {
  display: grid;
  justify-items: center;
  width: 100%;
  gap: 5px;
}

.right-sidebar.state-collapsed .registration-card {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.right-sidebar.state-collapsed .registration-card > :not(.signup-button) {
  display: none;
}

.right-sidebar.state-collapsed .registration-card .signup-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  max-width: 34px;
  min-height: 100px;
  max-height: 100px;
  height: 100px;
  margin: 0;
  padding: 8px 0;
  overflow: hidden;
  color: #fff;
  background: #35a953;
  border: 0;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: none;
}

.right-sidebar.state-collapsed .bet-slip {
  display: block;
  width: 100%;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.right-sidebar.state-collapsed .bet-slip-body {
  display: none;
}

.right-sidebar.state-collapsed .bet-slip-tabs {
  display: grid;
  justify-items: center;
  grid-template-columns: 42px;
  background: transparent;
}

.right-sidebar.state-collapsed .bet-slip-tabs a:not(:first-child) {
  display: none;
}

.right-sidebar.state-collapsed .bet-slip-tabs a:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-height: 82px;
  height: 82px;
  margin-inline: 0;
  padding: 7px 0;
  color: #f1f2f3;
  background: #252930;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.right-sidebar.state-collapsed .site-promo-coupon {
  display: grid;
  place-items: center;
  width: 42px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.right-sidebar.state-collapsed .site-promo-coupon .coupon-body {
  display: none;
}

.right-sidebar.state-collapsed .site-promo-coupon .coupon-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-height: 88px;
  height: 88px;
  flex-direction: column;
  margin-inline: 0;
  padding: 7px 0 6px;
  gap: 4px;
  color: #fff;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 12%), transparent 32%),
    linear-gradient(155deg, #7f263b, #311a25 68%, #17161d);
  border: 1px solid rgb(233 88 116 / 48%);
  border-radius: 9px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 14%),
    0 5px 12px rgb(0 0 0 / 32%),
    0 0 0 2px rgb(201 54 78 / 8%);
  font-size: 10px;
  line-height: 1;
}

.right-sidebar.state-collapsed .site-promo-coupon .coupon-header div {
  display: grid;
  place-items: center;
  min-height: 52px;
}

.right-sidebar.state-collapsed .site-promo-coupon .coupon-header strong {
  display: grid;
  place-items: center;
  width: 100%;
  font-size: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.right-sidebar.state-collapsed .site-promo-coupon .coupon-header strong::after {
  content: "COUPON";
  display: block;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 1px 3px rgb(0 0 0 / 50%);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.right-sidebar.state-collapsed .site-promo-coupon .coupon-header small {
  display: none;
}

.right-sidebar.state-collapsed .site-promo-coupon .coupon-ticket-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #fff;
  filter: drop-shadow(0 0 4px rgb(233 88 116 / 55%));
  transform: none;
}

.right-sidebar.state-collapsed .app-platforms {
  display: grid;
  justify-items: center;
  grid-template-columns: 42px;
  gap: 4px;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.right-sidebar.state-collapsed .app-platforms a,
.right-sidebar.state-collapsed .app-platforms a:first-child {
  display: grid;
  place-items: center;
  width: 34px;
  min-height: 34px;
  height: 34px;
  margin-inline: 0;
  padding: 0;
  color: #fff;
  background: #252930;
  border-radius: 6px;
  font-size: 0;
}

.right-sidebar.state-collapsed .app-platforms img {
  width: 18px;
  height: 18px;
  margin: 0;
}

.content-slot-ribbon {
  width: 100%;
  margin: 18px 0 24px;
  padding: 7px 0;
  overflow: hidden;
  background: #101111;
  border-block: 1px solid rgb(126 27 44 / 62%);
  box-shadow: 0 8px 18px rgb(0 0 0 / 20%);
}

.content-slot-track {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-inline: 6px;
  gap: 6px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  scrollbar-color: #5e252e #151616;
}

.content-slot-track[data-autoplay] {
  scroll-snap-type: none;
}

.content-slot-card {
  display: grid;
  grid-template-rows: 64px 24px;
  flex: 0 0 112px;
  min-width: 0;
  overflow: hidden;
  color: #f5f5f5;
  background: #1b1b1c;
  border: 1px solid #343536;
  border-radius: 6px;
  box-shadow: 0 2px 7px rgb(0 0 0 / 30%);
  scroll-snap-align: start;
  transition: border-color 150ms ease, transform 150ms ease;
}

.content-slot-card img {
  width: 100%;
  height: 64px;
  object-fit: cover;
}

.content-slot-card span {
  display: block;
  min-width: 0;
  padding: 6px 7px 5px;
  overflow: hidden;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-slot-card:hover,
.content-slot-card:focus-visible {
  color: #fff;
  border-color: #c9364e;
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 620px) {
  .content-slot-ribbon {
    width: calc(100% + 20px);
    margin: 14px -10px 20px;
  }

  .content-slot-track {
    padding-inline: 10px;
  }
}

/* Topic-led editorial scenes inserted into long-form article sections. */
.section-scene {
  position: relative;
  width: min(100%, 920px);
  aspect-ratio: 16 / 9;
  margin: 18px auto 22px;
  overflow: hidden;
  background: #071018;
  border: 1px solid rgb(201 54 78 / 48%);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgb(0 0 0 / 30%);
}

.section-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}

.section-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 66%, rgb(2 8 12 / 24%));
  box-shadow: inset 0 0 28px rgb(0 0 0 / 16%);
}

@media (min-width: 1040px) {
  .section-scene-left { margin-left: 0; }
  .section-scene-right { margin-right: 0; }
}

@media (max-width: 620px) {
  .section-scene {
    width: calc(100% + 20px);
    margin: 14px -10px 18px;
    border-radius: 9px;
  }
}

/* Keep wide editorial tables usable on narrow screens. */
.site-table-wrap,
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #151616;
}

.site-table-wrap::-webkit-scrollbar,
.table-scroll::-webkit-scrollbar {
  height: 10px;
}

.site-table-wrap::-webkit-scrollbar-track,
.table-scroll::-webkit-scrollbar-track {
  background: #151616;
  border-radius: 999px;
}

.site-table-wrap::-webkit-scrollbar-thumb,
.table-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #a82d40, var(--accent));
  border: 2px solid #151616;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .site-table-wrap,
  .table-scroll {
    overflow-x: scroll;
  }

  .site-table-wrap table,
  .table-scroll table {
    width: 100%;
    min-width: 680px;
  }
}

/* Natural photography: no coloured wash or full-image darkening. */
.site-hero::after,
.editorial-media::after,
.promo-banner-card::after,
.promo-banner-card.promo-copy-opposite::after,
.platform-banner-card::after,
.section-media::after,
.section-scene::after {
  content: none;
  background: none;
  box-shadow: none;
  opacity: 0;
}

.hero-img,
.editorial-media img,
.promo-banner-image,
.platform-banner-image,
.section-media img,
.section-scene img,
.section-visual,
.payment-visual,
.vip-program-visual {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

/* Tablet and phone promo banners mirror the centred responsive site-hero copy. */
@media (max-width: 1024px) {
  .promo-banner-card,
  .promo-banner-card.promo-copy-opposite {
    align-items: center;
    justify-content: center;
    height: clamp(320px, 48vw, 390px);
    min-height: 320px;
    max-height: none;
    padding: 18px;
  }

  .promo-banner-image,
  .promo-banner-card.promo-img-right .promo-banner-image {
    object-position: 76% center;
  }

  .promo-banner-copy,
  .promo-banner-card.promo-copy-opposite .promo-banner-copy {
    box-sizing: border-box;
    width: calc(100% - 20px);
    max-width: 680px;
    margin: auto;
    padding: 30px 12px;
    align-items: center;
    background: rgb(5 7 9 / 68%);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgb(0 0 0 / 22%);
    text-align: center;
    text-shadow: 0 2px 8px rgb(0 0 0 / 86%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .promo-banner-kicker,
  .promo-banner-title,
  .promo-description {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .promo-banner-card,
  .promo-banner-card.promo-copy-opposite {
    height: clamp(270px, 78vw, 330px);
    min-height: 270px;
    padding: 10px;
  }

  .promo-banner-image,
  .promo-banner-card.promo-img-right .promo-banner-image {
    object-position: 82% center;
  }

  .promo-banner-copy,
  .promo-banner-card.promo-copy-opposite .promo-banner-copy {
    width: calc(100% - 12px);
    max-width: none;
    padding: 30px 12px;
  }

  .promo-banner-kicker {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .promo-banner-title {
    margin-bottom: 11px;
    font-size: clamp(18px, 5.6vw, 22px);
    line-height: 1.06;
  }
}

/* Larger circular locale flag in the language control. */
.language-switch {
  min-height: 48px;
  padding: 4px 12px 4px 5px;
  gap: 9px;
}

.language-flag-uz {
  width: 25px;
  height: 25px;
  border-width: 1px;
  border-radius: 50%;
  background: #fff url("../img/vave/content/canada-flag-round.svg") center / cover no-repeat;
}

.language-flag-uz::after {
  content: none;
}

@media (max-width: 900px) {
  .language-switch {
    min-height: 42px;
    padding: 4px 9px 4px 4px;
    gap: 7px;
  }

  .language-flag-uz {
    width: 25px;
    height: 25px;
  }
}

/* Editorial review-card treatment, intentionally distinct from the donor. */
.reviews-section {
  background:
    linear-gradient(115deg, rgb(201 54 78 / 9%), transparent 32%),
    linear-gradient(155deg, #221d1c, #121110 76%);
}

.reviews-track {
  gap: 22px;
  padding-block: 10px 22px;
}

.reviews-track > .review-card {
  flex-basis: min(68%, 540px);
  min-height: 248px;
  padding: 0;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 3%), transparent 46%),
    #1b1918;
  border: 1px solid rgb(255 255 255 / 10%);
  border-top: 3px solid var(--accent);
  border-radius: 14px 14px 5px 14px;
  box-shadow: 0 18px 40px rgb(4 2 2 / 38%);
}

.reviews-track > .review-card:nth-child(even) {
  border-top-color: var(--brand-green);
  border-radius: 14px 14px 14px 5px;
}

.reviews-track > .review-card::before {
  content: "“";
  top: 74px;
  right: 24px;
  color: var(--accent-bright);
  opacity: 0.3;
  font-size: 82px;
  font-weight: 700;
}

.reviews-track > .review-card:nth-child(even)::before {
  color: var(--brand-green-hover);
}

.reviews-track > .review-card::after {
  content: none;
}

.reviews-section .review-card p {
  display: flex;
  flex-direction: column;
  min-height: 245px;
}

.review-author {
  order: -1;
  min-height: 68px;
  margin: 0;
  padding: 15px 104px 15px 70px;
  color: #f6f2ef;
  background: rgb(255 255 255 / 2.5%);
  border-top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  font-size: 12px;
  letter-spacing: 0.015em;
}

.review-author::before {
  bottom: 13px;
  left: 18px;
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, #bf344d, #702334);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 9px;
  box-shadow: none;
}

.reviews-track > .review-card:nth-child(even) .review-author::before {
  background: linear-gradient(145deg, #50ba62, #216f35);
}

.review-author::after {
  right: 20px;
  bottom: 26px;
  color: #f0c96b;
  text-shadow: none;
}

.review-quote {
  display: flex;
  flex: 1;
  align-items: center;
  max-width: none;
  padding: 27px 62px 28px 28px;
  color: #e9e3de;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

@media (hover: hover) {
  .reviews-track > .review-card:hover {
    border-color: rgb(255 255 255 / 18%);
    border-top-color: var(--accent-bright);
    box-shadow: 0 22px 46px rgb(4 2 2 / 46%);
    transform: translateY(-3px);
  }

  .reviews-track > .review-card:nth-child(even):hover {
    border-top-color: var(--brand-green-hover);
  }
}

@media (max-width: 700px) {
  .reviews-track > .review-card {
    flex-basis: 88%;
    min-height: 280px;
  }

  .review-author {
    padding-right: 18px;
    padding-bottom: 36px;
  }

  .review-author::after {
    right: auto;
    bottom: 13px;
    left: 70px;
  }

  .review-quote {
    align-items: flex-start;
    padding: 24px 44px 26px 22px;
    font-size: 14px;
  }
}

/* In-article sports image placed between the related paragraphs, not as a banner. */
.article-inline-image {
  width: 100%;
  margin: 18px 0 20px;
  overflow: hidden;
  background: #080b10;
  border: 1px solid rgb(225 54 85 / 42%);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgb(0 0 0 / 30%);
}

.article-inline-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  .article-inline-image {
    margin-block: 14px 16px;
    border-radius: 9px;
  }

  .article-inline-image img {
    aspect-ratio: 16 / 7;
    object-position: 62% center;
  }
}

/* Keep the phone bettor and the handset visible in the narrow editorial crop. */
.editorial-split[data-editorial-image="ca-weekly-rebate.webp"]
  .inline-editorial-media img {
  object-position: 68% center;
}

/* Show the player actively planning the bonus calendar, not the empty table edge. */
.editorial-split[data-editorial-image="ca-weekly-reload.webp"]
  .inline-editorial-media img {
  object-position: 28% center;
}

/* Balance the loyalty tiers with the player assessing them. */
.editorial-split[data-editorial-image="ca-important-terms.webp"]
  .inline-editorial-media img {
  object-position: 34% center;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track > .review-card {
    transition: none;
  }
}


.site-table-wrap,
.table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.reviews-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 0 8px auto;
  padding: 0;
  place-items: center;
  color: #f8f4f1;
  background: #302927;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 9px;
  cursor: pointer;
}

.reviews-toggle:hover,
.reviews-toggle:focus-visible {
  color: #fff;
  background: #3a302e;
  border-color: var(--accent-bright);
  outline: none;
}

/* Final app-button layout: Android left, iOS right, matching two-line copy. */
.platform-banner-card {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-content: initial;
  align-items: center;
  justify-items: initial;
  gap: 20px;
}

.platform-banner-card .app-banner-center {
  display: block;
  grid-column: 2;
  grid-row: 1;
}

.platform-banner-card .app-banner-btn {
  grid-row: 1;
  width: min(100%, 260px);
  min-height: 58px;
  margin: 0;
  white-space: normal;
}

.platform-banner-card .app-banner-android {
  grid-column: 1;
  justify-self: start;
}

.platform-banner-card .app-banner-ios {
  grid-column: 3;
  justify-self: end;
}

.platform-banner-card .app-banner-btn span {
  display: grid;
  justify-items: center;
  gap: 2px;
  line-height: 1.05;
  text-align: center;
}

.platform-banner-card .app-banner-btn small,
.platform-banner-card .app-banner-btn strong {
  display: block;
  color: inherit;
  line-height: 1.05;
}

.platform-banner-card .app-banner-btn small {
  font-size: 10px;
  font-weight: 600;
}

.platform-banner-card .app-banner-btn strong {
  font-size: 13px;
  font-weight: 900;
}

.app-banner-btn strong::before {
  content: none !important;
}

@media (max-width: 767px) {
  .platform-banner-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(150px, 1fr) auto;
    align-content: stretch;
    padding: 18px 12px 12px;
    gap: 10px;
  }

  .platform-banner-card .app-banner-center {
    display: block;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .platform-banner-card .app-banner-btn {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    min-height: 56px;
  }

  .platform-banner-card .app-banner-android {
    grid-column: 1;
  }

  .platform-banner-card .app-banner-ios {
    grid-column: 2;
  }

  .platform-banner-card .app-banner-btn small {
    font-size: 9px;
  }

  .platform-banner-card .app-banner-btn strong {
    font-size: 11px;
  }
}

/* Every green application CTA uses the same icon + two-line component. */
.section-actions .app-download-btn {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  width: min(100%, 260px);
  min-height: 58px;
  padding: 9px 15px;
  gap: 10px;
  text-transform: none;
  white-space: normal;
}

.section-actions .app-download-btn span {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 0;
  line-height: 1.05;
  text-align: center;
}

.section-actions .app-download-btn small,
.section-actions .app-download-btn strong {
  display: block;
  color: inherit;
  line-height: 1.05;
}

.section-actions .app-download-btn small {
  font-size: 10px;
  font-weight: 600;
}

.section-actions .app-download-btn strong {
  font-size: 13px;
  font-weight: 900;
}

.app-banner-btn strong::before,
.app-download-btn strong::before {
  content: none !important;
}

@media (max-width: 767px) {
  .section-actions .app-download-btn {
    grid-template-columns: 22px minmax(0, 1fr) 22px;
    width: 100%;
    min-height: 56px;
    padding: 8px 10px;
    gap: 7px;
  }

  .section-actions .app-download-btn small {
    font-size: 9px;
  }

  .section-actions .app-download-btn strong {
    font-size: 11px;
  }
}

/* Editorial side media for long-form sections. */
.editorial-split{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(220px,.85fr);align-items:stretch;gap:clamp(12px,2vw,28px);min-height:260px;overflow:hidden;border-radius:14px;background:linear-gradient(110deg,rgba(7,20,34,.08),rgba(10,35,57,.14))}
.editorial-split-left{grid-template-columns:minmax(220px,.85fr) minmax(0,1.65fr)}
.editorial-copy{position:relative;z-index:2;align-self:center;min-width:0;padding:clamp(4px,1vw,12px)}
.inline-editorial-media{position:relative;min-width:0;min-height:100%;margin:0;overflow:hidden;box-shadow:0 20px 44px rgb(0 0 0 / 68%),0 0 28px rgb(225 53 84 / 34%);filter:drop-shadow(0 16px 24px rgb(0 0 0 / 56%)) drop-shadow(0 0 18px rgb(225 53 84 / 28%))}
.inline-editorial-media img{display:block;width:100%;height:100%;min-height:260px;object-fit:cover;object-position:center;filter:saturate(.9) contrast(1.03)}
.editorial-split-right .inline-editorial-media{-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 22%,#000 100%);mask-image:linear-gradient(90deg,transparent 0,#000 22%,#000 100%);margin-left:clamp(-28px,-2vw,-12px)}
.editorial-split-left .inline-editorial-media{-webkit-mask-image:linear-gradient(270deg,transparent 0,#000 22%,#000 100%);mask-image:linear-gradient(270deg,transparent 0,#000 22%,#000 100%);margin-right:clamp(-28px,-2vw,-12px)}
.editorial-focus-right .inline-editorial-media img{object-position:82% center}
.editorial-focus-left .inline-editorial-media img{object-position:18% center}
.editorial-split[data-editorial-image="ca-casino-legal.webp"] .inline-editorial-media img{object-position:38% center}
.editorial-split[data-editorial-image="ca-important-terms.webp"] .inline-editorial-media img{object-position:50% center}
.editorial-split[data-editorial-image="ca-weekly-rebate.webp"] .inline-editorial-media{border:0}
@media(min-width:761px){.page-shell:not(.flag-left-sidebar-collapsed):not(.flag-right-sidebar-collapsed) .editorial-split[data-editorial-image="ca-weekly-rebate.webp"] .inline-editorial-media{align-self:center;height:clamp(520px,48vw,650px);min-height:0;margin-right:0;border:0;border-radius:12px;box-shadow:0 24px 52px rgb(0 0 0 / 72%),0 0 34px rgb(225 53 84 / 34%);-webkit-mask-image:linear-gradient(270deg,transparent 0,#000 22%,#000 100%);mask-image:linear-gradient(270deg,transparent 0,#000 22%,#000 100%)}.page-shell:not(.flag-left-sidebar-collapsed):not(.flag-right-sidebar-collapsed) .editorial-split[data-editorial-image="ca-weekly-rebate.webp"] .inline-editorial-media img{content:url("../img/vave/ca-content/ca-weekly-rebate.webp");min-height:0;object-position:56% center;filter:saturate(.96) contrast(1.02) brightness(1.06)}}
@media(min-width:761px){.page-shell:not(.flag-left-sidebar-collapsed):not(.flag-right-sidebar-collapsed) .editorial-split[data-editorial-image="ca-mobile-web.webp"] .inline-editorial-media{align-self:center;height:clamp(520px,48vw,650px);min-height:0;margin-left:0;border-radius:12px}.page-shell:not(.flag-left-sidebar-collapsed):not(.flag-right-sidebar-collapsed) .editorial-split[data-editorial-image="ca-mobile-web.webp"] .inline-editorial-media img{min-height:0;object-position:58% center}}
@media(max-width:760px){.editorial-split[data-editorial-image="ca-mobile-web.webp"] .inline-editorial-media img{object-position:center 40%}}
.editorial-wide{display:flex;flex-direction:column;gap:clamp(14px,2vw,24px);min-height:0;background:transparent}
.editorial-wide .inline-editorial-media{width:100%;height:clamp(260px,34vw,440px);min-height:0;border-radius:12px;-webkit-mask-image:linear-gradient(180deg,#000 0,#000 78%,transparent 100%);mask-image:linear-gradient(180deg,#000 0,#000 78%,transparent 100%)}
.editorial-wide .inline-editorial-media img{width:100%;height:100%;min-height:0;object-fit:cover;object-position:center}
.page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed .editorial-split{display:flex;flex-direction:column;gap:clamp(14px,2vw,24px);min-height:0;background:transparent}
.page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed .editorial-split .inline-editorial-media{order:-1;width:100%;height:clamp(320px,38vw,540px);min-height:0;margin:0;border-radius:12px;-webkit-mask-image:linear-gradient(180deg,#000 0,#000 82%,transparent 100%);mask-image:linear-gradient(180deg,#000 0,#000 82%,transparent 100%)}
.page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed .editorial-split .inline-editorial-media img{width:100%;height:100%;min-height:0;object-fit:cover;object-position:center}
.page-shell.flag-left-sidebar-collapsed.flag-right-sidebar-collapsed .editorial-split .editorial-copy{order:1;width:100%}
@media(max-width:760px){.editorial-split,.editorial-split-left{display:flex;flex-direction:column;gap:8px;min-height:0}.editorial-split .inline-editorial-media{order:-1}.editorial-split .editorial-copy{order:1}.inline-editorial-media{height:clamp(190px,58vw,260px);min-height:0;margin:0!important;-webkit-mask-image:linear-gradient(180deg,#000 0,#000 78%,transparent 100%)!important;mask-image:linear-gradient(180deg,#000 0,#000 78%,transparent 100%)!important;filter:drop-shadow(0 9px 14px rgb(0 0 0 / 42%)) drop-shadow(0 0 10px rgb(215 43 76 / 12%))}.inline-editorial-media img{min-height:0;height:100%;object-position:center}.editorial-copy{padding:0}}

/* Canada red-and-white surface refresh. Brand logo and green actions stay intact. */
:root {
  --theme-blue: #d62949;
  --theme-blue-bright: #ff6f86;
  --theme-blue-deep: #11070a;
  --theme-blue-border: rgb(225 45 76 / 48%);
  --page-bg: #11070a;
  --header-bg: #18090d;
  --panel-bg: #211014;
  --panel-soft: #2c151b;
  --heading-bg: #fff7f8;
  --control-bg: #190b0f;
  --light-bg: #fff8f8;
  --white: #fff;
  --text: #fffafa;
  --muted: #d9c7cb;
  --dark-text: #25090f;
  --accent: #d62949;
  --accent-hover: #ed3f5d;
  --accent-soft: #f3a6b4;
  --accent-bright: #ff617b;
  --accent-highlight: #ff93a5;
  --accent-pale: #ffe2e7;
  --signal-blue: #c6203e;
  --signal-blue-hover: #eb4964;
  --signal-blue-soft: #ffd2da;
  --line: #742536;
  --shadow: 0 20px 46px rgb(44 2 12 / 42%);
}

html,
body {
  background-color: #000;
}

body {
  background-image: none;
  background-attachment: scroll;
}

.topbar {
  background-color: rgb(22 7 11 / 97%);
  background-image: linear-gradient(90deg, rgb(31 9 15 / 98%), rgb(15 6 9 / 97%));
  border-bottom-color: rgb(230 55 86 / 58%);
  box-shadow:
    0 12px 34px rgb(36 2 10 / 58%),
    inset 0 -1px 0 rgb(255 255 255 / 8%);
}

.nav-links a:hover,
.nav-links .state-active {
  color: #fff;
  background: rgb(214 41 73 / 18%);
  border-color: rgb(241 75 104 / 54%);
}

.nav-links .state-active::after {
  background: linear-gradient(90deg, #fff, var(--accent-bright), var(--accent));
  box-shadow: 0 0 14px rgb(226 48 79 / 58%);
}

.tool-button,
.language-switch,
.ghost,
.reviews-toggle {
  color: #fff;
  background: linear-gradient(145deg, #34141c, #17090d);
  border-color: rgb(255 255 255 / 15%);
}

.language-switch:hover,
.language-switch:focus-visible,
.ghost:hover,
.reviews-toggle:hover,
.reviews-toggle:focus-visible {
  background: #441522;
  border-color: rgb(247 79 108 / 72%);
}

.content-slot-card,
.slot-library-card{
  background: #260f15;
  border-color: rgb(232 63 93 / 34%);
}

.article-nav-nav,
.sport-side-toggle,
.app-platforms,
.registration-card,
.bet-slip,
.site-promo-coupon,
.scratch-card {
  border-color: rgb(224 50 81 / 48%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 7%),
    0 16px 36px rgb(43 2 11 / 44%);
}

.article-nav-nav,
.sport-side-toggle,
.app-platforms {
  background: linear-gradient(155deg, #32131b, #16080c 76%);
}

.registration-card,
.bet-slip {
  background: linear-gradient(155deg, #2b1218, #13070a 78%);
}

.sports-quick-row,
.top-game-header,
.sports-catalog-header,
.sports-tabs,
.phone-method,
.bet-slip-tabs,
.signup-promo {
  background-color: #2d1219;
}

.sports-quick-row:hover,
.sports-quick-row.state-open {
  background: #451724;
  border-color: rgb(239 71 101 / 62%);
}

.article-section,
.content-section,
.reviews-section,
.home-app-banner,
.bonus-banner-section,
.bonus-final-cta {
  background:
    radial-gradient(circle at 100% 0%, rgb(225 45 76 / 14%), transparent 28rem),
    radial-gradient(circle at 12% 100%, rgb(255 255 255 / 3%), transparent 22rem),
    linear-gradient(150deg, #2a1117, #14080b 78%);
  border-color: rgb(224 55 86 / 44%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 7%),
    0 20px 48px rgb(43 2 11 / 40%);
}

.article-section h2,
.content-section h2,
.reviews-section > h2 {
  color: #6e1325;
  background:
    linear-gradient(90deg, #fff, #fff5f7 72%, #f7dce2),
    #fff;
  border-color: rgb(255 255 255 / 72%);
  box-shadow:
    inset 4px 0 0 var(--accent),
    0 8px 22px rgb(48 2 12 / 24%);
}

.article-section h2::before,
.content-section h2::before,
.reviews-section > h2::before {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  box-shadow: 0 0 12px rgb(214 41 73 / 36%);
}

.article-section h3,
.content-section h3,
.article-section h4,
.content-section h4 {
  color: #fff;
}

.article-section p,
.content-section p,
.article-section li,
.content-section li {
  color: #f3e8eb;
}

.content-section > ul > li,
.content-section > ol > li,
.content-section .article-source-block > ul > li,
.content-section .article-source-block > ol > li,
.article-source-block > ul[data-source-list] > li,
.article-source-block > ol[data-source-list] > li {
  background:
    linear-gradient(105deg, rgb(220 45 77 / 10%), transparent 62%),
    rgb(20 6 10 / 72%);
  border-color: rgb(242 91 116 / 22%);
}

.faq-item {
  background: linear-gradient(145deg, #30131b, #14080b);
  border-color: rgb(224 55 86 / 42%);
}

.faq-item[open] {
  border-color: rgb(255 100 126 / 66%);
  box-shadow: inset 3px 0 0 var(--accent-bright);
}

.site-hero,
.promo-banner-card,
.platform-banner-card,
.review-card,
.site-table-wrap,
.table-scroll{
  border-color: rgb(225 54 85 / 58%);
  box-shadow: 0 22px 54px rgb(46 2 12 / 52%);
}

.site-hero {
  border-top-color: rgb(255 105 130 / 72%);
}

.site-table-wrap thead,
.table-scroll thead,
.content-section thead {
  color: #fff;
  background: linear-gradient(90deg, #8f1830, #5e1021);
}

/* Review carousel controls remain explicit even when autoplay is paused. */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 10px;
  gap: 8px;
}

.reviews-controls .reviews-control,
.reviews-controls .reviews-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  min-height: 40px;
  margin: 0;
  padding: 0;
  place-items: center;
  color: #fff;
  background: var(--brand-green);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 9px;
  box-shadow: 0 8px 18px rgb(3 42 14 / 34%);
  cursor: pointer;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.reviews-controls .reviews-toggle {
  font-size: 14px;
}

.reviews-controls .reviews-control:hover,
.reviews-controls .reviews-toggle:hover,
.reviews-controls .reviews-control:focus-visible,
.reviews-controls .reviews-toggle:focus-visible {
  color: #fff;
  background: var(--brand-green-hover);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.reviews-controls .reviews-control:active,
.reviews-controls .reviews-toggle:active {
  transform: translateY(1px) scale(.98);
}

.site-table-wrap tbody tr:nth-child(even),
.table-scroll tbody tr:nth-child(even),
.content-section tbody tr:nth-child(even) {
  background: rgb(214 41 73 / 8%);
}

.bonus-terms-section {
  border-top-color: rgb(255 92 119 / 76%) !important;
  background:
    radial-gradient(circle at 94% 4%, rgb(220 41 74 / 20%), transparent 34%),
    linear-gradient(145deg, rgb(43 16 23 / 98%), rgb(19 8 11 / 98%)) !important;
}

.bonus-term-chapter {
  --chapter-line: rgb(237 78 106 / 30%);
}

.bonus-term-chapter::before {
  color: #fff;
  background: linear-gradient(145deg, rgb(185 31 59 / 72%), rgb(63 12 23 / 88%));
  border-color: rgb(255 111 134 / 68%);
  box-shadow: 0 0 0 5px rgb(220 41 74 / 9%), 0 10px 24px rgb(52 2 13 / 30%);
}

.bonus-term-chapter > h3::after {
  background: linear-gradient(90deg, var(--accent-bright), rgb(255 97 123 / 0%));
}

.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgb(220 41 74 / 16%), transparent 32rem),
    #0e0508;
  border-top-color: rgb(225 53 84 / 68%);
}

.footer-columns,
.legacy-footer-notice,
.footer-legal-row,
.footer-payments {
  background:
    radial-gradient(circle at 0 0, rgb(220 41 74 / 10%), transparent 25rem),
    #19090e;
  border-color: rgb(236 76 103 / 25%);
}

.editorial-split {
  background: linear-gradient(110deg, rgb(80 15 29 / 18%), rgb(27 8 13 / 34%));
}

/* Preserve the established green action contract. */
.skip,
.site-hot,
.registration-card .signup-button,
.bet-slip .signup-button,
.promo-banner-cta,
.section-bonus-cta,
.section-cta-link,
.app-banner-btn,
.app-download-btn,
.site-cookie button,
.scroll-top,
.slot-library-play{
  color: #fff;
  background: linear-gradient(145deg, var(--brand-green-hover), var(--brand-green));
  border-color: rgb(143 228 91 / 48%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 24%),
    0 8px 22px rgb(20 100 37 / 30%);
}

.site-hot:hover,
.registration-card .signup-button:hover,
.bet-slip .signup-button:hover,
.promo-banner-cta:hover,
.section-bonus-cta:hover,
.section-cta-link:hover,
.app-banner-btn:hover,
.app-download-btn:hover,
.site-cookie button:hover,
.scroll-top:hover {
  background: linear-gradient(145deg, #64d878, var(--brand-green-hover));
  border-color: rgb(178 244 133 / 68%);
}

@media (max-width: 900px) {
  body .hero-copy {
    background: rgb(25 7 12 / 88%);
    border-color: rgb(239 74 103 / 62%);
    box-shadow:
      0 18px 44px rgb(44 2 11 / 58%),
      inset 0 1px 0 rgb(255 255 255 / 9%);
  }

}

/* Explicit visual contracts for classes emitted by the Canada scripts. */
.hero-description {
  max-width: 62ch;
  color: #f0f1f2;
  line-height: 1.45;
}

.top-game-affiliate-link {
  position: absolute;
  z-index: 5;
  inset: 0;
  border-radius: 0 0 9px 9px;
}

.top-game-affiliate-link::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 2px solid transparent;
  border-radius: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.top-game-affiliate-link:hover::after,
.top-game-affiliate-link:focus-visible::after {
  border-color: var(--accent);
  background: rgb(201 54 78 / 4%);
  box-shadow:
    inset 0 0 16px rgb(201 54 78 / 14%),
    0 0 0 2px rgb(201 54 78 / 22%);
}

.responsible-media-logo {
  position: absolute;
  top: clamp(12px, 2.4vw, 24px);
  right: auto;
  bottom: auto;
  left: clamp(12px, 2.4vw, 28px);
  width: clamp(116px, 18vw, 190px);
  height: auto;
  padding: 8px 12px;
  background: rgb(18 5 9 / 82%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 9px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 38%);
}

.reviews-toggle-icon {
  display: block;
  min-width: 1em;
  color: currentcolor;
  font: inherit;
  line-height: 1;
  text-align: center;
}

/* Bonus and app banners are standalone flow sections, never text-section children. */
.standalone-banner-section {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.standalone-banner-section > .promo-banner-card,
.standalone-banner-section > .platform-banner-card {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* The primary slots carousel belongs to the centre site-main column. */
.site-article > .contained-slots-carousel {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0 0 10px;
  overflow: hidden;
  border: 1px solid rgb(226 53 84 / 34%);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgb(0 0 0 / 22%);
}

/* Compact review rail: the source copy, controls and cards share the full site-main column. */
.content-section.reviews-section {
  padding: 22px;
  overflow: hidden;
}

.reviews-section > .article-source-block {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}

.reviews-section > .article-source-block > p:first-child {
  max-width: 72ch;
  margin: 0 0 12px;
  color: #eadde0;
  font-size: 13px;
  line-height: 1.5;
}

.reviews-section .reviews-controls {
  width: 100%;
  margin: 0 0 8px;
  gap: 6px;
}

.reviews-section .reviews-controls .reviews-control,
.reviews-section .reviews-controls .reviews-toggle {
  width: 34px;
  height: 34px;
  min-height: 34px;
  border-radius: 8px;
  font-size: 20px;
}

.reviews-section .reviews-controls .reviews-toggle {
  font-size: 12px;
}

.reviews-section .reviews-track {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  gap: 14px;
  margin: 0;
  padding: 4px 2px 8px;
  scrollbar-width: none;
}

.reviews-section .reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-section .reviews-track > .review-card {
  display: flex;
  flex: 0 0 calc((100% - 14px) / 2);
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 3%), transparent 48%),
    linear-gradient(155deg, #241116, #12090c 76%);
  border: 1px solid rgb(225 54 85 / 38%);
  border-top: 2px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgb(4 2 2 / 30%);
}

.reviews-section .reviews-track > .review-card:nth-child(even) {
  border-top-color: var(--brand-green);
  border-radius: 12px;
}

.reviews-section .reviews-track > .review-card::before {
  top: auto;
  right: 16px;
  bottom: -18px;
  color: var(--accent-bright);
  opacity: .11;
  font-size: 92px;
}

.reviews-section .review-stars {
  display: none;
}

.reviews-section .review-card p.review-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  height: auto;
  margin: 0;
  padding: 0;
}

.reviews-section .review-body > .review-author {
  order: -1;
  min-height: 56px;
  margin: 0;
  padding: 11px 96px 11px 58px;
  background: rgb(255 255 255 / 2.5%);
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.reviews-section .review-body > .review-author::before {
  bottom: 10px;
  left: 14px;
  width: 34px;
  height: 34px;
}

.reviews-section .review-body > .review-author::after {
  right: 14px;
  bottom: 21px;
  font-size: 10px;
}

.reviews-section .review-body > .review-quote {
  display: block;
  flex: 1;
  min-height: 0;
  max-width: none;
  padding: 16px 42px 18px 18px;
  color: #f0e7e9;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .content-section.reviews-section {
    padding: 16px;
  }

  .reviews-section .reviews-track > .review-card {
    flex-basis: 88%;
    min-height: 0;
  }

  .reviews-section .review-body > .review-author {
    padding: 11px 14px 34px 58px;
  }

  .reviews-section .review-body > .review-author::after {
    right: auto;
    bottom: 10px;
    left: 58px;
  }

  .reviews-section .review-body > .review-quote {
    padding: 15px 32px 17px 16px;
    font-size: 13px;
  }
}
/* Responsible-gaming resources required for every localized site-footer. */
.rg-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.rg-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.rg-links a:hover,
.rg-links a:focus-visible {
  border-color: #21c55d;
  background: rgba(33, 197, 93, 0.16);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .rg-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* Review folio: compact, legible testimonial rail shared by sportsbook and casino. */
.content-section.reviews-section {
  position: relative;
  isolation: isolate;
  padding: clamp(18px, 2.2vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgb(214 41 73 / 17%), transparent 30%),
    linear-gradient(145deg, #2a0d15 0%, #16090d 58%, #10070a 100%);
  border: 1px solid rgb(239 65 96 / 52%);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 6%),
    0 24px 54px rgb(25 0 7 / 36%);
}

.content-section.reviews-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: repeating-radial-gradient(
    circle,
    rgb(255 255 255 / 5%) 0 1px,
    transparent 1px 13px
  );
  opacity: .45;
  pointer-events: none;
}

.reviews-section > h2 {
  margin-bottom: 16px;
}

.reviews-section > .article-source-block > p:first-child {
  max-width: 68ch;
  margin: 0 0 6px;
  color: #e7cfd5;
  font-size: 14px;
  line-height: 1.6;
}

.reviews-section .reviews-controls {
  margin: 0 0 12px;
  gap: 8px;
}

.reviews-section .reviews-controls .reviews-control,
.reviews-section .reviews-controls .reviews-toggle {
  width: 40px;
  height: 40px;
  min-height: 40px;
  color: #fff4f6;
  background: linear-gradient(145deg, #3b1420, #210c12);
  border: 1px solid rgb(255 116 141 / 38%);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%);
}

.reviews-section .reviews-controls .reviews-control:hover,
.reviews-section .reviews-controls .reviews-toggle:hover,
.reviews-section .reviews-controls .reviews-control:focus-visible,
.reviews-section .reviews-controls .reviews-toggle:focus-visible {
  color: #fff;
  background: linear-gradient(145deg, #e43a5a, #a51e39);
  border-color: #ff9aad;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.reviews-section .reviews-track {
  align-items: stretch;
  gap: 16px;
  padding: 4px 2px 12px;
  scroll-padding-inline: 2px;
  touch-action: pan-x;
}

.reviews-section .reviews-track > .review-card {
  flex: 0 0 calc((100% - 16px) / 2);
  min-height: 260px;
  color: #fff;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 4%), transparent 45%),
    linear-gradient(155deg, #30121b, #160a0e 78%);
  border: 1px solid rgb(242 81 111 / 42%);
  border-top: 3px solid #f04a69;
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 5%),
    0 14px 32px rgb(8 1 3 / 38%);
}

.reviews-section .reviews-track > .review-card:nth-child(even) {
  border-color: rgb(72 197 91 / 34%);
  border-top-color: var(--brand-green);
}

.reviews-section .review-card p.review-body {
  color: #f3e9ec;
}

.reviews-section .review-body > .review-author {
  min-height: 66px;
  padding: 13px 112px 13px 64px;
  color: #fff7f8;
  background: linear-gradient(90deg, rgb(255 255 255 / 5%), transparent);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.reviews-section .review-body > .review-author::before {
  bottom: 13px;
  left: 15px;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(145deg, #ec4665, #8e1931);
  border: 1px solid rgb(255 197 207 / 38%);
  border-radius: 50%;
  box-shadow: 0 7px 16px rgb(9 1 3 / 32%);
}

.reviews-section .reviews-track > .review-card:nth-child(even)
  .review-author::before {
  background: linear-gradient(145deg, #5bd06c, #227238);
  border-color: rgb(199 255 208 / 34%);
}

.reviews-section .review-body > .review-author::after {
  right: 16px;
  bottom: 25px;
  color: #ffd66f;
  font-size: 11px;
  letter-spacing: .1em;
  text-shadow: 0 0 12px rgb(255 214 111 / 18%);
}

.reviews-section .review-body > .review-quote {
  padding: 22px 48px 24px 22px;
  color: #f0e5e8;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.65;
}

.reviews-section .reviews-track > .review-card::before {
  right: 18px;
  bottom: -10px;
  color: #ff6683;
  opacity: .16;
  font-size: 96px;
}

@media (max-width: 700px) {
  .content-section.reviews-section {
    padding: 16px;
    border-radius: 14px;
  }

  .reviews-section > h2 {
    margin-bottom: 14px;
  }

  .reviews-section .reviews-controls {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .reviews-section .reviews-track > .review-card {
    flex-basis: 86%;
    min-height: 300px;
  }

  .reviews-section .review-body > .review-author {
    min-height: 82px;
    padding: 13px 14px 36px 62px;
  }

  .reviews-section .review-body > .review-author::after {
    right: auto;
    bottom: 12px;
    left: 62px;
  }

  .reviews-section .review-body > .review-quote {
    padding: 19px 36px 22px 18px;
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Legacy dark base theme: blue surfaces, white typography, green actions. */
:root {
  --theme-blue: #0099b5;
  --theme-blue-bright: #22bdd4;
  --theme-blue-deep: #031a25;
  --theme-blue-border: rgb(34 189 212 / 42%);
  --page-bg: #031a25;
  --header-bg: #041f2b;
  --panel-bg: #082b38;
  --panel-soft: #0d3745;
  --heading-bg: #f4fcfd;
  --control-bg: #062530;
  --light-bg: #f7fdfd;
  --white: #fff;
  --text: #f4fbfc;
  --muted: #b8d3d9;
  --dark-text: #043244;
  --accent: #0099b5;
  --accent-hover: #19b4cb;
  --accent-soft: #83d5e1;
  --accent-bright: #31c3d7;
  --accent-highlight: #72deeb;
  --accent-pale: #d9f7fa;
  --signal-blue: #0099b5;
  --signal-blue-hover: #22bdd4;
  --signal-blue-soft: #d9f7fa;
  --line: #17647a;
  --brand-green: #1eb53a;
  --brand-green-hover: #2dcc4b;
  --shadow: 0 20px 46px rgb(0 12 20 / 46%);
}

html,
body {
  background-color: #000;
}

body {
  background-image: none;
  background-attachment: scroll;
}

.topbar {
  background-color: rgb(3 26 37 / 97%);
  background-image: linear-gradient(90deg, rgb(4 38 50 / 98%), rgb(2 20 29 / 98%));
  border-bottom-color: rgb(34 189 212 / 48%);
  box-shadow: 0 12px 34px rgb(0 10 17 / 58%), inset 0 -1px 0 rgb(255 255 255 / 9%);
}

.nav-links a:hover,
.nav-links .state-active {
  color: #fff;
  background: rgb(0 153 181 / 18%);
  border-color: rgb(74 205 224 / 52%);
}

.nav-links .state-active::after{
  background: #0099b5;
  box-shadow: 0 0 14px rgb(34 189 212 / 46%);
}

.tool-button,
.language-switch,
.ghost,
.reviews-toggle {
  color: #fff;
  background: linear-gradient(145deg, #0b3b49, #041e29);
  border-color: rgb(103 210 225 / 24%);
}

.language-switch:hover,
.language-switch:focus-visible,
.ghost:hover,
.reviews-toggle:hover,
.reviews-toggle:focus-visible {
  background: #105064;
  border-color: rgb(72 211 229 / 68%);
}

.content-slot-card,
.slot-library-card{
  background: #082b38;
  border-color: rgb(34 189 212 / 30%);
}

.article-nav-nav,
.sport-side-toggle,
.app-platforms,
.registration-card,
.bet-slip,
.site-promo-coupon,
.scratch-card {
  border-color: rgb(34 189 212 / 38%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%), 0 16px 36px rgb(0 12 20 / 44%);
}

.article-nav-nav,
.sport-side-toggle,
.app-platforms {
  background: linear-gradient(155deg, #0d3c4b, #041e29 76%);
}

.registration-card,
.bet-slip {
  background: linear-gradient(155deg, #0b3441, #031b25 78%);
}

.sports-quick-row,
.top-game-header,
.sports-catalog-header,
.sports-tabs,
.phone-method,
.bet-slip-tabs,
.signup-promo {
  background-color: #0b3543;
}

.sports-quick-row:hover,
.sports-quick-row.state-open {
  background: #105064;
  border-color: rgb(34 189 212 / 62%);
}

.article-section,
.content-section,
.reviews-section,
.home-app-banner,
.bonus-banner-section,
.bonus-final-cta {
  background:
    radial-gradient(circle at 100% 0%, rgb(0 153 181 / 15%), transparent 28rem),
    radial-gradient(circle at 12% 100%, rgb(30 181 58 / 5%), transparent 22rem),
    linear-gradient(150deg, #0b3340, #041c27 78%);
  border-color: rgb(34 189 212 / 36%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 7%), 0 20px 48px rgb(0 12 20 / 42%);
}

.article-section h2,
.content-section h2,
.reviews-section > h2 {
  color: #06465a;
  background: linear-gradient(90deg, #fff, #f4fcfd 72%, #dff5f8), #fff;
  border-color: rgb(255 255 255 / 76%);
  box-shadow: inset 4px 0 0 #0099b5, 0 8px 22px rgb(0 20 30 / 28%);
}

.article-section h2::before,
.content-section h2::before,
.reviews-section > h2::before {
  background: #0099b5;
  box-shadow: 0 0 12px rgb(0 153 181 / 30%);
}

.article-section h3,
.content-section h3,
.article-section h4,
.content-section h4 {
  color: #fff;
}

.article-section p,
.content-section p,
.article-section li,
.content-section li {
  color: #eef9fa;
}

.content-section > ul > li,
.content-section > ol > li,
.content-section .article-source-block > ul > li,
.content-section .article-source-block > ol > li,
.article-source-block > ul[data-source-list] > li,
.article-source-block > ol[data-source-list] > li {
  background: linear-gradient(105deg, rgb(0 153 181 / 10%), transparent 62%), rgb(3 26 37 / 74%);
  border-color: rgb(65 196 214 / 22%);
}

.faq-item {
  background: linear-gradient(145deg, #0d3947, #041c27);
  border-color: rgb(34 189 212 / 36%);
}

.faq-item[open] {
  border-color: rgb(72 211 229 / 62%);
  box-shadow: inset 3px 0 0 #1eb53a;
}

.site-hero,
.promo-banner-card,
.platform-banner-card,
.review-card,
.site-table-wrap,
.table-scroll{
  border-color: rgb(34 189 212 / 46%);
  box-shadow: 0 22px 54px rgb(0 12 20 / 52%);
}

.site-hero {
  border-top-color: rgb(88 217 233 / 70%);
}

.site-table-wrap thead,
.table-scroll thead,
.content-section thead {
  color: #fff;
  background: linear-gradient(90deg, #007d95, #07556a);
}

.site-table-wrap tbody tr:nth-child(even),
.table-scroll tbody tr:nth-child(even),
.content-section tbody tr:nth-child(even) {
  background: rgb(0 153 181 / 8%);
}

.bonus-terms-section {
  border-top-color: rgb(34 189 212 / 70%) !important;
  background: radial-gradient(circle at 94% 4%, rgb(0 153 181 / 20%), transparent 34%), linear-gradient(145deg, rgb(9 49 61 / 98%), rgb(3 25 35 / 98%)) !important;
}

.bonus-term-chapter {
  --chapter-line: rgb(34 189 212 / 30%);
}

.bonus-term-chapter::before {
  color: #fff;
  background: linear-gradient(145deg, rgb(0 153 181 / 80%), rgb(4 59 72 / 92%));
  border-color: rgb(104 219 232 / 62%);
  box-shadow: 0 0 0 5px rgb(0 153 181 / 9%), 0 10px 24px rgb(0 14 22 / 32%);
}

.bonus-term-chapter > h3::after {
  background: linear-gradient(90deg, #1eb53a, rgb(30 181 58 / 0%));
}

.site-footer {
  background: radial-gradient(circle at 50% 0%, rgb(0 153 181 / 16%), transparent 32rem), #02131c;
  border-top-color: rgb(34 189 212 / 58%);
}

.footer-columns,
.legacy-footer-notice,
.footer-legal-row,
.footer-payments {
  background: radial-gradient(circle at 0 0, rgb(0 153 181 / 10%), transparent 25rem), #041f2b;
  border-color: rgb(56 187 205 / 24%);
}

.editorial-split {
  background: linear-gradient(110deg, rgb(0 91 112 / 20%), rgb(2 25 35 / 34%));
}

.content-section.reviews-section {
  background: radial-gradient(circle at 92% 8%, rgb(0 153 181 / 18%), transparent 30%), linear-gradient(145deg, #0b3442 0%, #051f2a 58%, #031822 100%);
  border-color: rgb(34 189 212 / 46%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 6%), 0 24px 54px rgb(0 12 20 / 40%);
}

.reviews-section > .article-source-block > p:first-child {
  color: #cce4e9;
}

.reviews-section .reviews-controls .reviews-control,
.reviews-section .reviews-controls .reviews-toggle {
  color: #fff;
  background: linear-gradient(145deg, #0c4555, #062631);
  border-color: rgb(80 206 222 / 36%);
}

.reviews-section .reviews-controls .reviews-control:hover,
.reviews-section .reviews-controls .reviews-toggle:hover,
.reviews-section .reviews-controls .reviews-control:focus-visible,
.reviews-section .reviews-controls .reviews-toggle:focus-visible {
  background: linear-gradient(145deg, #2dcc4b, #15872d);
  border-color: rgb(178 244 190 / 64%);
}

.reviews-section .reviews-track > .review-card {
  color: #fff;
  background: linear-gradient(135deg, rgb(255 255 255 / 4%), transparent 45%), linear-gradient(155deg, #0c3947, #041d28 78%);
  border-color: rgb(34 189 212 / 38%);
  border-top-color: #0099b5;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%), 0 14px 32px rgb(0 10 17 / 38%);
}

.reviews-section .review-card p.review-body,
.reviews-section .review-body > .review-author,
.reviews-section .review-body > .review-quote {
  color: #eef9fa;
}

.reviews-section .review-body > .review-author::before {
  background: linear-gradient(145deg, #20bcd3, #06758d);
  border-color: rgb(193 246 251 / 36%);
}

.reviews-section .reviews-track > .review-card::before {
  color: #42ccde;
}

.contained-slots-carousel {
  border-color: rgb(34 189 212 / 30%) !important;
}

.top-game-affiliate-link:hover::after,
.top-game-affiliate-link:focus-visible::after {
  border-color: #1eb53a;
  background: rgb(30 181 58 / 5%);
  box-shadow: inset 0 0 16px rgb(30 181 58 / 13%), 0 0 0 2px rgb(30 181 58 / 20%);
}

.skip,
.site-hot,
.registration-card .signup-button,
.bet-slip .signup-button,
.promo-banner-cta,
.section-bonus-cta,
.section-cta-link,
.app-banner-btn,
.app-download-btn,
.site-cookie button,
.scroll-top,
.slot-library-play,
.reviews-controls .reviews-control,
.reviews-controls .reviews-toggle{
  color: #fff;
  background: linear-gradient(145deg, #2dcc4b, #1eb53a);
  border-color: rgb(154 239 169 / 48%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 24%), 0 8px 22px rgb(10 92 27 / 34%);
}

@media (max-width: 900px) {
  body .hero-copy {
    background: rgb(3 31 42 / 90%);
    border-color: rgb(34 189 212 / 54%);
    box-shadow: 0 18px 44px rgb(0 12 20 / 58%), inset 0 1px 0 rgb(255 255 255 / 9%);
  }
}

/* Tablet editorial flow: side artwork becomes an in-flow image above the copy. */
@media (max-width: 1024px) {
  .editorial-split,
  .editorial-split-left,
  .editorial-split-right {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: clamp(10px, 2vw, 18px);
    overflow: visible;
  }

  .editorial-split .inline-editorial-media {
    order: -1;
    align-self: stretch !important;
    width: 100%;
    height: clamp(220px, 42vw, 380px) !important;
    min-height: 0;
    margin: 0 !important;
    border: 0;
    border-radius: 12px;
    -webkit-mask-image: linear-gradient(180deg, #000 0, #000 82%, transparent 100%) !important;
    mask-image: linear-gradient(180deg, #000 0, #000 82%, transparent 100%) !important;
  }

  .editorial-split .inline-editorial-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .editorial-split .editorial-copy {
    order: 1;
    width: 100%;
    padding: 0;
  }

  .editorial-split[data-editorial-image="ca-weekly-rebate.webp"]
    .inline-editorial-media img {
    content: url("../img/vave/ca-content/ca-weekly-rebate.webp");
    object-position: center 42%;
  }
}

@media (max-width: 600px) {
  .editorial-split .inline-editorial-media {
    height: clamp(190px, 58vw, 280px) !important;
    border-radius: 10px;
  }
}
