:root {
  --ink: #060909;
  --ink-2: #111617;
  --paper: #edf0f3;
  --card: #ffffff;
  --text: #252a2d;
  --muted: #626a70;
  --line: #d9dee2;
  --mint: #00e6a1;
  --mint-bright: #00ffad;
  --violet: #8a00ff;
  --rosso: #d71920;
  --shadow: 0 3px 12px rgba(8, 16, 18, 0.12);
  --radius: 6px;
  --header-height: 75px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(0, 230, 161, 0.035) 38.1% 38.25%, transparent 38.35% 100%),
    linear-gradient(62deg, transparent 0 72%, rgba(215, 25, 32, 0.03) 72.1% 72.25%, transparent 72.35% 100%),
    var(--paper);
  font-family: Montserrat, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.menu-open {
  overflow: hidden;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p,
ul,
ol,
table {
  margin: 0;
}

h1,
h2,
h3 {
  width: 100%;
  max-width: none;
  color: var(--ink);
  word-break: normal;
  overflow-wrap: normal;
}

h1 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}

h3 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid rgba(0, 230, 161, 0.58);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  background: #000;
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-inner {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 135px;
  height: 34px;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  display: grid;
  min-width: 86px;
  padding: 0 17px;
  place-items: center;
  color: #e9ecee;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav a::after,
.footer-column a::after,
.article-nav a::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, var(--mint) 0 68%, var(--rosso) 68% 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a::after {
  right: 16px;
  bottom: 16px;
  left: 16px;
  height: 2px;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after,
.footer-column a:hover::after,
.footer-column a:focus-visible::after,
.article-nav a:hover::before,
.article-nav a:focus-visible::before,
.article-nav a.active::before {
  transform: scaleX(1);
}

.desktop-nav a.active {
  color: var(--mint-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.locale {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.locale:hover,
.locale:focus-visible,
.locale[aria-expanded="true"] {
  border-color: var(--mint);
  color: var(--mint);
}

.locale-picker {
  position: relative;
}

.locale-flag {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  object-fit: cover;
}

.locale-chevron {
  width: 7px;
  height: 7px;
  margin: -3px 1px 0 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.locale[aria-expanded="true"] .locale-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.locale-menu {
  position: fixed;
  z-index: 1100;
  top: calc(var(--header-height) + 10px);
  left: 50%;
  display: grid;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100dvh - var(--header-height) - 20px);
  padding: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #3b4142;
  border-radius: 9px;
  background: #101314;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.48);
  transform: translateX(-50%);
}

.locale-menu[hidden] {
  display: none;
}

.locale-option {
  display: grid;
  min-width: 0;
  min-height: 42px;
  padding: 7px 10px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 1px solid #454b4d;
  border-radius: 7px;
  background: #34393d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.locale-option:hover,
.locale-option:focus-visible {
  border-color: var(--mint);
  background: #41484a;
  color: #fff;
  outline: none;
}

.locale-option[aria-current="page"] {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.locale-code,
.footer-locale-code {
  display: none;
}

.cta {
  --cta-color: var(--mint);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 46px;
  padding: 12px 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--cta-color);
  color: #040706;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.cta::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: -4px;
  border: 1px solid transparent;
  border-radius: inherit;
  opacity: 0;
  transform: scale(.94);
}

.cta:hover,
.cta:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.22);
}

.cta:active,
.cta[data-pressed="true"] {
  transform: translateY(2px) scale(.99);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.24);
}

.cta[data-pressed="true"]::after {
  animation: pitstop-ring 240ms ease-out;
}

.cta--bonus,
.cta--register {
  --cta-color: var(--violet);
  color: #fff;
}

.cta--login {
  min-width: 108px;
}

.cta--register {
  min-width: 118px;
}

.cta--internal {
  --cta-color: var(--mint);
}

@keyframes pitstop-ring {
  0% { opacity: .8; transform: scale(.94); border-color: var(--rosso); }
  100% { opacity: 0; transform: scale(1.13); border-color: var(--mint); }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  background: #111;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  width: 11px;
  opacity: .65;
  transform: translateX(11px);
  background: var(--rosso);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  border-top: 2px solid var(--mint);
  border-radius: 0;
  background: #070909;
  box-shadow: var(--shadow);
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.mobile-menu nav a {
  padding: 13px 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 700;
}

.mobile-menu nav a.active {
  color: var(--mint);
}

.mobile-menu__actions {
  display: flex;
  gap: 12px;
}

.mobile-menu__actions .cta {
  flex: 1 1 0;
  min-width: 0;
}

.site-grid {
  display: grid;
  width: 100%;
  max-width: 1600px;
  margin: 20px auto 0;
  padding: 0 30px;
  grid-template-columns: 240px 20px minmax(0, 1020px) 20px 240px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 95px;
  min-width: 0;
}

.sidebar--left {
  grid-column: 1;
}

.sidebar--right {
  grid-column: 5;
}

.content-main {
  display: grid;
  min-width: 0;
  grid-column: 3;
  gap: 20px;
}

.sidebar__panel,
.game-links {
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.sidebar__title {
  padding: 11px 14px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sidebar__switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 12px;
  font-weight: 700;
}

.sidebar__switch span {
  padding: 11px 9px;
  text-align: center;
}

.sidebar__switch span:first-child {
  border-bottom: 2px solid var(--mint);
}

.sidebar__switch span:last-child {
  border-bottom: 2px solid var(--rosso);
}

.sidebar__live {
  display: flex;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.sidebar__live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rosso);
  box-shadow: 0 0 0 4px rgba(215,25,32,.12);
}

.sport-list,
.article-nav ol {
  padding: 0;
  list-style: none;
}

.sport-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.sport-list .sport-link {
  display: grid;
  min-height: 43px;
  padding: 8px 12px;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 9px;
  color: inherit;
}

.sport-list li::after,
.faq-item summary::before,
.table-wrap tbody tr::after {
  position: absolute;
  content: "";
  width: 3px;
  background: linear-gradient(var(--mint), var(--rosso));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 170ms ease;
}

.sport-list li::after {
  top: 7px;
  bottom: 7px;
  left: 0;
}

.sport-list li:hover {
  background: #f3f7f6;
}

.sport-list li:hover::after,
.sport-list li:focus-within::after,
.faq-item summary:hover::before,
.faq-item[open] summary::before {
  transform: scaleY(1);
}

.sport-list .sport-link:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: -2px;
}

.sport-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(1);
}

.sport-list small {
  min-width: 24px;
  padding: 2px 5px;
  border-radius: 999px;
  background: #edf1f0;
  color: #596267;
  text-align: center;
}

.article-nav a {
  position: relative;
  display: block;
  padding: 10px 12px 10px 18px;
  border-bottom: 1px solid var(--line);
  color: #333b3e;
  font-size: 12px;
  line-height: 1.35;
}

.article-nav a::before {
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 3px;
}

.article-nav a.active {
  background: #f3f8f6;
  color: #080d0b;
  font-weight: 700;
}

.game-links {
  display: grid;
  padding: 10px;
  gap: 10px;
  background: #fff;
}

.game-link {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  border-radius: 5px;
  background-image: linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,.05) 68%), var(--game-image);
  background-position: center;
  background-size: cover;
  transition: transform 170ms ease, filter 170ms ease;
}

.game-link:hover,
.game-link:focus-visible {
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.game-link span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.hero,
.promo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: #08100e;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero {
  display: flex;
  min-height: 381px;
  padding: 65px 30px;
  align-items: center;
  background-image: var(--hero-image);
  background-position: var(--hero-focus);
}

.hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(1,5,4,.96) 0%, rgba(2,7,6,.91) 29%, rgba(3,7,7,.48) 53%, rgba(3,6,7,.08) 76%);
}

.hero::after,
.content-section::after,
.service-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::after {
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 5px;
  background: linear-gradient(var(--mint) 0 58%, #fff 58% 72%, var(--rosso) 72%);
  transform: skewX(-14deg);
}

.hero__copy {
  display: grid;
  width: min(62%, 620px);
  gap: 16px;
}

.hero h1,
.hero p {
  color: #fff;
}

.hero h1 {
  color: var(--mint-bright);
}

.hero p {
  width: 100%;
  max-width: none;
  font-size: 16px;
  line-height: 1.5;
}

.hero .cta {
  justify-self: start;
  min-width: 188px;
}

.content-section {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  padding: 20px;
  gap: 20px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.content-section::after,
.service-card::after {
  top: 0;
  right: 0;
  width: 56px;
  height: 9px;
  background: linear-gradient(90deg, var(--mint) 0 48%, #fff 48% 62%, var(--rosso) 62%);
  clip-path: polygon(20% 0,100% 0,100% 100%,0 100%);
}

.content-section > h2 {
  position: relative;
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.content-section > .cta {
  justify-self: start;
  width: auto;
  max-width: 100%;
}

.content-section > h2::after,
.service-qa h2::after {
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 15px;
  content: "";
  background: linear-gradient(90deg, var(--mint) 0 52%, #e8e8e8 52% 67%, var(--rosso) 67%);
  transform: scaleX(.4);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}

.content-section.is-revealed > h2::after,
.service-qa.is-revealed h2::after {
  transform: scaleX(1);
}

.content-section > p,
.content-section > ul,
.content-section > ol,
.content-section > h3,
.content-section > .table-wrap,
.faq-answer > p,
.faq-answer > ul,
.faq-answer > ol {
  width: 100%;
  max-width: none;
}

.source-paragraph,
.source-list li,
.service-qa p {
  font-size: 15px;
  line-height: 23.25px;
}

.bonus-offer-grid {
  display: grid;
  width: 100%;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bonus-offer-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 238px;
  padding: 22px;
  gap: 14px;
  overflow: hidden;
  border: 1px solid #dbe4e0;
  border-top: 4px solid var(--violet);
  border-radius: 8px;
  background: linear-gradient(145deg, #fff 0%, #f7f4ff 100%);
  box-shadow: 0 7px 18px rgba(8, 13, 11, .08);
}

.bonus-offer-card--sport {
  border-top-color: var(--mint);
  background: linear-gradient(145deg, #fff 0%, #effbf7 100%);
}

.bonus-offer-card:last-child {
  grid-column: 1 / -1;
}

.bonus-offer-card__number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(8, 13, 11, .08);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.bonus-offer-card h3 {
  max-width: calc(100% - 44px);
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  text-transform: uppercase;
}

.bonus-offer-card__amount {
  margin: 0;
  color: #5f16d9;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.bonus-offer-card--sport .bonus-offer-card__amount {
  color: #008b65;
}

.bonus-offer-card dl {
  display: grid;
  margin: 0;
  gap: 8px;
}

.bonus-offer-card dl > div {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(112px, .8fr) minmax(0, 1.2fr);
}

.bonus-offer-card dt,
.bonus-offer-card dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.bonus-offer-card dt {
  color: var(--muted);
  font-weight: 700;
}

.bonus-offer-card dd {
  color: var(--ink);
  font-weight: 700;
}

.reviews-section__intro,
.review-summary,
.review-grid {
  grid-column: 1 / -1;
}

.review-summary {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 12px 16px;
  gap: 12px;
  border: 1px solid #cde7de;
  border-radius: 8px;
  background: #effbf7;
}

.review-summary strong {
  color: #008b65;
  font-size: 24px;
  line-height: 1;
}

.review-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  display: grid;
  min-width: 0;
  padding: 20px;
  gap: 16px;
  border: 1px solid #dbe4e0;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff 0%, #f7faf9 100%);
  box-shadow: 0 7px 18px rgba(8, 13, 11, .08);
}

.review-card:last-child {
  grid-column: 1 / -1;
}

.review-card__header {
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
}

.review-card__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  background: #08110e;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.review-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.35;
}

.review-card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.review-card__published {
  margin: 3px 0 0;
  color: #66716d;
  font-size: 11px;
  line-height: 1.35;
}

.review-card__stars {
  color: #5f16d9;
  font-size: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.review-card blockquote {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--mint);
}

.review-card blockquote p {
  margin: 0;
}

.editorial-note {
  padding: 15px 16px;
  border-left: 4px solid var(--mint);
  background: linear-gradient(90deg, #f1f7f5, #fff);
}

.author-card {
  display: grid;
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid #cfe3dc;
  border-left: 4px solid var(--mint);
  border-radius: 6px;
  background: linear-gradient(100deg, #eef8f5 0%, #fff 100%);
  box-shadow: 0 6px 16px rgba(8, 13, 11, .07);
}

.author-card__line {
  margin: 0;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(159, 190, 179, .38);
}

.author-card__line:last-child {
  border-bottom: 0;
}

.author-card__line strong {
  color: #006f52;
  font-weight: 900;
}

.source-list {
  display: grid;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.source-list li {
  position: relative;
  min-height: 24px;
  padding-left: 31px;
}

ul.source-list li::before {
  position: absolute;
  top: .55em;
  left: 5px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  content: "";
  transform: rotate(-45deg);
}

ol.steps-pitlane {
  counter-reset: pitstep;
}

ol.steps-pitlane::before {
  position: absolute;
}

ol.steps-pitlane li {
  counter-increment: pitstep;
  padding-left: 42px;
}

ol.steps-pitlane li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 27px;
  height: 27px;
  border: 1px solid #bcc7c3;
  border-left: 4px solid var(--rosso);
  border-radius: 3px;
  content: counter(pitstep);
  place-items: center;
  background: #07100d;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.table-wrap {
  position: relative;
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid #cfd6d8;
  border-radius: 5px;
  scrollbar-color: var(--mint) #e7ebed;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
}

th,
td {
  position: relative;
  padding: 13px 14px;
  border-right: 1px solid #d8dddf;
  border-bottom: 1px solid #d8dddf;
  vertical-align: middle;
  text-align: left;
}

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

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

th {
  background: #090d0c;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

tbody tr:nth-child(even) td {
  background: linear-gradient(90deg, #f6f8f8, #fff);
}

tbody tr:hover td {
  background: #edf9f5;
}

td:first-child,
th:first-child {
  position: sticky;
  z-index: 2;
  left: 0;
  min-width: 180px;
  font-weight: 700;
  box-shadow: 2px 0 0 rgba(0, 230, 161, .25);
}

td:first-child {
  background: #f3f6f5;
}

tbody tr:nth-child(even) td:first-child,
tbody tr:hover td:first-child {
  background: #eaf4f1;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 62px;
  padding: 15px 50px 15px 20px;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
  transition: background 160ms ease, padding-left 160ms ease;
}

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

.faq-item summary::before {
  top: 9px;
  bottom: 9px;
  left: 0;
}

.faq-item summary::after {
  position: absolute;
  right: 17px;
  width: 19px;
  height: 19px;
  border: 1px solid #9da8a4;
  content: "+";
  color: var(--rosso);
  font-size: 19px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease;
}

.faq-item summary:hover,
.faq-item[open] summary {
  padding-left: 25px;
  background: #f2f7f5;
}

.faq-item[open] summary::after {
  background: #080c0b;
  color: var(--mint);
  content: "−";
  transform: rotate(90deg);
}

.faq-answer {
  display: grid;
  padding: 0 20px 20px;
  gap: 14px;
}

.promo {
  min-height: 260px;
  background-image: var(--promo-image);
  background-position: var(--promo-focus);
}

.promo::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
}

.promo--focus-right::before {
  background: linear-gradient(90deg, rgba(2,6,5,.97) 0%, rgba(2,6,5,.84) 38%, rgba(2,6,5,.2) 66%, transparent 80%);
}

.promo--focus-left::before {
  background: linear-gradient(270deg, rgba(2,6,5,.97) 0%, rgba(2,6,5,.84) 38%, rgba(2,6,5,.2) 66%, transparent 80%);
}

.promo__copy {
  position: relative;
  display: grid;
  width: 52%;
  min-height: 260px;
  padding: 30px;
  align-content: center;
  gap: 12px;
}

.promo--focus-left .promo__copy {
  margin-left: auto;
}

.promo__title {
  color: var(--mint-bright);
  font-size: clamp(24px, 3.1vw, 36px);
  line-height: 1.12;
  font-weight: 800;
}

.promo__subtitle {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.promo .cta {
  justify-self: start;
  margin-top: 3px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  position: relative;
  display: grid;
  width: 190px;
  min-height: 56px;
  padding: 9px 14px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 5px;
  background: #050707;
  color: #fff;
  box-shadow: 0 4px 0 rgba(0,0,0,.32);
  transition: transform 140ms ease, border-color 140ms ease;
}

.content-section .store-button {
  border-color: #252c2a;
}

.store-button:hover,
.store-button:focus-visible {
  border-color: var(--mint);
  transform: translateY(-2px);
}

.store-button:active,
.store-button[data-pressed="true"] {
  transform: translateY(2px);
}

.store-button > img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.store-button span {
  display: grid;
  line-height: 1.05;
}

.store-button small {
  margin-bottom: 3px;
  color: #c4cdca;
  font-size: 10px;
}

.store-button strong {
  font-size: 16px;
}

.site-footer {
  margin-top: 30px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--mint) 0 45%, #fff 45% 55%, var(--rosso) 55%) 1;
  background: #020303;
  color: #e9efed;
}

.footer-inner {
  display: grid;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 38px 30px 20px;
  grid-template-columns: minmax(280px, 1.4fr) minmax(150px, .7fr) minmax(190px, .9fr) minmax(310px, 1.2fr);
  gap: 34px;
}

.footer-brand,
.footer-column,
.footer-responsible {
  align-self: start;
}

.footer-brand img {
  margin-bottom: 18px;
}

.footer-brand p,
.footer-responsible p {
  color: #abb5b2;
  font-size: 13px;
  line-height: 1.55;
}

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

.footer-column p {
  margin-bottom: 5px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a {
  position: relative;
  justify-self: start;
  color: #b9c2bf;
  font-size: 13px;
}

.footer-column a::after {
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
}

.footer-responsible {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
}

.age-badge {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.age-asset {
  position: relative;
  display: block;
}

.footer-responsible strong {
  color: #fff;
}

.footer-locales {
  display: grid;
  padding: 18px 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid #222a28;
}

.site-footer .footer-locale-link {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  padding: 9px 12px;
  align-items: center;
  gap: 9px;
  border: 1px solid #454b4d;
  border-radius: 8px;
  background: #34393d;
  color: #f3f4f6;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.site-footer .footer-locale-link:hover,
.site-footer .footer-locale-link:focus-visible {
  border-color: var(--mint);
  background: #444b4e;
  color: #fff;
  transform: translateY(-1px);
}

.site-footer .footer-locale-link[aria-current="page"] {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  padding-top: 18px;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid #222a28;
  color: #7f8b87;
  font-size: 12px;
}

.service-main {
  width: 100%;
  max-width: 1120px;
  min-height: 56vh;
  margin: 20px auto 0;
  padding: 0 30px;
}

.service-card,
.not-found {
  position: relative;
  display: grid;
  padding: 28px;
  gap: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--rosso);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-card h1,
.not-found h1 {
  color: var(--ink);
}

.service-qa {
  display: grid;
  width: 100%;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-qa h2 {
  font-size: 22px;
  line-height: 1.35;
}

.not-found {
  min-height: 430px;
  align-content: center;
  justify-items: start;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.55)),
    url("../images/hero-betting.webp") 68% 48% / cover;
}

.not-found h1,
.not-found > p:not(.eyebrow) {
  color: #fff;
}

.not-found h1 {
  color: var(--mint);
}

@media (max-width: 1359px) {
  .site-grid {
    display: block;
    max-width: 1080px;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1.3fr .8fr .9fr;
  }

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

  .footer-locales {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .header-inner,
  .site-grid,
  .service-main,
  .footer-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .header-inner {
    gap: 14px;
  }

  .mobile-menu {
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .mobile-menu__actions .cta {
    min-height: 46px;
    padding-inline: 12px;
    white-space: normal;
  }

  .brand img {
    width: 120px;
    height: auto;
  }

  .header-actions {
    gap: 8px;
  }

  .cta--login {
    display: none;
  }

  .locale {
    min-height: 40px;
    padding: 7px 9px;
  }

  .locale-menu {
    top: calc(var(--header-height) + 8px);
    width: min(520px, calc(100vw - 24px));
    max-height: calc(100dvh - var(--header-height) - 16px);
    padding: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .locale-option {
    min-height: 36px;
    padding: 5px 6px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
  }

  .locale-menu .locale-name {
    display: none;
  }

  .locale-menu .locale-code {
    display: inline;
    font-size: 11px;
    letter-spacing: .04em;
  }

  .cta--register-header {
    display: none;
  }

  .mobile-menu__actions .cta--register {
    min-width: 92px;
    min-height: 40px;
    padding: 9px 15px;
    font-size: 12px;
  }

  .site-grid,
  .service-main {
    margin-top: 16px;
  }

  .content-main {
    gap: 16px;
  }

  .hero {
    min-height: 420px;
    padding: 34px 20px;
    align-items: flex-end;
    background-position: var(--hero-focus);
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(1,5,4,.98) 0%, rgba(1,5,4,.88) 44%, rgba(1,5,4,.32) 72%, rgba(1,5,4,.1) 100%);
  }

  .hero::after {
    left: 7px;
    width: 4px;
  }

  .hero__copy {
    width: 100%;
  }

  h1,
  h2 {
    font-size: clamp(25px, 7.6vw, 30px);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .content-section {
    padding: 20px;
  }

  .content-section p,
  .content-section li,
  .promo__copy,
  .store-button span {
    overflow-wrap: anywhere;
  }

  .promo {
    min-height: 360px;
    background-position: var(--promo-focus-mobile, var(--promo-focus));
  }

  .promo::before,
  .promo--focus-left::before,
  .promo--focus-right::before {
    background: linear-gradient(0deg, rgba(2,6,5,.98) 0%, rgba(2,6,5,.9) 43%, rgba(2,6,5,.28) 77%, rgba(2,6,5,.08) 100%);
  }

  .promo__copy,
  .promo--focus-left .promo__copy {
    width: 100%;
    min-height: 360px;
    margin: 0;
    padding: 24px 20px;
    align-content: end;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .promo__title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .store-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .store-button {
    width: 100%;
  }

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

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

  .footer-locales {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .site-footer .footer-locale-link {
    min-height: 38px;
    padding: 6px 7px;
    justify-content: center;
    gap: 6px;
  }

  .footer-locale-name {
    display: none;
  }

  .footer-locale-code {
    display: inline;
    font-size: 11px;
    letter-spacing: .04em;
  }
}

@media (max-width: 520px) {
  .locale-menu {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .locale-option {
    min-height: 34px;
    padding: 4px 3px;
    grid-template-columns: 18px auto;
    justify-content: center;
    gap: 4px;
  }

  .locale-menu .locale-flag {
    width: 18px;
    height: 18px;
  }

  .locale-menu .locale-code {
    font-size: 10px;
  }

  .bonus-offer-grid {
    grid-template-columns: 1fr;
  }

  .bonus-offer-card,
  .bonus-offer-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

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

  .review-card:last-child {
    grid-column: auto;
  }

  .review-card__header {
    align-items: start;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .review-card__stars {
    grid-column: 2;
  }

  .header-inner {
    gap: 8px;
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }

  .hero {
    min-height: 455px;
    padding: 28px 18px;
  }

  .hero__copy {
    gap: 14px;
  }

  .hero .cta {
    width: 100%;
  }

  .store-buttons {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .store-button {
    max-width: 100%;
  }

  .promo {
    min-height: 390px;
  }

  .promo__copy,
  .promo--focus-left .promo__copy {
    min-height: 390px;
  }

  .promo .cta {
    width: 100%;
    white-space: normal;
  }

  .content-section,
  .service-card,
  .not-found {
    padding: 18px;
  }

  .content-section > .table-wrap {
    width: calc(100% + 36px);
    max-width: none;
    margin-right: -18px;
    margin-left: -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  td:first-child,
  th:first-child {
    min-width: 150px;
  }

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

  .footer-brand,
  .footer-column,
  .footer-responsible,
  .footer-bottom {
    grid-column: 1;
    justify-items: center;
  }

  .footer-column a {
    justify-self: center;
  }

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

  .footer-bottom {
    display: grid;
    gap: 6px;
  }
}

@media (max-width: 768px) and (max-height: 520px) {
  .hero {
    min-height: 360px;
    padding-block: 24px;
  }

  .promo,
  .promo__copy,
  .promo--focus-left .promo__copy {
    min-height: 320px;
  }
}

@media (max-width: 360px) {
  .header-actions {
    gap: 6px;
  }

  .mobile-menu__actions .cta--register {
    min-width: 80px;
    padding-inline: 11px;
  }

  .brand img {
    width: 104px;
  }

  .promo__title {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .content-section > h2::after,
  .service-qa h2::after {
    transform: scaleX(1);
  }
}
