:root {
  --ink-950: #050a12;
  --ink-900: #07121f;
  --ink-850: #0a1725;
  --ink-800: #0e1d2d;
  --ink-750: #132337;
  --text: #eef7ff;
  --text-soft: #a9b8c9;
  --line: rgba(167, 190, 218, 0.16);
  --line-strong: rgba(167, 190, 218, 0.28);
  --mint: #00ffad;
  --mint-dark: #00bd84;
  --violet: #a276ff;
  --pacific: #347fd3;
  --copper: #df7446;
  --danger: #ff8f76;
  --radius: 6px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.23);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
  background: var(--ink-950);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background-color: var(--ink-950);
  background-image:
    repeating-linear-gradient(168deg, transparent 0 56px, rgba(52, 127, 211, 0.045) 57px 58px, transparent 59px 104px),
    repeating-linear-gradient(12deg, transparent 0 82px, rgba(223, 116, 70, 0.035) 83px 84px, transparent 85px 152px);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.btn,
.store-btn {
  position: relative;
  display: inline-flex;
  width: auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(0, 255, 173, 0.48);
  border-radius: 4px;
  color: #03120d;
  background: var(--mint);
  box-shadow: 0 5px 0 #008d64;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  isolation: isolate;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cta-bonus {
  color: #fff;
  border-color: rgba(162, 118, 255, 0.7);
  background: var(--violet);
  box-shadow: 0 5px 0 #5f38ba;
}

.btn::after,
.store-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  opacity: 0;
  transform: scale(0.2) rotate(45deg);
  transition: transform 300ms ease, opacity 300ms ease;
}

.btn.is-pressing::after,
.store-btn.is-pressing::after {
  opacity: 0.22;
  transform: scale(4.7) rotate(45deg);
}

.btn:hover,
.store-btn:hover {
  transform: translateY(-1px);
  background: #5affc9;
  box-shadow: 0 7px 0 #008d64;
}

.cta-bonus:hover {
  background: #b390ff;
  box-shadow: 0 7px 0 #5f38ba;
}

.btn:active,
.store-btn:active,
.btn.is-pressing,
.store-btn.is-pressing {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #008d64;
}

.cta-bonus:active,
.cta-bonus.is-pressing {
  box-shadow: 0 1px 0 #5f38ba;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 75px;
  border-bottom: 1px solid rgba(0, 255, 173, 0.18);
  background: rgba(5, 10, 18, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.header-inner {
  position: relative;
  display: flex;
  width: min(100%, 1600px);
  height: 75px;
  margin: 0 auto;
  padding: 0 30px;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

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

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: stretch;
  align-self: stretch;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--text-soft);
  font-weight: 700;
}

.nav-link::before,
.nav-link::after,
.footer-inner nav a::after,
.footer-bottom a::after,
.article-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 13px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--pacific), var(--copper));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after,
.footer-inner nav a:hover::after,
.footer-inner nav a:focus-visible::after,
.footer-bottom a:hover::after,
.article-nav a:hover::after,
.article-nav a:focus-visible::after,
.article-nav a.active::after {
  transform: scaleX(1);
}

.nav-link.active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  left: 12px;
  height: 2px;
  background: var(--mint);
}

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

.mobile-menu-actions {
  display: none;
}

.locale-trigger,
.login-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-weight: 700;
  white-space: nowrap;
}

.locale-picker {
  position: relative;
  flex: 0 0 auto;
}

.locale-trigger {
  min-width: 58px;
  min-height: 40px;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #fff;
  background: var(--ink-850);
  font: inherit;
  cursor: pointer;
}

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

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

.locale-trigger .locale-flag {
  width: 24px;
  height: 24px;
}

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

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

.locale-menu {
  position: fixed;
  z-index: 1200;
  top: 85px;
  left: 50vw;
  display: grid;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100dvh - 101px);
  padding: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: #fff;
  background: #090e16;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%);
}

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

.locale-option {
  display: grid;
  min-width: 0;
  min-height: 42px;
  padding: 8px 10px;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--text-soft);
  background: var(--ink-800);
  font-size: 13px;
  font-weight: 800;
}

.locale-option:hover,
.locale-option:focus-visible {
  color: #fff;
  border-color: var(--line-strong);
  background: #343940;
  outline: none;
}

.locale-option[aria-current="page"],
.locale-option[aria-current="page"]:hover,
.locale-option[aria-current="page"]:focus-visible {
  color: #02140e;
  border-color: var(--mint);
  background: var(--mint);
}

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

.login-link:hover {
  color: var(--mint);
}

.header-register {
  min-height: 42px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: inherit;
  background: var(--ink-800);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--mint);
  transform-origin: center;
  transition: transform 200ms ease, opacity 160ms ease, width 200ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  width: 20px;
  transform: translate(2px, 7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

body.menu-open .menu-toggle span:nth-child(3) {
  width: 20px;
  transform: translate(2px, -7px) rotate(-45deg);
}

.mobile-menu-scrim {
  position: fixed;
  z-index: 900;
  inset: 60px 0 0;
  background: rgba(1, 5, 10, 0.72);
}

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

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

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

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

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

.sidebar-stack {
  display: grid;
  max-height: calc(100vh - 115px);
  gap: 16px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--pacific) transparent;
}

.side-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 23, 37, 0.95);
}

.side-card h2 {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  font-size: 16px;
  line-height: 1.35;
}

.side-card p {
  width: 100%;
  max-width: none;
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

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

.side-tabs a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-soft);
  background: var(--ink-900);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.side-tabs a:hover {
  border-color: var(--copper);
  color: #fff;
}

.side-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px !important;
  color: #fff !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4967;
  box-shadow: 0 0 0 4px rgba(255, 73, 103, 0.13);
}

.sport-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 4px;
  list-style: none;
}

.sport-list li {
  position: relative;
  display: grid;
  min-height: 42px;
  padding: 7px 8px;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 9px;
  border-radius: 4px;
  color: var(--text-soft);
  transition: color 160ms ease, background-color 160ms ease;
}

.sport-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 2px;
  background: var(--copper);
  transform: scaleY(0.25);
  transition: transform 180ms ease;
}

.sport-list li:hover {
  color: #fff;
  background: rgba(52, 127, 211, 0.12);
}

.sport-list li:hover::before {
  transform: scaleY(1);
}

.sport-list small {
  color: var(--copper);
  font-weight: 800;
}

.mockup-sidebar-links,
.league-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 3px;
  list-style: none;
}

.mockup-sidebar-links a,
.league-list a {
  position: relative;
  display: grid;
  min-height: 40px;
  padding: 8px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.25;
  transition: color 160ms ease, background-color 160ms ease;
}

.mockup-sidebar-links a::before,
.league-list a::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 2px;
  background: var(--copper);
  transform: scaleY(0.24);
  transition: transform 180ms ease;
}

.mockup-sidebar-links a:hover,
.mockup-sidebar-links a:focus-visible,
.league-list a:hover,
.league-list a:focus-visible {
  color: #fff;
  background: rgba(52, 127, 211, 0.12);
}

.mockup-sidebar-links a:hover::before,
.mockup-sidebar-links a:focus-visible::before,
.league-list a:hover::before,
.league-list a:focus-visible::before {
  transform: scaleY(1);
}

.mockup-sidebar-links img,
.league-list img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.popular-card h2,
.quick-card h2 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-nav {
  display: grid;
  gap: 2px;
}

.article-nav a {
  position: relative;
  padding: 8px 4px 9px 12px;
  border-left: 2px solid transparent;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.35;
}

.article-nav a::after {
  right: 4px;
  bottom: 4px;
  left: 12px;
  height: 1px;
}

.article-nav a.active {
  border-left-color: var(--mint);
  color: #fff;
}

.game-shortcuts {
  display: grid;
  gap: 12px;
}

.game-shortcuts a {
  position: relative;
  min-height: 116px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-800);
}

.game-shortcuts img {
  width: 100%;
  height: 116px;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.game-shortcuts span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 12px 9px;
  background: linear-gradient(0deg, rgba(3, 8, 14, 0.95), transparent);
  font-weight: 800;
}

.game-shortcuts a:hover img {
  transform: scale(1.04);
  filter: saturate(1.12);
}

.visual-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 173, 0.22);
  border-radius: var(--radius);
  background: var(--ink-900);
  box-shadow: var(--shadow);
}

.hero-banner {
  min-height: 381px;
}

.promo-banner {
  min-height: 260px;
}

.banner-media,
.banner-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.banner-media {
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
}

.banner-overlay {
  z-index: -1;
}

.focal-right .banner-overlay {
  background:
    linear-gradient(90deg, rgba(3, 9, 17, 0.98) 0%, rgba(3, 9, 17, 0.9) 42%, rgba(3, 9, 17, 0.42) 68%, rgba(3, 9, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 10, 18, 0.6), transparent 52%);
}

.focal-left .banner-overlay {
  background:
    linear-gradient(270deg, rgba(3, 9, 17, 0.98) 0%, rgba(3, 9, 17, 0.9) 42%, rgba(3, 9, 17, 0.42) 68%, rgba(3, 9, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 10, 18, 0.6), transparent 52%);
}

.banner-copy {
  display: flex;
  min-height: inherit;
  width: 62%;
  padding: 65px 30px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.focal-left .banner-copy {
  margin-left: auto;
  align-items: flex-start;
}

.hero-title,
.promo-title {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: #fff;
  text-wrap: wrap;
}

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

.promo-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.banner-lead {
  width: 100%;
  max-width: none;
  margin: 16px 0;
  color: #dbe9f6;
  font-size: 15px;
  line-height: 23.25px;
}

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

.section-store-pair {
  margin: 20px 0 28px;
}

.store-btn {
  width: 205px;
  height: 64px;
  padding: 9px 12px;
  justify-content: flex-start;
  color: #fff;
  border-color: rgba(162, 118, 255, 0.58);
  background: rgba(11, 23, 37, 0.9);
  box-shadow: 0 5px 0 #2f1d58;
  white-space: normal;
}

.store-btn:hover {
  color: #fff;
  background: rgba(22, 39, 59, 0.98);
  box-shadow: 0 7px 0 #2f1d58;
}

.store-btn span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn > img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.store-btn small,
.store-btn strong {
  display: block;
  white-space: nowrap;
}

.store-btn small {
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-btn strong {
  font-size: 13px;
  line-height: 1.25;
  white-space: normal;
  text-align: left;
}

.content-section {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 23, 37, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  width: 88px;
  height: 4px;
  background: linear-gradient(90deg, var(--pacific) 0 28%, transparent 28% 36%, var(--copper) 36% 68%, transparent 68% 76%, var(--mint) 76%);
  transform-origin: 100% 50%;
}

.motion-ready .content-section::before,
.motion-ready .promo-banner::after {
  transform: scaleX(0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .content-section.is-visible::before,
.motion-ready .promo-banner.is-visible::after {
  transform: scaleX(1);
}

.promo-banner::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--copper) 20% 35%, transparent 35% 47%, var(--pacific) 47% 72%, transparent);
  transform-origin: 50% 50%;
}

.content-section h2,
.service-block h1,
.service-block h2 {
  width: 100%;
  max-width: none;
  padding: 0;
  color: #fff;
  text-wrap: wrap;
}

.content-section > h2 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

.section-body {
  display: flow-root;
  width: 100%;
  max-width: none;
}

.section-body > * {
  max-width: none;
}

.section-body > * + * {
  margin-top: 20px;
}

.section-body h3 {
  width: 100%;
  max-width: none;
  margin: 20px 0;
  padding: 0;
  color: var(--mint);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: uppercase;
  text-wrap: wrap;
}

.section-body p,
.service-block p,
.faq-answer p,
.comparison-card p,
.review-card p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #d8e5f1;
  font-size: 15px;
  line-height: 23.25px;
}

.source-list,
.steps {
  display: grid;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.source-list li,
.steps li {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: start;
  color: #d8e5f1;
  font-size: 15px;
  line-height: 23.25px;
}

.source-list li {
  padding-left: 24px;
}

.source-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--copper);
  transform: rotate(45deg);
}

.steps {
  counter-reset: coastal-step;
}

.steps li {
  min-height: 36px;
  padding-left: 50px;
  counter-increment: coastal-step;
}

.steps li::before {
  content: counter(coastal-step, decimal-leading-zero);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  background: var(--ink-900);
  font-size: 11px;
  font-weight: 800;
}

.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: -10px;
  left: 16px;
  width: 2px;
  background: linear-gradient(var(--copper), var(--pacific));
}

.table-wrap {
  width: 100%;
  max-width: none;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  scrollbar-width: thin;
  scrollbar-color: var(--copper) var(--ink-900);
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  color: #dbe8f4;
  background: var(--ink-900);
  font-size: 14px;
  line-height: 1.45;
}

th,
td {
  min-width: 120px;
  padding: 13px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  text-align: left;
}

tr > :last-child {
  border-right: 0;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

thead th {
  position: sticky;
  z-index: 3;
  top: 0;
  color: #fff;
  background-color: #10253a;
  background-image: repeating-linear-gradient(165deg, transparent 0 22px, rgba(223, 116, 70, 0.12) 23px 24px, transparent 25px 38px);
  font-weight: 800;
}

tbody th {
  position: sticky;
  z-index: 2;
  left: 0;
  color: #fff;
  background: #132a3d;
  box-shadow: 3px 0 0 rgba(223, 116, 70, 0.75);
  font-weight: 700;
}

tbody tr:nth-child(even) td {
  background: rgba(52, 127, 211, 0.055);
}

tbody tr {
  transition: background-color 140ms ease;
}

tbody tr:hover td,
tbody tr:hover th {
  background-color: rgba(223, 116, 70, 0.12);
}

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

.review-aggregate {
  display: inline-grid;
  width: auto !important;
  max-width: 100%;
  align-items: center;
  padding: 10px 16px;
  grid-template-columns: auto auto auto;
  gap: 12px;
  border: 1px solid rgba(0, 245, 191, 0.42);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(0, 245, 191, 0.07);
}

.review-aggregate-label,
.review-aggregate-value,
.review-aggregate-count {
  white-space: nowrap;
}

.review-aggregate-label {
  color: #fff;
  font-weight: 800;
}

.review-aggregate-value {
  color: var(--mint);
  font-size: 18px;
  line-height: 1;
}

.review-aggregate-count {
  font-size: 13px;
}

.promo-card-grid {
  display: grid;
  margin: 22px 0 26px;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.promo-detail-card {
  position: relative;
  min-width: 0;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(52, 127, 211, 0.1), transparent 46%),
    rgba(7, 19, 32, 0.92);
}

.promo-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--pacific) 55%, var(--copper));
}

.promo-detail-card:nth-child(5) {
  grid-column: 1 / -1;
}

.promo-detail-card h3 {
  margin-top: 0;
  color: var(--mint);
}

.promo-detail-card p:last-child {
  margin-bottom: 0;
}

.comparison-card,
.review-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 13, 23, 0.68);
  transition: border-color 180ms ease, transform 180ms ease;
}

.comparison-card:hover,
.review-card:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
}

.comparison-card.positive {
  border-top-color: var(--mint);
}

.comparison-card.caution {
  border-top-color: var(--danger);
}

.comparison-card h3 {
  margin-top: 0;
}

.review-author {
  margin-bottom: 12px !important;
  color: #fff !important;
  font-weight: 800;
}

.review-copy {
  color: var(--text-soft) !important;
  font-style: italic;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 13, 23, 0.68);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(0, 255, 173, 0.44);
  background: rgba(11, 28, 42, 0.96);
}

.faq-item:hover {
  transform: translateX(2px);
}

.faq-item summary {
  display: grid;
  min-height: 58px;
  padding: 14px 16px;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 16px;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

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

.faq-question {
  min-width: 0;
  font-weight: 750;
  line-height: 1.4;
}

.faq-marker {
  position: relative;
  width: 30px;
  height: 24px;
}

.faq-marker::before,
.faq-marker::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 16px;
  height: 2px;
  background: var(--copper);
  transition: transform 180ms ease;
}

.faq-marker::before {
  left: 1px;
  transform: rotate(28deg);
}

.faq-marker::after {
  right: 1px;
  transform: rotate(-28deg);
}

.faq-item[open] .faq-marker::before {
  transform: rotate(-28deg);
}

.faq-item[open] .faq-marker::after {
  transform: rotate(28deg);
}

.faq-answer {
  display: grid;
  padding: 0 16px 17px;
  gap: 12px;
}

.identity-card,
.responsible-block {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background: rgba(223, 116, 70, 0.06);
}

.identity-card {
  display: grid;
  gap: 6px;
}

.identity-card p {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.responsible-block {
  border-left-color: var(--mint);
  background: rgba(0, 255, 173, 0.05);
}

.responsible-block h3 {
  margin-top: 0;
}

.section-cta {
  display: inline-flex;
  width: fit-content;
}

.service-main {
  width: min(calc(100% - 60px), 1020px);
  margin: 20px auto 0;
}

.service-block {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 23, 37, 0.96);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 8px !important;
  color: var(--copper) !important;
  font-size: 12px !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-block > h1 {
  margin: 0 0 24px;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
}

.service-pair {
  width: 100%;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.service-pair h2 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.4;
}

.error-block {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.internal-btn {
  margin-top: 20px;
}

.site-footer {
  margin-top: 20px;
  border-top: 1px solid rgba(0, 255, 173, 0.2);
  background: #040a12;
}

.footer-inner,
.footer-bottom {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.footer-inner {
  display: grid;
  padding-top: 34px;
  padding-bottom: 28px;
  grid-template-columns: minmax(240px, 1.4fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(240px, 1fr);
  gap: 28px;
}

.footer-locales-wrap {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 0 30px;
}

.footer-locales {
  display: grid;
  padding: 18px 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-locale-link {
  display: inline-flex;
  min-width: 0;
  min-height: 46px;
  padding: 9px 12px;
  align-items: center;
  gap: 9px;
  border: 1px solid #414750;
  border-radius: 8px;
  color: #f4f6f8;
  background: #343940;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

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

.footer-locale-link[aria-current="page"],
.footer-locale-link[aria-current="page"]:hover,
.footer-locale-link[aria-current="page"]:focus-visible {
  color: #02140e;
  border-color: var(--mint);
  background: var(--mint);
}

.footer-brand p,
.footer-responsible p {
  width: 100%;
  max-width: none;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.footer-inner nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-inner nav h2 {
  margin: 0 0 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-inner nav a,
.footer-bottom a {
  position: relative;
  padding-bottom: 4px;
  color: var(--text-soft);
}

.footer-inner nav a::after,
.footer-bottom a::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
}

.footer-responsible {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 14px;
}

.footer-responsible p {
  margin-top: 0;
}

.age-badge {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--danger);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  min-height: 58px;
  padding-top: 16px;
  padding-bottom: 16px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12px;
}

@media (max-width: 1450px) {
  .header-inner {
    gap: 14px;
  }

  .nav-link {
    padding-right: 9px;
    padding-left: 9px;
  }

  .login-link {
    font-size: 13px;
  }
}

@media (max-width: 1360px) {
  .site-layout {
    display: block;
  }

  .main-content {
    width: min(100%, 1020px);
    margin: 0 auto;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
    order: 3;
    margin-left: 0;
  }

  .primary-nav {
    position: absolute;
    z-index: 1002;
    top: 75px;
    right: 30px;
    left: 30px;
    display: none;
    min-height: 0;
    max-height: calc(100vh - 75px);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line-strong);
    border-top: 2px solid var(--mint);
    border-radius: 0 0 var(--radius) var(--radius);
    background: #07121f;
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  body.menu-open .primary-nav {
    display: flex;
  }

  .nav-link {
    min-height: 48px;
    padding: 0 12px;
  }

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

  .nav-link::after {
    bottom: 4px;
  }

  .header-actions,
  body.menu-open .header-actions {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .header-actions .login-link,
  .header-actions .header-register {
    display: none;
  }

  .mobile-menu-actions {
    display: grid;
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    gap: 16px;
  }

  .mobile-menu-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .mobile-menu-login {
    color: #fff;
    border-color: var(--line-strong);
    background: var(--ink-800);
    box-shadow: 0 5px 0 #17334a;
  }

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

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

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

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header,
  .header-inner {
    height: 60px;
  }

  .header-inner,
  .site-layout,
  .footer-inner,
  .footer-locales-wrap,
  .footer-bottom {
    padding-right: 16px;
    padding-left: 16px;
  }

  .locale-menu {
    top: 68px;
    width: min(480px, calc(100vw - 24px));
    max-height: calc(100dvh - 76px);
    padding: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .locale-option {
    display: flex;
    min-height: 38px;
    padding: 6px 7px;
    justify-content: center;
    gap: 6px;
  }

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

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

  .footer-locales {
    gap: 6px;
  }

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

  .primary-nav {
    top: 60px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 60px);
  }

  .site-layout {
    margin-top: 20px;
  }

  .service-main {
    width: calc(100% - 32px);
  }

  .banner-copy {
    width: 72%;
    padding: 44px 22px;
  }

  .hero-title,
  .content-section > h2,
  .service-block > h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .promo-title {
    font-size: 24px;
  }

  .comparison-grid,
  .review-grid,
  .promo-card-grid {
    grid-template-columns: 1fr;
  }

  .promo-detail-card:nth-child(5) {
    grid-column: auto;
  }

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

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

@media (max-width: 638px) {
  .hero-banner {
    min-height: 500px;
  }

  .promo-banner {
    min-height: 360px;
  }

  .visual-banner .banner-media {
    bottom: auto;
    height: 56%;
    object-position: var(--focus-x-mobile, var(--focus-x, 50%)) var(--focus-y-mobile, var(--focus-y, 50%));
  }

  .banner-copy,
  .focal-left .banner-copy {
    width: 100%;
    min-height: inherit;
    margin: 0;
    padding: 34px 20px;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .focal-right .banner-overlay,
  .focal-left .banner-overlay {
    background:
      linear-gradient(0deg, rgba(3, 9, 17, 0.98) 0%, rgba(3, 9, 17, 0.9) 48%, rgba(3, 9, 17, 0.25) 83%, rgba(3, 9, 17, 0.12) 100%),
      linear-gradient(90deg, rgba(3, 9, 17, 0.58), transparent 68%);
  }

  .visual-banner .btn {
    max-width: 100%;
  }

  .review-aggregate {
    width: 100% !important;
    padding: 13px 14px;
    grid-template-areas:
      "label label"
      "value count";
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    border-radius: var(--radius);
  }

  .review-aggregate-label {
    grid-area: label;
  }

  .review-aggregate-value {
    grid-area: value;
    font-size: 21px;
  }

  .review-aggregate-count {
    grid-area: count;
    white-space: normal;
  }

  .store-pair {
    width: 100%;
    flex-direction: column;
  }

  .store-btn {
    width: min(100%, 240px);
  }

  .content-section,
  .service-block {
    padding: 20px;
  }

  .content-section::before {
    right: 20px;
  }

  .content-section > h2,
  .service-block > h1 {
    font-size: 24px;
    line-height: 30px;
  }

  .section-body h3 {
    font-size: 18px;
    line-height: 28px;
  }

  table {
    min-width: 620px;
  }

  th,
  td {
    padding: 12px;
  }

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

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

  .footer-inner nav,
  .footer-brand,
  .footer-responsible {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .locale-menu {
    width: calc(100vw - 20px);
    padding: 7px;
    gap: 4px;
  }

  .locale-option {
    min-height: 34px;
    padding: 4px 3px;
    gap: 4px;
  }

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

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

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

@media (max-width: 390px) {
  .brand img {
    width: 124px;
    height: auto;
  }

  .hero-title {
    font-size: 23px;
    line-height: 29px;
  }

  .banner-copy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .btn {
    padding-right: 16px;
    padding-left: 16px;
  }

  .faq-item summary {
    padding-right: 12px;
    padding-left: 12px;
    grid-template-columns: 1fr 30px;
    gap: 10px;
  }
}

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

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

  .motion-ready .content-section::before,
  .motion-ready .promo-banner::after {
    transform: scaleX(1);
  }
}
