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

/* Responsive hero centering contract — max 900px */
@media (max-width: 900px) {
  body .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 .hero .hero-breadcrumbs {
    justify-content: center;
  }

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

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

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

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

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

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

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

@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: #121317;
  --header-bg: #16181d;
  --panel-bg: #24272e;
  --panel-soft: #2d3139;
  --heading-bg: #434953;
  --control-bg: #23272e;
  --light-bg: #f2f8ef;
  --white: #fff;
  --text: #f5f6f7;
  --muted: #b9bdc4;
  --dark-text: #16181d;
  --green: #4ca421;
  --green-hover: #5db52d;
  --green-soft: #93c97c;
  --line: #343840;
  --radius: 8px;
  --shadow: 4px 4px 4px rgb(0 0 0 / 25%);
  --header-height: 54px;
  --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: var(--page-bg);
  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(76 164 33 / 55%);
  outline-offset: 3px;
}

.skip {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 50;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  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%);
}

/* Page reading progress */
.page-progress {
  --page-progress: 0%;
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  z-index: 4;
  height: 14px;
  pointer-events: none;
}

.page-progress::before,
.page-progress-fill {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
}

.page-progress::before {
  content: "";
  background: rgb(76 164 33 / 18%);
}

.page-progress-fill {
  right: auto;
  width: var(--page-progress);
  background: linear-gradient(90deg, #398f18, var(--green-hover));
  box-shadow: 0 0 8px rgb(93 181 45 / 55%);
  transition: width 80ms linear;
}

.page-progress-ball {
  position: absolute;
  bottom: 4px;
  left: clamp(5px, var(--page-progress), calc(100% - 5px));
  width: 9px;
  height: 9px;
  background: var(--green-hover);
  border: 2px solid var(--header-bg);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgb(147 201 124 / 55%),
    0 0 8px rgb(93 181 45 / 80%);
  transform: translateX(-50%);
  transition: left 80ms linear;
}

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

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

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

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

.nav-links a {
  position: relative;
  padding: 18px 0;
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links .is-active {
  color: var(--green-hover);
}

.nav-links .is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--green);
}

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

.tool-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--green);
  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(--green);
  border-radius: 50%;
  font-size: 10px;
}

.btn,
.pin-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,
.pin-btn:hover {
  transform: translateY(-1px);
}

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

.hot {
  background: var(--green);
}

.hot:hover {
  background: var(--green-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: 34px;
  padding: 4px 10px 4px 5px;
  gap: 7px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(87, 205, 45, 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(87, 205, 45, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(87, 205, 45, 0.12);
}

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

.language-flag-it {
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  overflow: hidden;
  border: 2px solid #eef3ec;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    #009246 0 33.333%,
    #fff 33.333% 66.666%,
    #ce2b37 66.666% 100%
  );
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(87, 205, 45, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.28);
}

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

/* Slots carousel */
.slots-carousel {
  position: relative;
  overflow: hidden;
  background: #101217;
  border-top: 1px solid #20232a;
  border-bottom: 1px solid #272a31;
}

.slots-carousel-shell {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 7px calc(var(--page-gutter) + 42px) 7px var(--page-gutter);
}

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

.slots-carousel-track,
.slots-carousel-group {
  display: flex;
  flex: none;
  gap: 8px;
}

.slots-carousel-track {
  width: max-content;
  animation: slots-carousel-scroll 72s linear infinite;
  will-change: transform;
}

.slots-carousel-group {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slots-carousel-card {
  flex: 0 0 clamp(104px, 8vw, 122px);
  width: clamp(104px, 8vw, 122px);
  overflow: hidden;
  color: #e7e8ea;
  background: #1b1e24;
  border: 1px solid #292d35;
  border-radius: 7px;
  box-shadow: 0 3px 9px rgb(0 0 0 / 24%);
}

.slots-carousel-link {
  display: block;
  color: inherit;
}

.slots-carousel-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 301 / 180;
  object-fit: cover;
  background: #24272e;
}

.slots-carousel-name {
  display: block;
  overflow: hidden;
  padding: 4px 7px 5px;
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.slots-carousel-toggle {
  position: absolute;
  top: 50%;
  right: var(--page-gutter);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #f7f7f8;
  background: #252930;
  border: 1px solid #3b4049;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgb(0 0 0 / 35%);
  font-size: 14px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.slots-carousel:hover .slots-carousel-track,
.slots-carousel.is-paused .slots-carousel-track {
  animation-play-state: paused;
}

@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.is-left-sidebar-collapsed {
  grid-template-columns: 42px minmax(0, 1fr) var(--right-column);
}

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

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

.pin-content {
  min-width: 0;
}

/* Left sidebar */
.pin-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;
}

.pin-side-nav {
  overflow: hidden;
  background: var(--panel-bg);
  border-radius: var(--radius);
}

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

.sports-sidebar button {
  font: inherit;
}

.sports-sidebar-collapse {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  padding: 6px 10px;
  gap: 5px;
  color: var(--white);
  background: var(--header-bg);
  border: 0;
  border-radius: 9px;
  font-size: 13px;
  cursor: pointer;
}

.sports-sidebar-collapse:hover {
  background: #1d2026;
}

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

.pin-sidebar.is-collapsed {
  max-height: none;
  overflow: visible;
}

.pin-sidebar.is-collapsed .sports-sidebar-body,
.pin-sidebar.is-collapsed .pin-side-nav,
.right-sidebar.is-collapsed .right-sidebar-body {
  display: none;
}

.pin-sidebar.is-collapsed .sports-sidebar {
  width: 42px;
}

.pin-sidebar.is-collapsed .sports-sidebar-collapse,
.right-sidebar.is-collapsed .sports-sidebar-collapse {
  width: 42px;
  min-height: 42px;
  padding: 0;
}

.pin-sidebar.is-collapsed .sidebar-collapse-label,
.right-sidebar.is-collapsed .sidebar-collapse-label {
  display: none;
}

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

.right-sidebar .sidebar-collapse-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: 0;
  border-radius: 9px;
  font-size: 14px;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
}

.sports-quick-row:hover,
.sports-quick-row.is-open {
  background: #2c3038;
}

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

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

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

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

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

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

.sports-tabs .bl-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 .bl-aside-icon {
  width: 17px;
  height: 17px;
  color: #4d5358;
}

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

.sport-row-icon .bl-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.is-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;
}

.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: #102a4a;
  background: var(--white);
}

.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(--green);
  background: rgba(87, 205, 45, 0.035);
  box-shadow:
    inset 0 0 16px rgba(87, 205, 45, 0.14),
    0 0 0 2px rgba(87, 205, 45, 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: #183b66;
  font-size: 17px;
}

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

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

.match-status::before {
  content: "● LIVE";
  color: #48a92e;
  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: #4b7992;
}

.team-mark-green {
  background: #568b72;
}

.match-details {
  display: flex;
  align-items: center;
  padding: 2px 0 7px;
  gap: 7px;
  color: #173658;
  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: #edf7eb;
  border: 0;
  border-radius: 12px;
  font-size: 11px;
  cursor: pointer;
}

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

.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: grid;
  place-items: center;
  color: #c8cbd0;
  background: transparent;
  border: 0;
  font-size: 14px;
  cursor: pointer;
}

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

.sports-tabs a.is-active span {
  color: #83c731;
}

.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-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: #f1f7ef;
}

.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);
}

.pin-side-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;
}

.pin-side-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);
}

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

.pin-side-nav.is-open .pin-side-links {
  display: grid;
}

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

.pin-side-links a:hover {
  color: var(--green);
}

/* Right 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-radius: var(--radius);
}

.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,
.registration-field-link {
  display: block;
  margin-bottom: 7px;
}

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

.registration-field-link {
  text-decoration: none;
}

.registration-field-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(--green);
  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 */
.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);
}

.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;
}

.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;
}

.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;
}

.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 .pin-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;
}

/* 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 / 86%) 0%,
      rgb(4 6 8 / 74%) 32%,
      rgb(4 6 8 / 43%) 51%,
      rgb(4 6 8 / 12%) 76%,
      rgb(4 6 8 / 3%) 100%
    );
}

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

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

.promo-banner-kicker {
  max-width: 34ch;
  margin: 0 0 10px;
  color: var(--green-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-wrap: balance;
  text-transform: uppercase;
}

.promo-banner-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(--green);
  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(--green-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(76 164 33 / 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: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.platform-banner-button {
  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(--green);
  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;
}

.platform-banner-button:hover {
  color: var(--white);
  background: var(--green-hover);
  transform: translateY(-1px);
}

.platform-banner-button:active {
  transform: translateY(1px);
}

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

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

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

.platform-banner-button strong {
  font-size: 13px;
}

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

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

/* Content sections */
.pin-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);
}

.pin-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;
  text-wrap: balance;
}

.pin-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(--green);
  transform: translateY(-50%);
}

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

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

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

.pin-section ul,
.content-section ul,
.pin-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: 0.5em;
  left: 8px;
  width: 9px;
  height: 9px;
  background: var(--green-hover);
  border: 1px solid #9be276;
  border-radius: 2px;
  box-shadow:
    0 0 0 3px rgb(76 164 33 / 12%),
    0 0 9px rgb(93 181 45 / 38%);
  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(--green-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;
}

.pin-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(76 164 33 / 65%);
  border-radius: var(--radius);
  background: #0b0e11;
}

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

.section-visual,
.payments-section-visual,
.vip-program-visual {
  width: 100%;
  max-height: 420px;
  margin: 0 0 20px;
  object-fit: cover;
  border: 1px solid rgb(76 164 33 / 65%);
  border-radius: var(--radius);
}

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

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(76 164 33 / 65%);
  background: #191c21;
}

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

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

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

.offer-kicker {
  color: var(--green-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(--green);
  border-radius: var(--radius);
}

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

/* 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(--green-hover);
  font-weight: 800;
}

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

.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(--green);
  border-radius: 4px;
}

/* Reviews carousel */
.reviews-section {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 2.7vw, 28px);
  border: 1px solid rgb(93 181 45 / 25%);
  background:
    radial-gradient(circle at 100% 0%, rgb(76 164 33 / 16%), transparent 36%),
    linear-gradient(145deg, #23272d, #171a1f 72%);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 4%),
    0 16px 36px rgb(7 10 12 / 24%);
}

.reviews-section > h2 {
  margin-bottom: 18px;
  padding: 0 56px 0 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(24px, 2.8vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.reviews-section > h2::before {
  top: auto;
  bottom: -10px;
  left: 0;
  width: 64px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-hover), transparent);
  transform: none;
}

.reviews-section > .article-source-block {
  max-width: 68ch;
  margin-bottom: 18px;
  color: #c1c6cc;
}

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

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

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

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

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

.reviews-track::-webkit-scrollbar-thumb {
  background: var(--green);
  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(72%, 540px);
  min-height: 250px;
  padding: 32px 26px 24px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgb(76 164 33 / 12%), transparent 40%),
    #20242b;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 5%),
    0 12px 28px rgb(5 8 10 / 28%);
  scroll-snap-align: start;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.reviews-track > .review-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 18px;
  color: var(--green-hover);
  opacity: 0.28;
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.reviews-track > .review-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  width: 72px;
  height: 3px;
  background: var(--green-hover);
  border-radius: 0 0 3px 3px;
}

.reviews-section .review-card p {
  color: #aeb5bd;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.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;
}

@media (hover: hover) {
  .reviews-track > .review-card:hover {
    border-color: rgb(93 181 45 / 48%);
    transform: translateY(-3px);
  }
}

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

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

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

.review-stars {
  color: #8fd16c;
}

.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(--green-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 */
.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);
}

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

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

.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;
}

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

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

.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 {
  min-width: 110px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--control-bg);
  border-radius: var(--radius);
  font-size: 20px;
  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 */
.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(--green);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgb(0 0 0 / 42%);
}

.cookie.is-visible {
  display: flex;
}

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

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

.cookie button {
  min-height: 38px;
  padding: 9px 15px;
  color: var(--white);
  background: var(--green);
  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;
}

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

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

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

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

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

.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.is-left-sidebar-collapsed {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .right-sidebar {
    display: none;
  }

  .header-time {
    display: none;
  }

  .nav-links {
    gap: 20px;
  }
}

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

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

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

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

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

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

  .nav-links,
  .auth,
  .tool-button:first-child,
  .header-time {
    display: none;
  }

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

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

  .language-flag-it {
    width: 20px;
    height: 20px;
  }

  .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: 420px;
    padding-top: 10px;
    padding-bottom: 14px;
    opacity: 1;
  }

  .mobile-menu a {
    padding: 12px;
    border-bottom: 1px solid #30333a;
  }

  .slots-carousel-shell {
    padding: 6px 50px 6px var(--page-gutter);
  }

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

  .slots-carousel-card {
    flex-basis: 104px;
    width: 104px;
  }

  .slots-carousel-toggle {
    right: 9px;
    width: 36px;
    height: 36px;
  }

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

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

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

  .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 {
    width: 100%;
  }

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

  .hero p {
    font-size: 15px;
  }

  .hero-actions .pin-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;
  }

  .platform-banner-button {
    max-width: 205px;
    padding: 9px 11px;
  }

  .platform-banner-button img {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .platform-banner-button small {
    font-size: 9px;
  }

  .platform-banner-button strong {
    font-size: 11px;
  }

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

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

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

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

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

  .reviews-section {
    padding: 16px;
  }

  .reviews-section > h2 {
    padding: 0 36px 0 0;
    font-size: 23px;
    line-height: 1.22;
  }

  .reviews-track {
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .reviews-track > .review-card {
    flex-basis: min(88%, 420px);
    min-height: 0;
    padding: 28px 20px 22px;
  }

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

  .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;
  }

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

@media (max-width: 420px) {
  .header-tools {
    display: none;
  }

  .language-switch {
    display: flex;
    min-height: 32px;
    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;
  }

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

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

  .promo-banner-card::after {
    background:
      linear-gradient(
        90deg,
        rgb(4 6 8 / 90%) 0%,
        rgb(4 6 8 / 80%) 48%,
        rgb(4 6 8 / 42%) 72%,
        rgb(4 6 8 / 8%) 100%
      );
  }

  .promo-banner-image {
    object-fit: cover;
    object-position: 58% center;
  }

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

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

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

  .promo-banner-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;
  }

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

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

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

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

  .platform-banner-button img {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .platform-banner-button span {
    gap: 1px;
  }

  .platform-banner-button small {
    font-size: 8px;
  }

  .platform-banner-button strong {
    font-size: 10px;
  }

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

  .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;
}

.live-casino-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  gap: 10px;
}

.live-casino-card .slot-library-name {
  font-size: 11px;
}

@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(76 164 33 / 20%) 225deg,
    var(--green-hover) 250deg,
    #f7fff2 270deg,
    var(--green-hover) 290deg,
    rgb(76 164 33 / 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(--green);
  border-radius: 5px;
  box-shadow: 0 5px 14px rgb(0 0 0 / 32%);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-casino-card .slot-library-play {
  min-width: 54px;
  min-height: 24px;
  margin-top: 6px;
  padding: 4px 9px;
  font-size: 9px;
}

.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(--green-hover);
}

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

@media (max-width: 1180px) {
  .live-casino-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 420px) {
  .slot-library-grid,
  .live-casino-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;
  }

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

  .slots-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .slots-carousel-track {
    animation: none;
    transform: none;
  }

  .slots-carousel-group[aria-hidden="true"],
  .slots-carousel-toggle {
    display: none;
  }

  .slot-library-card::before {
    background: var(--green);
    opacity: 0.8;
    animation: none;
  }
}
/* Floating support and fortune-wheel actions */
.floating-actions {
  --widget-green: #4caf20;
  --widget-lime: #84e33c;
  --widget-ink: #111419;
  position: relative;
  z-index: 1200;
}

.floating-chat,
.fortune-tab,
.fortune-close {
  -webkit-tap-highlight-color: transparent;
}

.floating-chat {
  position: fixed;
  left: 22px;
  right: auto;
  bottom: 86px;
  z-index: 1202;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 32% 22%, #9ff15b 0 5%, transparent 27%),
    linear-gradient(145deg, #55be24, #277c11);
  border: 1px solid rgb(166 255 96 / 55%);
  border-radius: 50%;
  box-shadow:
    0 12px 32px rgb(0 0 0 / 48%),
    0 0 0 5px rgb(76 175 32 / 11%);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-chat svg {
  width: 27px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-chat span {
  position: absolute;
  left: 64px;
  right: auto;
  padding: 5px 9px;
  color: #fff;
  background: #1e232b;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 5px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 30%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-7px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

.floating-chat:hover span,
.floating-chat:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.fortune-tab {
  position: fixed;
  top: 48%;
  right: 0;
  z-index: 1202;
  width: 78px;
  min-height: 112px;
  padding: 14px 8px 12px 15px;
  color: #fff;
  background:
    linear-gradient(115deg, transparent 0 8px, #252b32 9px),
    #252b32;
  border: 1px solid rgb(132 227 60 / 68%);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  box-shadow:
    0 16px 36px rgb(0 0 0 / 48%),
    inset 4px 0 0 var(--widget-green);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.25;
  cursor: pointer;
  animation: fortune-tab-pulse 1.4s ease-in-out infinite;
}

.fortune-tab strong {
  color: var(--widget-lime);
  font-size: 13px;
}

.fortune-tab-spark {
  display: block;
  margin-bottom: 6px;
  color: #ffd95a;
  font-size: 22px;
  line-height: 1;
  animation: fortune-spark 1.4s linear infinite;
}

.fortune-panel {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 1201;
  width: min(328px, calc(100vw - 36px));
  margin: 0;
  padding: 23px 22px 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 7%), transparent 40%),
    #191d23;
  border: 1px solid rgb(132 227 60 / 42%);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgb(0 0 0 / 68%);
  opacity: 0;
  pointer-events: none;
  transform: translate(115%, -50%) scale(0.96);
  transform-origin: right center;
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fortune-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.fortune-panel.is-won {
  animation: fortune-panel-win 620ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fortune-close {
  position: absolute;
  top: 9px;
  right: 11px;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #dbe2d7;
  background: rgb(255 255 255 / 7%);
  border: 0;
  border-radius: 50%;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.fortune-eyebrow {
  margin: 0 0 3px;
  color: var(--widget-lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fortune-panel h2 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
}

.fortune-wheel-wrap {
  position: relative;
  width: 238px;
  height: 238px;
  margin: 0 auto;
}

.fortune-wheel-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -34px;
  background: repeating-conic-gradient(
    from 8deg,
    rgb(132 227 60 / 0%) 0 8deg,
    rgb(132 227 60 / 36%) 9deg 11deg,
    rgb(245 216 95 / 0%) 12deg 18deg
  );
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.45) rotate(-18deg);
}

.fortune-panel.is-won .fortune-wheel-wrap::before {
  animation: fortune-rays 1.3s ease-out forwards;
}

.fortune-wheel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: conic-gradient(
    #54bd24 0 45deg,
    #242a31 45deg 90deg,
    #d7a824 90deg 135deg,
    #153c13 135deg 180deg,
    #54bd24 180deg 225deg,
    #242a31 225deg 270deg,
    #d7a824 270deg 315deg,
    #153c13 315deg
  );
  border: 7px solid #0e1115;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px var(--widget-lime),
    0 14px 34px rgb(0 0 0 / 52%),
    inset 0 0 22px rgb(0 0 0 / 45%);
}

.fortune-wheel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgb(255 255 255 / 38%);
  border-radius: 50%;
}

.fortune-wheel.is-spinning {
  animation: fortune-spin 3.6s cubic-bezier(0.12, 0.67, 0.04, 1) forwards;
}

.fortune-wheel > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  text-shadow: 0 1px 3px #000;
  transform:
    translate(-100%, -50%)
    rotate(calc(var(--i) * 45deg + 22.5deg))
    translateX(45px);
  transform-origin: 100% 50%;
}

.fortune-pointer {
  position: absolute;
  top: -11px;
  left: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 25px solid #f5dc64;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  filter: drop-shadow(0 3px 3px rgb(0 0 0 / 55%));
  transform: translateX(-50%);
}

.fortune-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #66d930, #276f12);
  border: 5px solid #15191e;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #c5ff98;
  font-size: 23px;
  font-weight: 900;
  font-style: italic;
  transform: translate(-50%, -50%);
}

.fortune-result {
  position: absolute;
  inset: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgb(11 15 11 / 90%);
  border: 2px solid var(--widget-lime);
  border-radius: 50%;
  box-shadow:
    0 0 42px rgb(102 217 48 / 55%),
    inset 0 0 35px rgb(102 217 48 / 22%);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  text-decoration: none;
  transform: scale(0.72);
  transition:
    opacity 300ms ease,
    transform 430ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fortune-result strong {
  color: #b7ff7f;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 18px rgb(132 227 60 / 72%);
}

.fortune-result span {
  max-width: 135px;
  margin-top: 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.fortune-result em {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-top: 10px;
  padding: 5px 12px;
  color: #10160d;
  background: linear-gradient(180deg, #dfffbd, #84e33c);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 35%);
  font-size: 9px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fortune-panel.is-won .fortune-result {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  animation: fortune-result-pop 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fortune-panel.is-won .fortune-result strong {
  animation: fortune-win-beat 760ms ease-in-out 180ms 2;
}

.fortune-panel.is-won .fortune-result:hover,
.fortune-panel.is-won .fortune-result:focus-visible {
  box-shadow:
    0 0 62px rgb(132 227 60 / 82%),
    inset 0 0 38px rgb(132 227 60 / 30%);
  transform: scale(1.035);
}

.fortune-confetti {
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: 8;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.fortune-confetti i {
  position: absolute;
  width: 7px;
  height: 13px;
  background: var(--confetti-color);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--confetti-color);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.fortune-panel.is-won .fortune-confetti i {
  animation: fortune-confetti-burst 1.55s cubic-bezier(0.16, 0.74, 0.31, 1)
    var(--delay) forwards;
}

.fortune-status {
  min-height: 18px;
  margin: 16px 0 0;
  color: #cbd0c8;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.fortune-panel.is-won .fortune-status {
  color: #f8dc65;
  text-shadow: 0 0 15px rgb(248 220 101 / 55%);
  animation: fortune-status-pop 560ms cubic-bezier(0.34, 1.56, 0.64, 1)
    180ms both;
}

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

@keyframes fortune-panel-win {
  0%,
  100% {
    transform: translate(0, -50%) scale(1);
  }
  34% {
    transform: translate(0, -50%) scale(1.045) rotate(-0.8deg);
  }
  68% {
    transform: translate(0, -50%) 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-pulse {
  0%,
  100% {
    filter: brightness(1);
    box-shadow:
      0 16px 36px rgb(0 0 0 / 48%),
      inset 4px 0 0 var(--widget-green);
  }
  50% {
    filter: brightness(1.32);
    box-shadow:
      0 16px 42px rgb(0 0 0 / 58%),
      -7px 0 24px rgb(132 227 60 / 44%),
      inset 4px 0 0 var(--widget-lime);
  }
}

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

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

  .floating-chat svg {
    width: 22px;
  }

  .floating-chat span {
    display: none;
  }

  .fortune-tab {
    top: 43%;
    width: 56px;
    min-height: 83px;
    padding: 9px 5px 8px 11px;
    border-radius: 11px 0 0 11px;
    font-size: 8px;
  }

  .fortune-tab strong {
    font-size: 9px;
  }

  .fortune-tab-spark {
    margin-bottom: 3px;
    font-size: 16px;
  }

  .fortune-panel {
    right: 8px;
    width: min(274px, calc(100vw - 16px));
    padding: 18px 17px 15px;
  }

  .fortune-panel h2 {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .fortune-wheel-wrap {
    width: 202px;
    height: 202px;
  }

  .fortune-wheel > span {
    width: 73px;
    font-size: 8px;
    transform:
      translate(-100%, -50%)
      rotate(calc(var(--i) * 45deg + 22.5deg))
      translateX(38px);
  }

  .fortune-result strong {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fortune-tab,
  .fortune-tab-spark,
  .fortune-wheel.is-spinning,
  .fortune-panel.is-won,
  .fortune-panel.is-won .fortune-result,
  .fortune-panel.is-won .fortune-result strong,
  .fortune-panel.is-won .fortune-status,
  .fortune-panel.is-won .fortune-wheel-wrap::before,
  .fortune-panel.is-won .fortune-confetti i {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
/* 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(--green-hover);
}

.breadcrumb-separator {
  display: inline-block;
  flex: 0 0 0.64em;
  width: 0.64em;
  height: 1em;
  overflow: hidden;
  background: var(--green-hover);
  font-size: inherit;
  line-height: 1;
  text-indent: -999px;
  vertical-align: -0.08em;
  -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 */
.deposit-bonus-showcase {
  position: relative;
  isolation: isolate;
  min-height: 288px;
  margin: 22px 0 26px;
  padding: 28px clamp(230px, 31%, 282px) 28px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 24%, rgb(132 227 60 / 28%), transparent 28%),
    radial-gradient(circle at 92% 105%, rgb(226 184 55 / 22%), transparent 36%),
    linear-gradient(118deg, #162019 0%, #20292a 48%, #123b1a 100%);
  border: 1px solid rgb(132 227 60 / 38%);
  border-radius: 18px;
  box-shadow:
    0 22px 50px rgb(0 0 0 / 28%),
    inset 0 1px 0 rgb(255 255 255 / 7%);
}

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

.deposit-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
    );
}

.deposit-bonus-showcase::after {
  right: 18%;
  bottom: -82px;
  width: 210px;
  height: 210px;
  border: 1px solid rgb(132 227 60 / 22%);
  border-radius: 50%;
  box-shadow:
    0 0 0 32px rgb(132 227 60 / 4%),
    0 0 0 64px rgb(132 227 60 / 3%);
}

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

.deposit-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;
}

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

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

.deposit-bonus-showcase > ul[data-source-list] > li::before {
  top: 0.42em;
  left: 7px;
  width: 13px;
  height: 13px;
  background: #70d83a;
  border-color: #a7ef7e;
  box-shadow:
    0 0 0 5px rgb(112 216 58 / 13%),
    0 0 15px rgb(112 216 58 / 62%);
}

.deposit-bonus-character {
  position: absolute;
  right: 11px;
  bottom: -18px;
  z-index: 1;
  width: auto;
  height: calc(100% + 17px);
  max-width: 36%;
  object-fit: contain;
  object-position: right bottom;
  filter:
    drop-shadow(-12px 12px 18px rgb(0 0 0 / 48%))
    drop-shadow(0 0 18px rgb(132 227 60 / 13%));
  pointer-events: none;
  user-select: none;
}

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

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

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

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

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

  .deposit-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%));
  }
}
/* Restyled header slot carousel */
.slots-carousel {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 2%), transparent),
    #0d1014;
}

.slots-carousel-shell {
  padding-right: var(--page-gutter);
}

.slots-carousel-toggle {
  display: none !important;
}

.slots-carousel-card {
  position: relative;
  isolation: isolate;
  border-color: #242a27;
  box-shadow:
    0 4px 12px rgb(0 0 0 / 32%),
    inset 0 0 0 1px rgb(255 255 255 / 2%);
  transition:
    border-color 190ms ease,
    box-shadow 190ms ease,
    transform 190ms ease;
}

.slots-carousel-card::before {
  content: "";
  position: absolute;
  z-index: 6;
  inset: 0;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(
    from var(--slot-border-angle),
    transparent 0deg 210deg,
    rgb(76 164 33 / 14%) 228deg,
    var(--green-hover) 255deg,
    #eaffdc 272deg,
    var(--green-hover) 290deg,
    transparent 330deg 360deg
  );
  border-radius: inherit;
  opacity: 0.66;
  -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.8s linear infinite;
}

.slots-carousel-card:nth-child(4n + 2)::before {
  animation-delay: -0.95s;
}

.slots-carousel-card:nth-child(4n + 3)::before {
  animation-delay: -1.9s;
}

.slots-carousel-card:nth-child(4n + 4)::before {
  animation-delay: -2.85s;
}

.slots-carousel-link {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  text-decoration: none;
}

.slots-carousel-card img {
  filter: brightness(0.78) saturate(0.9);
  transition:
    filter 240ms ease,
    transform 260ms ease;
}

.slots-carousel-name {
  position: relative;
  z-index: 2;
  color: #e5e8e4;
  background: linear-gradient(180deg, #191d22, #14171b);
}

.slots-carousel-hover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  color: #fff;
  background: rgb(8 11 10 / 76%);
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 200ms ease,
    transform 220ms ease;
}

.slots-carousel-hover strong {
  font-size: 9px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.slots-carousel-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 24px;
  margin-top: 6px;
  padding: 4px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  box-shadow: 0 5px 14px rgb(0 0 0 / 42%);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slots-carousel-card:hover,
.slots-carousel-card:focus-within {
  border-color: rgb(132 227 60 / 70%);
  box-shadow:
    0 8px 20px rgb(0 0 0 / 45%),
    0 0 15px rgb(76 164 33 / 18%);
  transform: translateY(-1px);
}

.slots-carousel-card:hover::before,
.slots-carousel-card:focus-within::before {
  padding: 2px;
  opacity: 1;
  animation-duration: 1.7s;
}

.slots-carousel-card:hover img,
.slots-carousel-card:focus-within img {
  filter: brightness(0.46) saturate(1);
  transform: scale(1.07);
}

.slots-carousel-card:hover .slots-carousel-hover,
.slots-carousel-card:focus-within .slots-carousel-hover {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 620px) {
  .slots-carousel-shell {
    padding-right: var(--page-gutter);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slots-carousel-card::before {
    background: var(--green);
    opacity: 0.62;
    animation: none;
  }
}
/* BetLabel tennis loading sequence */
body.betlabel-page-loading {
  overflow: hidden;
}

.betlabel-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  justify-items: center;
  gap: 18px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 51%, rgb(95 205 40 / 17%), transparent 24%),
    linear-gradient(135deg, #0a0d10 0%, #151a1e 48%, #08110a 100%);
  opacity: 1;
  clip-path: inset(0);
  transition:
    clip-path 620ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 480ms ease 80ms;
}

.betlabel-loader::before,
.betlabel-loader::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.betlabel-loader::before {
  inset: -30%;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 52px,
    rgb(255 255 255 / 2%) 53px 54px
  );
  transform: rotate(-5deg);
}

.betlabel-loader::after {
  top: 50%;
  left: 50%;
  width: min(72vw, 760px);
  aspect-ratio: 2.05 / 1;
  border: 1px solid rgb(132 227 60 / 12%);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgb(132 227 60 / 2.5%),
    0 0 90px rgb(76 164 33 / 7%);
  transform: translate(-50%, -36%);
}

.betlabel-loader.is-complete {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.betlabel-loader-brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  animation: loader-brand-arrive 520ms cubic-bezier(0.34, 1.56, 0.64, 1)
    both;
}

.betlabel-loader-brand img {
  width: clamp(168px, 18vw, 224px);
  height: auto;
  filter: drop-shadow(0 9px 28px rgb(0 0 0 / 55%));
}

.betlabel-loader-brand span {
  margin-top: 6px;
  color: #9eea72;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.tennis-loader-stage {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 230px;
}

.tennis-loader-court-line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(132 227 60 / 18%) 14%,
    rgb(132 227 60 / 48%) 50%,
    rgb(132 227 60 / 18%) 86%,
    transparent
  );
}

.tennis-loader-racket {
  position: absolute;
  top: 28px;
  left: 21px;
  width: 132px;
  height: 185px;
  overflow: visible;
  filter:
    drop-shadow(0 16px 17px rgb(0 0 0 / 44%))
    drop-shadow(0 0 9px rgb(132 227 60 / 18%));
  transform-origin: 76% 84%;
  animation: tennis-racket-swing 1.5s cubic-bezier(0.22, 0.74, 0.28, 1)
    120ms both;
}

.tennis-loader-ball {
  position: absolute;
  top: 102px;
  left: 157px;
  z-index: 4;
  width: 24px;
  height: 24px;
  background:
    radial-gradient(circle at 34% 30%, #f5ffc4 0 8%, transparent 10%),
    radial-gradient(circle at 42% 40%, #d9f247, #a4c91e 72%);
  border: 1px solid #e5fa69;
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgb(205 237 69 / 8%),
    0 0 20px rgb(205 237 69 / 38%);
  animation: tennis-ball-flight 1.5s cubic-bezier(0.24, 0.61, 0.33, 1)
    120ms both;
}

.tennis-loader-ball::after {
  content: "";
  position: absolute;
  inset: 3px -1px;
  border: 1px solid rgb(255 255 255 / 65%);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-34deg);
}

.tennis-loader-impact {
  position: absolute;
  top: 114px;
  left: 169px;
  z-index: 3;
  width: 20px;
  height: 20px;
  border: 2px solid #eaff9a;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  animation: tennis-impact 1.5s ease-out 120ms both;
}

.tennis-loader-speed {
  position: absolute;
  top: 112px;
  left: 181px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #dff86c, transparent);
  border-radius: 999px;
  opacity: 0;
  animation: tennis-speed-lines 1.5s ease-out 120ms both;
}

.tennis-loader-speed.speed-two {
  top: 102px;
  animation-delay: 165ms;
}

.tennis-loader-speed.speed-three {
  top: 123px;
  animation-delay: 205ms;
}

.betlabel-loader-progress {
  position: relative;
  z-index: 2;
  width: 154px;
  height: 2px;
  overflow: hidden;
  background: rgb(255 255 255 / 9%);
  border-radius: 999px;
}

.betlabel-loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #398a17, #8fec55, #d9f8c6);
  box-shadow: 0 0 13px rgb(132 227 60 / 65%);
  transform: translateX(-100%);
  animation: loader-progress 1.55s cubic-bezier(0.22, 0.7, 0.28, 1) both;
}

body.betlabel-page-revealed .topbar {
  animation: page-reveal-down 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.betlabel-page-revealed .slots-carousel {
  animation: page-reveal-down 620ms cubic-bezier(0.22, 1, 0.36, 1) 60ms both;
}

body.betlabel-page-revealed .pin-sidebar {
  animation: page-reveal-left 660ms cubic-bezier(0.22, 1, 0.36, 1) 120ms
    both;
}

body.betlabel-page-revealed .right-sidebar {
  animation: page-reveal-right 660ms cubic-bezier(0.22, 1, 0.36, 1) 160ms
    both;
}

body.betlabel-page-revealed .pin-content > .hero,
body.betlabel-page-revealed .pin-content > .pin-section:first-child {
  animation: page-reveal-content 720ms cubic-bezier(0.22, 1, 0.36, 1) 100ms
    both;
}

body.betlabel-page-revealed .article-content-flow > :first-child {
  animation: page-reveal-content 720ms cubic-bezier(0.22, 1, 0.36, 1) 220ms
    both;
}

@keyframes loader-brand-arrive {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tennis-racket-swing {
  0%,
  16% {
    transform: translate(-27px, 16px) rotate(-38deg);
  }
  44% {
    transform: translate(22px, -1px) rotate(12deg);
  }
  58% {
    transform: translate(28px, -8px) rotate(24deg);
  }
  100% {
    transform: translate(10px, 2px) rotate(6deg);
  }
}

@keyframes tennis-ball-flight {
  0%,
  39% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  44% {
    transform: translate(8px, -2px) scale(0.78, 1.14);
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(158px, -72px) scale(0.82);
  }
}

@keyframes tennis-impact {
  0%,
  40% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  45% {
    opacity: 1;
  }
  68% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.6);
  }
  100% {
    opacity: 0;
  }
}

@keyframes tennis-speed-lines {
  0%,
  44% {
    width: 0;
    opacity: 0;
  }
  52% {
    width: 82px;
    opacity: 0.9;
  }
  82%,
  100% {
    width: 118px;
    opacity: 0;
    transform: translateX(75px);
  }
}

@keyframes loader-progress {
  0% {
    transform: translateX(-100%);
  }
  75% {
    transform: translateX(-9%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes page-reveal-down {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-reveal-left {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes page-reveal-right {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes page-reveal-content {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 620px) {
  .betlabel-loader {
    gap: 10px;
  }

  .betlabel-loader-brand img {
    width: 164px;
  }

  .tennis-loader-stage {
    width: 280px;
    transform: scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .betlabel-loader {
    transition-duration: 0.01ms;
  }

  .tennis-loader-racket,
  .tennis-loader-ball,
  .tennis-loader-impact,
  .tennis-loader-speed,
  .betlabel-loader-progress span,
  .betlabel-loader-brand,
  body.betlabel-page-revealed .topbar,
  body.betlabel-page-revealed .slots-carousel,
  body.betlabel-page-revealed .pin-sidebar,
  body.betlabel-page-revealed .right-sidebar,
  body.betlabel-page-revealed .pin-content > .hero,
  body.betlabel-page-revealed .pin-content > .pin-section:first-child,
  body.betlabel-page-revealed .article-content-flow > :first-child {
    animation-duration: 0.01ms;
    animation-delay: 0ms;
    animation-iteration-count: 1;
  }
}
/* MULTISITE MEGA PRIZE: IT */
.blat-mega-prize-it{--mega-theme-signature:tricolore-glass;--mega-primary:#4ca421;--mega-accent:#e65a65;--mega-ink:#0b160d;--mega-paper:#f7fff4;--mega-radius:8px 40px;--mega-angle:.8deg;--mega-pattern:linear-gradient(90deg,rgba(76,164,33,.2) 0 18%,transparent 18% 82%,rgba(230,90,101,.2) 82%)}
body.blat-mega-prize-open{overflow:hidden}
.blat-mega-prize-popup{position:fixed;inset:0;z-index:15000;display:grid;place-items:center;isolation:isolate;opacity:0;visibility:hidden;transition:opacity .32s ease,visibility .32s ease;font-family:inherit}
.blat-mega-prize-popup.blat-is-visible{opacity:1;visibility:visible}.blat-mega-prize-popup.blat-is-closing{opacity:0}
.blat-mega-prize-backdrop{position:absolute;inset:0;border:0;background:radial-gradient(circle at 50% 45%,color-mix(in srgb,var(--mega-primary) 30%,transparent),transparent 42%),rgba(2,5,8,.91);backdrop-filter:blur(7px);cursor:pointer}
.blat-mega-prize-atmosphere{position:absolute;inset:0;overflow:hidden;pointer-events:none}.blat-mega-prize-atmosphere span{position:absolute;width:42vmax;aspect-ratio:1;border:1px solid color-mix(in srgb,var(--mega-accent) 38%,transparent);border-radius:50%;animation:blat-mega-orbit 11s linear infinite}.blat-mega-prize-atmosphere span:nth-child(1){left:-18vmax;top:-22vmax}.blat-mega-prize-atmosphere span:nth-child(2){right:-16vmax;bottom:-25vmax;animation-direction:reverse;animation-duration:15s}.blat-mega-prize-atmosphere span:nth-child(3){width:18vmax;left:calc(50% - 9vmax);top:calc(50% - 9vmax);border-style:dashed;animation-duration:8s}
.blat-mega-prize-ticket{position:relative;width:min(680px,calc(100vw - 40px));min-height:470px;padding:48px 64px 54px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:var(--mega-paper);overflow:visible;border:1px solid color-mix(in srgb,var(--mega-accent) 62%,white);border-radius:var(--mega-radius);background:var(--mega-pattern),linear-gradient(145deg,color-mix(in srgb,var(--mega-primary) 80%,var(--mega-ink)),var(--mega-ink) 72%);box-shadow:0 0 0 6px color-mix(in srgb,var(--mega-primary) 15%,transparent),0 35px 90px rgba(0,0,0,.65),inset 0 0 70px color-mix(in srgb,var(--mega-primary) 24%,transparent);transform:translateY(28px) rotate(var(--mega-angle)) scale(.94);transition:transform .55s cubic-bezier(.2,.8,.2,1);z-index:2}
.blat-is-visible .blat-mega-prize-ticket{transform:translateY(0) rotate(var(--mega-angle)) scale(1)}
.blat-mega-prize-ticket::before,.blat-mega-prize-ticket::after{content:"";position:absolute;pointer-events:none}.blat-mega-prize-ticket::before{inset:14px;border:1px solid color-mix(in srgb,var(--mega-accent) 46%,transparent);border-radius:calc(var(--mega-radius) * .75)}.blat-mega-prize-ticket::after{width:92px;height:6px;left:calc(50% - 46px);bottom:24px;border-radius:10px;background:var(--mega-accent);box-shadow:0 0 24px var(--mega-accent)}
.blat-mega-prize-close{position:absolute;right:18px;top:16px;z-index:2;width:42px;height:42px;border:1px solid color-mix(in srgb,var(--mega-paper) 34%,transparent);border-radius:50%;background:rgba(0,0,0,.3);color:var(--mega-paper);font-size:28px;line-height:1;cursor:pointer}.blat-mega-prize-close:hover{background:var(--mega-primary)}
.blat-mega-prize-brand{position:absolute;left:28px;top:24px;font-weight:900;letter-spacing:.04em;font-size:17px}.blat-mega-prize-brand span{color:#75dc3a}
.blat-mega-prize-eyebrow{margin:12px 0 16px;padding:7px 18px;border-radius:999px;background:color-mix(in srgb,var(--mega-accent) 18%,transparent);color:var(--mega-accent);font-size:13px;font-weight:900;letter-spacing:.19em;text-transform:uppercase}
.blat-mega-prize-ticket h2{max-width:620px;margin:0;color:var(--mega-paper);font-size:clamp(48px,7vw,86px);font-weight:950;line-height:.88;letter-spacing:-.055em;text-wrap:balance;text-shadow:0 5px 0 color-mix(in srgb,var(--mega-primary) 55%,black),0 12px 34px rgba(0,0,0,.38)}
.blat-mega-prize-value{margin:28px 0 22px;display:flex;align-items:center;gap:16px}.blat-mega-prize-value strong{font-size:58px;line-height:1;color:var(--mega-accent);font-variant-numeric:tabular-nums;text-shadow:0 0 25px color-mix(in srgb,var(--mega-accent) 45%,transparent);animation:blat-mega-number .9s .25s both}.blat-mega-prize-value span{max-width:190px;text-align:left;font-size:18px;font-weight:900;line-height:1.05;letter-spacing:.08em}
.blat-mega-prize-continue{min-width:210px;padding:15px 28px;border:1px solid color-mix(in srgb,var(--mega-accent) 75%,white);border-radius:12px;background:linear-gradient(180deg,color-mix(in srgb,var(--mega-primary) 78%,white),var(--mega-primary));box-shadow:0 10px 30px color-mix(in srgb,var(--mega-primary) 45%,transparent);color:white!important;font-size:15px;font-weight:900;letter-spacing:.08em;text-decoration:none!important;text-transform:uppercase;transition:transform .2s ease,filter .2s ease}.blat-mega-prize-continue:hover{transform:translateY(-2px);filter:brightness(1.16)}
.blat-mega-prize-coins{position:absolute;inset:0;overflow:hidden;pointer-events:none}.blat-mega-prize-coins i{position:absolute;left:var(--x);top:-30px;width:22px;aspect-ratio:1;border:4px solid var(--mega-accent);border-radius:50%;background:color-mix(in srgb,var(--mega-accent) 60%,#fff);box-shadow:0 0 14px var(--mega-accent);animation:blat-mega-coin calc(2.7s + (var(--i) * .06s)) var(--d) linear infinite}
.blat-mega-prize-at .blat-mega-prize-ticket,.blat-mega-prize-pl .blat-mega-prize-ticket{clip-path:polygon(2% 0,98% 0,100% 4%,100% 96%,98% 100%,2% 100%,0 96%,0 4%)}
.blat-mega-prize-de .blat-mega-prize-ticket{border-width:2px;box-shadow:0 0 0 1px #0b090a,0 0 0 8px color-mix(in srgb,var(--mega-accent) 10%,transparent),0 35px 90px #000}.blat-mega-prize-fi .blat-mega-prize-ticket{backdrop-filter:blur(20px);background-color:rgba(6,23,44,.82)}.blat-mega-prize-gr .blat-mega-prize-ticket::after{width:54%;left:23%;height:4px}.blat-mega-prize-ie .blat-mega-prize-ticket{border-left:8px solid var(--mega-primary);border-right:8px solid var(--mega-accent)}.blat-mega-prize-it .blat-mega-prize-ticket::before{border-left:8px solid #4ca421;border-right:8px solid #e65a65}.blat-mega-prize-pt .blat-mega-prize-ticket{background-size:44px 44px,44px 44px,auto}.blat-mega-prize-sk .blat-mega-prize-ticket{clip-path:polygon(5% 0,95% 0,100% 12%,100% 88%,95% 100%,5% 100%,0 88%,0 12%)}
@keyframes blat-mega-orbit{to{transform:rotate(360deg)}}@keyframes blat-mega-coin{0%{transform:translateY(-10vh) rotateY(0);opacity:0}12%{opacity:1}100%{transform:translateY(115vh) rotateY(900deg);opacity:.2}}@keyframes blat-mega-number{from{opacity:0;transform:translateY(24px) scale(.7)}to{opacity:1;transform:none}}
@media (max-width: 640px){.blat-mega-prize-ticket{width:calc(100vw - 24px);min-height:430px;padding:62px 24px 44px}.blat-mega-prize-brand{left:22px;top:22px;font-size:14px}.blat-mega-prize-ticket h2{font-size:clamp(42px,15vw,64px)}.blat-mega-prize-value{gap:10px;margin:24px 0 20px}.blat-mega-prize-value strong{font-size:48px}.blat-mega-prize-value span{max-width:145px;font-size:14px}.blat-mega-prize-eyebrow{font-size:10px;letter-spacing:.13em}.blat-mega-prize-continue{width:min(260px,100%)}}
@media (prefers-reduced-motion: reduce){.blat-mega-prize-popup,.blat-mega-prize-ticket,.blat-mega-prize-continue{transition:none}.blat-mega-prize-atmosphere span,.blat-mega-prize-coins i,.blat-mega-prize-value strong{animation:none}}

/* Epic full-screen celebration layer */
.blat-mega-prize-popup{overflow:hidden}
.blat-mega-prize-backdrop{background:radial-gradient(circle at 50% 48%,color-mix(in srgb,var(--mega-primary) 28%,transparent) 0,rgba(0,0,0,.32) 38%,rgba(0,0,0,.95) 78%),linear-gradient(135deg,var(--mega-ink),#000)}
.blat-mega-prize-stage{position:relative;z-index:4;width:100vw;height:100svh;display:grid;place-items:center;overflow:hidden;pointer-events:none}
.blat-mega-prize-rays{position:absolute;left:50%;top:50%;z-index:1;width:min(118vmin,1120px);aspect-ratio:1;border-radius:50%;background:repeating-conic-gradient(from -6deg,color-mix(in srgb,var(--mega-accent) 38%,transparent) 0 3deg,transparent 3deg 10deg),radial-gradient(circle,color-mix(in srgb,var(--mega-primary) 75%,white) 0 4%,var(--mega-primary) 5% 20%,transparent 64%);filter:blur(.2px) drop-shadow(0 0 45px var(--mega-primary));opacity:.76;transform:translate(-50%,-50%) scale(.45) rotate(0);animation:blat-mega-rays 18s linear infinite;pointer-events:none}
.blat-mega-prize-rays::before,.blat-mega-prize-rays::after{content:"";position:absolute;inset:14%;border-radius:50%;border:2px dashed color-mix(in srgb,var(--mega-accent) 64%,transparent);box-shadow:0 0 35px var(--mega-accent);animation:blat-mega-pulse 2.3s ease-in-out infinite}.blat-mega-prize-rays::after{inset:27%;border-style:solid;animation-delay:.45s}
.blat-mega-prize-ticket{pointer-events:auto;position:relative;z-index:5;width:min(980px,94vw);min-height:min(760px,96svh);padding:86px 54px 58px;overflow:visible!important;border:0!important;border-radius:0!important;background:none!important;box-shadow:none!important;clip-path:none!important;transform:translateY(30px) scale(.78)!important;transition:transform .72s cubic-bezier(.16,.9,.2,1)!important}
.blat-is-visible .blat-mega-prize-ticket{transform:translateY(0) scale(1)!important}
.blat-mega-prize-ticket::before{content:"";position:absolute;z-index:-2;inset:auto!important;left:50%;top:50%;width:min(88vmin,790px);aspect-ratio:1;border:0!important;border-radius:50%;background:radial-gradient(circle at 50% 50%,color-mix(in srgb,var(--mega-accent) 95%,white) 0 2%,color-mix(in srgb,var(--mega-primary) 88%,transparent) 8% 31%,transparent 67%),var(--mega-pattern),repeating-conic-gradient(from 12deg,color-mix(in srgb,var(--mega-primary) 45%,transparent) 0 7deg,transparent 7deg 15deg);box-shadow:0 0 80px color-mix(in srgb,var(--mega-primary) 80%,transparent),inset 0 0 90px color-mix(in srgb,var(--mega-accent) 35%,transparent);transform:translate(-50%,-50%);filter:saturate(1.25);opacity:.96;animation:blat-mega-burst 3.4s ease-in-out infinite}
.blat-mega-prize-ticket::after{content:"";position:absolute;z-index:-1;left:50%!important;top:50%;bottom:auto!important;width:min(72vmin,650px)!important;height:min(72vmin,650px)!important;border-radius:50%!important;background:radial-gradient(circle,rgba(0,0,0,.05) 0 20%,color-mix(in srgb,var(--mega-ink) 80%,transparent) 62%,transparent 70%)!important;box-shadow:none!important;transform:translate(-50%,-50%)}
.blat-mega-prize-brand{left:50%;top:42px;transform:translateX(-50%);font-size:18px;text-shadow:0 2px 14px #000}.blat-mega-prize-close{right:7%;top:8%;width:48px;height:48px;background:rgba(0,0,0,.46);border:1px solid color-mix(in srgb,var(--mega-accent) 60%,white);box-shadow:0 0 24px color-mix(in srgb,var(--mega-primary) 55%,transparent)}
.blat-mega-prize-eyebrow{position:relative;z-index:2;margin:54px 0 18px;padding:8px 22px;background:linear-gradient(180deg,color-mix(in srgb,var(--mega-primary) 72%,white),color-mix(in srgb,var(--mega-primary) 74%,black));color:var(--mega-paper);box-shadow:0 8px 25px rgba(0,0,0,.38);font-size:14px}
.blat-mega-prize-ticket h2{position:relative;z-index:2;max-width:930px;margin:0;background:linear-gradient(180deg,#fffbdc 0,var(--mega-accent) 38%,color-mix(in srgb,var(--mega-primary) 78%,#ffb13b) 72%,color-mix(in srgb,var(--mega-ink) 70%,black) 100%);-webkit-background-clip:text;background-clip:text;color:transparent;-webkit-text-stroke:2px color-mix(in srgb,var(--mega-accent) 60%,#5a2600);font-size:clamp(76px,9.5vw,142px);font-weight:1000;line-height:.78;letter-spacing:-.065em;text-shadow:none;filter:drop-shadow(0 8px 0 color-mix(in srgb,var(--mega-ink) 82%,black)) drop-shadow(0 18px 22px rgba(0,0,0,.55))}
.blat-mega-prize-value{position:relative;z-index:2;min-width:min(520px,80vw);margin:34px 0 20px;padding:14px 34px;justify-content:center;gap:20px;border:2px solid color-mix(in srgb,var(--mega-accent) 75%,white);border-radius:999px;background:linear-gradient(180deg,color-mix(in srgb,var(--mega-ink) 70%,var(--mega-primary)),color-mix(in srgb,var(--mega-ink) 92%,black));box-shadow:inset 0 2px 0 rgba(255,255,255,.12),0 12px 34px rgba(0,0,0,.55),0 0 36px color-mix(in srgb,var(--mega-primary) 45%,transparent)}
.blat-mega-prize-counter{font-size:62px;font-weight:1000;line-height:1;color:var(--mega-accent);filter:drop-shadow(0 0 12px color-mix(in srgb,var(--mega-accent) 70%,transparent))}.blat-mega-prize-counter>span{display:flex}.blat-mega-prize-counter-digit{display:block;width:.66em;height:1em;overflow:hidden}.blat-mega-prize-counter-track{display:flex;flex-direction:column;animation:blat-mega-counter-roll 1.7s cubic-bezier(.14,.78,.2,1) var(--counter-delay) both}.blat-mega-prize-counter-track i{display:block;flex:0 0 1em;height:1em;font-style:normal;line-height:1;text-align:center}
.blat-mega-prize-value>span{max-width:220px;color:var(--mega-paper);font-size:20px;text-align:left}.blat-mega-prize-continue{position:relative;z-index:3;min-width:260px;padding:16px 34px;border-radius:999px;box-shadow:0 12px 36px color-mix(in srgb,var(--mega-primary) 62%,transparent),inset 0 1px 0 rgba(255,255,255,.35);font-size:16px}
.blat-mega-prize-firework{position:absolute;z-index:3;top:48%;width:190px;height:190px;pointer-events:none}.blat-mega-prize-firework-left{left:5%}.blat-mega-prize-firework-right{right:5%}.blat-mega-prize-firework i{position:absolute;left:50%;top:50%;width:5px;height:62px;border-radius:5px;background:linear-gradient(to top,var(--mega-accent),transparent 72%);transform-origin:50% 100%;transform:translate(-50%,-100%) rotate(var(--spark-angle)) scaleY(.15);filter:drop-shadow(0 0 6px var(--mega-accent));animation:blat-mega-firework 1.65s var(--spark-delay) ease-out infinite}
.blat-mega-prize-coins{z-index:6}.blat-mega-prize-coins i{width:28px;border-width:5px;background:radial-gradient(circle at 35% 30%,#fff 0 5%,var(--mega-accent) 8% 55%,color-mix(in srgb,var(--mega-primary) 65%,#6b3400) 58%);box-shadow:0 0 18px var(--mega-accent),inset 0 0 0 3px color-mix(in srgb,var(--mega-accent) 70%,white)}
.blat-mega-prize-at .blat-mega-prize-ticket::before{clip-path:polygon(50% 0,62% 18%,82% 7%,80% 29%,100% 34%,82% 50%,100% 66%,78% 70%,82% 93%,61% 81%,50% 100%,39% 81%,18% 93%,22% 70%,0 66%,18% 50%,0 34%,20% 29%,18% 7%,38% 18%)}.blat-mega-prize-bg .blat-mega-prize-ticket::before{clip-path:polygon(30% 4%,70% 4%,96% 30%,96% 70%,70% 96%,30% 96%,4% 70%,4% 30%)}.blat-mega-prize-de .blat-mega-prize-ticket::before{border-radius:14%;transform:translate(-50%,-50%) rotate(45deg)}.blat-mega-prize-es .blat-mega-prize-ticket::before{clip-path:polygon(50% 0,58% 19%,75% 7%,76% 27%,96% 22%,84% 40%,100% 50%,81% 58%,94% 76%,74% 74%,75% 96%,57% 82%,50% 100%,42% 81%,24% 94%,25% 73%,5% 76%,18% 58%,0 50%,17% 40%,4% 22%,25% 27%,25% 7%,42% 19%)}.blat-mega-prize-fi .blat-mega-prize-ticket::before{border-radius:42% 58% 38% 62%;filter:saturate(1.35) blur(2px)}.blat-mega-prize-gr .blat-mega-prize-ticket::before{border-radius:50% 50% 18% 18%}.blat-mega-prize-ie .blat-mega-prize-ticket::before{border-radius:48% 52% 45% 55%;transform:translate(-50%,-50%) rotate(-8deg)}.blat-mega-prize-it .blat-mega-prize-ticket::before{clip-path:polygon(50% 0,63% 24%,88% 12%,76% 38%,100% 50%,76% 62%,88% 88%,62% 76%,50% 100%,38% 76%,12% 88%,24% 62%,0 50%,24% 38%,12% 12%,38% 24%)}.blat-mega-prize-pl .blat-mega-prize-ticket::before{clip-path:polygon(50% 0,58% 32%,79% 7%,72% 36%,100% 21%,77% 43%,100% 50%,77% 57%,100% 79%,72% 64%,79% 93%,58% 68%,50% 100%,42% 68%,21% 93%,28% 64%,0 79%,23% 57%,0 50%,23% 43%,0 21%,28% 36%,21% 7%,42% 32%)}.blat-mega-prize-pt .blat-mega-prize-ticket::before{border-radius:22%;transform:translate(-50%,-50%) rotate(4deg)}.blat-mega-prize-si .blat-mega-prize-ticket::before{clip-path:polygon(50% 0,64% 27%,78% 13%,82% 37%,100% 50%,80% 61%,87% 88%,62% 76%,50% 100%,37% 76%,13% 88%,20% 61%,0 50%,18% 37%,22% 13%,36% 27%)}.blat-mega-prize-sk .blat-mega-prize-ticket::before{clip-path:polygon(50% 0,65% 21%,88% 12%,79% 36%,100% 50%,79% 64%,88% 88%,65% 79%,50% 100%,35% 79%,12% 88%,21% 64%,0 50%,21% 36%,12% 12%,35% 21%)}
@keyframes blat-mega-rays{from{transform:translate(-50%,-50%) scale(.88) rotate(0)}to{transform:translate(-50%,-50%) scale(.88) rotate(360deg)}}@keyframes blat-mega-pulse{0%,100%{opacity:.35;transform:scale(.82)}50%{opacity:1;transform:scale(1.08)}}@keyframes blat-mega-burst{0%,100%{transform:translate(-50%,-50%) scale(.94)}50%{transform:translate(-50%,-50%) scale(1.05)}}@keyframes blat-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 blat-mega-counter-roll{from{transform:translateY(0)}to{transform:translateY(calc(var(--final-index) * -1em))}}
@media (max-width: 640px){.blat-mega-prize-stage{height:100svh}.blat-mega-prize-rays{width:150vmin}.blat-mega-prize-ticket{width:100vw;min-height:min(700px,98svh);padding:80px 18px 42px}.blat-mega-prize-ticket::before{width:128vmin}.blat-mega-prize-ticket::after{width:108vmin!important;height:108vmin!important}.blat-mega-prize-brand{top:34px}.blat-mega-prize-close{right:18px;top:22px}.blat-mega-prize-eyebrow{margin:36px 0 18px;font-size:10px}.blat-mega-prize-ticket h2{max-width:96vw;font-size:clamp(54px,18vw,78px);line-height:.8;-webkit-text-stroke-width:1px}.blat-mega-prize-value{min-width:min(350px,90vw);margin:30px 0 22px;padding:13px 18px;gap:10px}.blat-mega-prize-counter{font-size:48px}.blat-mega-prize-value>span{max-width:138px;font-size:13px}.blat-mega-prize-continue{width:min(270px,78vw)}.blat-mega-prize-firework{top:50%;width:120px;height:120px}.blat-mega-prize-firework-left{left:-38px}.blat-mega-prize-firework-right{right:-38px}.blat-mega-prize-firework i{height:42px}.blat-mega-prize-coins i{width:20px}}
.blat-mega-prize-fi .blat-mega-prize-ticket h2{font-size:clamp(46px,14vw,62px);letter-spacing:-.075em}
@media (prefers-reduced-motion: reduce){.blat-mega-prize-rays,.blat-mega-prize-firework i,.blat-mega-prize-ticket::before,.blat-mega-prize-counter-track{animation:none}.blat-mega-prize-counter-track{transform:translateY(calc(var(--final-index) * -1em))}}
/* END MULTISITE MEGA PRIZE */
