@font-face {
  font-family: "Montserrat";
  src: url("ui/montserrat-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #07080b;
  --ink-soft: #11131a;
  --paper: #ffffff;
  --field: #edf0f4;
  --text: #20232b;
  --muted: #666c78;
  --line: #d9dde5;
  --mint: #06e5a0;
  --mint-dark: #00a875;
  --violet: #9e01ff;
  --violet-dark: #6400a3;
  --czech-red: #d7141a;
  --czech-blue: #11457e;
  --success: #0b956f;
  --warning: #b83238;
  --shadow: 0 4px 14px rgba(18, 25, 38, 0.09);
  --radius: 6px;
  --cta-width: 158px;
  --cta-height: 46px;
  --header-height: 75px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

#main-content,
.content-section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(17, 69, 126, 0.035) 48% 49%, transparent 49% 100%),
    linear-gradient(45deg, transparent 0 52%, rgba(215, 20, 26, 0.025) 52% 53%, transparent 53% 100%),
    var(--field);
  background-size: 96px 96px, 128px 128px, auto;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #000;
  background: var(--mint);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  color: #fff;
  background: #050505;
  border-bottom: 1px solid rgba(6, 229, 160, 0.26);
}

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

.brand-link {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 135px;
  min-height: 40px;
  border-radius: 4px;
}

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

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

.nav-link,
.footer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  color: #f6f7f9;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::before,
.footer-link::before,
.article-link::before,
.sidebar-row::before,
.content-section::before,
.comparison-card::before,
.review-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link::before,
.footer-link::before {
  right: 8px;
  bottom: 12px;
  left: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--czech-blue) 0 30%, var(--mint) 30% 70%, var(--czech-red) 70%);
  clip-path: polygon(0 50%, 8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%);
  transform: scaleX(0.35);
}

.nav-link:hover::before,
.nav-link:focus-visible::before,
.footer-link:hover::before,
.footer-link:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: var(--mint);
}

.nav-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  margin-left: auto;
  gap: 10px;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--cta-width);
  min-width: var(--cta-width);
  height: var(--cta-height);
  min-height: var(--cta-height);
  padding: 0 18px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  color: #06130f;
  background: var(--mint);
  box-shadow: 0 8px 24px rgba(6, 229, 160, 0.2);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 130ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(17, 69, 126, 0);
  clip-path: polygon(12% 0, 88% 0, 100% 50%, 88% 100%, 12% 100%, 0 50%);
  transition: border-color 160ms ease, transform 130ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: #19f0b0;
  box-shadow: 0 10px 28px rgba(6, 229, 160, 0.34);
}

.cta:hover::after,
.cta:focus-visible::after {
  border-color: rgba(17, 69, 126, 0.65);
}

.cta.is-pressed,
.cta:active {
  transform: translateY(2px) scale(0.985);
  box-shadow: 0 3px 8px rgba(6, 229, 160, 0.26);
}

.cta.is-pressed::after,
.cta:active::after {
  border-color: rgba(215, 20, 26, 0.78);
  transform: scale(0.94);
}

.cta--secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.cta--secondary:hover,
.cta--secondary:focus-visible {
  color: #050505;
  background: #fff;
  box-shadow: none;
}

.cta--bonus {
  color: #fff;
  background: var(--violet);
  box-shadow: 0 8px 24px rgba(158, 1, 255, 0.22);
}

.cta--bonus:hover,
.cta--bonus:focus-visible {
  background: #b12eff;
  box-shadow: 0 10px 28px rgba(158, 1, 255, 0.32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 22px;
  height: 18px;
}

.menu-toggle__bar {
  position: absolute;
  left: 0;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 190ms ease, width 190ms ease, top 190ms ease, opacity 140ms ease;
}

.menu-toggle__bar:nth-child(1) { top: 1px; }
.menu-toggle__bar:nth-child(2) { top: 8px; }
.menu-toggle__bar:nth-child(3) { top: 15px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  top: 8px;
  width: 18px;
  transform: translateX(2px) rotate(42deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  width: 9px;
  transform: translateX(7px) rotate(90deg);
  opacity: 0.55;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  top: 8px;
  width: 18px;
  transform: translateX(2px) rotate(-42deg);
}

.mobile-panel {
  position: fixed;
  z-index: 99;
  top: 60px;
  right: 0;
  left: 0;
  display: none;
  padding: 14px 16px 18px;
  color: #fff;
  background: #08090d;
  border-top: 1px solid rgba(6, 229, 160, 0.18);
  border-bottom: 1px solid rgba(158, 1, 255, 0.28);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.mobile-panel[aria-hidden="false"] {
  display: block;
}

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

.mobile-nav .nav-link {
  min-height: 44px;
  padding: 0 4px;
}

.mobile-actions {
  display: flex;
  margin-top: 12px;
  padding-top: 14px;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.main-column {
  grid-column: 3;
  min-width: 0;
}

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

.sidebar {
  align-self: start;
  position: sticky;
  top: 95px;
  max-height: calc(100vh - 115px);
  overflow: auto;
  scrollbar-width: thin;
}

.sidebar-card {
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sidebar-title {
  margin: 0;
  padding: 10px 12px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.sidebar-row,
.article-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 7px 11px;
  gap: 9px;
  color: #363a43;
  background: #fff;
  border-bottom: 1px solid #edf0f4;
  font-size: 11px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}

.sidebar-row::before,
.article-link::before {
  top: 7px;
  bottom: 7px;
  left: 3px;
  width: 3px;
  background: linear-gradient(var(--czech-blue), var(--mint) 52%, var(--czech-red));
  transform: translateY(-2px) scaleY(0.45);
}

.sidebar-row:hover,
.sidebar-row:focus-visible,
.article-link:hover,
.article-link:focus-visible,
.article-link.is-active {
  color: #07080b;
  background: #f4fffb;
  transform: translateX(2px);
}

.sidebar-row:hover::before,
.sidebar-row:focus-visible::before,
.article-link:hover::before,
.article-link:focus-visible::before,
.article-link.is-active::before {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.sidebar-icon,
.league-logo {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.sidebar-label {
  min-width: 0;
}

.app-rail {
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(6, 229, 160, 0.12), rgba(158, 1, 255, 0.18)),
    #0a0c11;
}

.app-rail__icons {
  display: flex;
  margin-bottom: 10px;
  gap: 8px;
}

.app-rail__icons img {
  width: 26px;
  height: 26px;
}

.app-rail h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.app-rail p {
  margin: 0 0 14px;
  color: #cfd4dc;
  font-size: 12px;
  line-height: 1.5;
}

.app-rail .cta {
  width: 100%;
  min-width: 0;
}

.game-shortcut {
  position: relative;
  display: block;
  min-height: 94px;
  overflow: hidden;
  color: #fff;
  background: #111;
  border-bottom: 1px solid #24262d;
  text-decoration: none;
}

.game-shortcut img {
  width: 100%;
  height: 94px;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.game-shortcut span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 5px 8px;
  background: rgba(0, 0, 0, 0.74);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.game-shortcut:hover img,
.game-shortcut:focus-visible img {
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.035);
}

.hero,
.promo-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  background: #070a0d;
  box-shadow: var(--shadow);
}

.hero {
  display: flex;
  align-items: flex-end;
  min-height: 381px;
  padding: 65px 30px;
  color: #fff;
}

.hero::before,
.promo-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.97) 0%, rgba(3, 6, 9, 0.82) 36%, rgba(3, 6, 9, 0.18) 72%, rgba(3, 6, 9, 0.02) 100%);
}

.hero::after,
.promo-banner::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(6, 229, 160, 0.24);
  border-radius: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 97% 82%, 100% 88%, 100% 100%, 0 100%, 0 24%, 3% 18%, 0 12%);
}

.hero__image,
.promo-banner__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: min(61%, 650px);
}

.hero h1 {
  width: 100%;
  margin: 0;
  color: var(--mint);
  font-size: 30px;
  font-weight: 750;
  line-height: 36px;
  text-transform: uppercase;
}

.hero__lead {
  width: 100%;
  margin: 16px 0 0;
  color: #eef2f5;
  font-size: 15px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 12px;
}

.section-downloads {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 12px;
}

.store-button {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  width: 190px;
  height: 56px;
  padding: 7px 13px;
  gap: 0 10px;
  color: #fff;
  background: rgba(5, 7, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  text-decoration: none;
  transition: transform 130ms ease, border-color 160ms ease, background 160ms ease;
}

.store-button img {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
}

.store-button__action,
.store-button__platform {
  display: block;
  white-space: nowrap;
}

.store-button__action {
  align-self: end;
  font-size: 10px;
  line-height: 1.1;
}

.store-button__platform {
  align-self: start;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.15;
}

.store-button:hover,
.store-button:focus-visible {
  background: rgba(17, 69, 126, 0.74);
  border-color: var(--mint);
}

.store-button:active,
.store-button.is-pressed {
  transform: translateY(2px) scale(0.986);
}

.content-section {
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-section::before,
.comparison-card::before,
.review-card::before {
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border-top: 2px solid var(--mint);
  border-right: 2px solid var(--czech-blue);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 78% 78%, 78% 22%, 22% 22%);
  transform: translate(6px, -6px);
}

.content-section:hover::before,
.content-section:focus-within::before,
.comparison-card:hover::before,
.comparison-card:focus-within::before,
.review-card:hover::before,
.review-card:focus-within::before {
  opacity: 1;
  transform: translate(0, 0);
}

.content-section h2 {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding: 0 0 11px;
  color: #11141a;
  font-size: 30px;
  font-weight: 650;
  line-height: 36px;
}

.content-section h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--czech-blue) 0 18%, var(--mint) 18% 58%, var(--violet) 58% 82%, var(--czech-red) 82%);
  clip-path: polygon(0 50%, 3% 0, 18% 0, 20% 100%, 38% 100%, 40% 0, 64% 0, 66% 100%, 83% 100%, 85% 0, 100% 0, 100% 100%, 0 100%);
  transform: scaleX(0.08);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(.2,.75,.22,1);
}

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

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

.content-section p,
.content-section ul,
.content-section ol,
.content-section .table-wrap,
.content-section h3,
.comparison-grid,
.review-grid,
.faq-list,
.author-card,
.responsible-box,
.section-cta {
  margin-top: 0;
  margin-bottom: 20px;
}

.content-section .section-body > :last-child {
  margin-bottom: 0;
}

.content-section p {
  margin-top: 0;
  color: #353a44;
}

.content-section h3 {
  width: 100%;
  margin-top: 20px;
  color: var(--violet-dark);
  font-size: 20px;
  font-weight: 650;
  line-height: 32px;
  text-transform: uppercase;
}

.content-section ul,
.content-section ol {
  margin-top: 0;
  padding-left: 28px;
}

.content-section li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 3px;
}

.content-section li:last-child {
  margin-bottom: 0;
}

.route-list {
  list-style: none;
  padding-left: 38px !important;
  counter-reset: route;
}

.route-list li {
  min-height: 30px;
  counter-increment: route;
}

.route-list li::before {
  content: counter(route);
  position: absolute;
  top: 0;
  left: -38px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--czech-blue), var(--violet));
  border: 2px solid #fff;
  outline: 1px solid rgba(17, 69, 126, 0.35);
  font-size: 10px;
  font-weight: 800;
}

.route-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  bottom: -13px;
  left: -27px;
  width: 2px;
  background: linear-gradient(var(--mint), var(--czech-red));
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #ccd2dc;
  border-radius: 5px;
  scrollbar-width: thin;
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 13px;
}

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

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

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

thead th {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 69, 126, 0.45), transparent 18%),
    #0c0f15;
  font-size: 12px;
  font-weight: 750;
}

tbody tr:nth-child(even) td {
  background: linear-gradient(90deg, rgba(6, 229, 160, 0.045), rgba(158, 1, 255, 0.025));
}

tbody tr {
  transition: background 150ms ease, transform 150ms ease;
}

tbody tr:hover td {
  background: linear-gradient(90deg, rgba(17, 69, 126, 0.09), rgba(6, 229, 160, 0.09));
}

table th:first-child,
table td:first-child {
  position: sticky;
  z-index: 1;
  left: 0;
  min-width: 170px;
}

table td:first-child {
  background: #f8fafc;
  background-clip: padding-box;
  box-shadow: 3px 0 0 rgba(6, 229, 160, 0.2);
  font-weight: 650;
}

table tbody tr:nth-child(even) td:first-child {
  background-color: #f8fafc;
  background-image: linear-gradient(90deg, rgba(6, 229, 160, 0.045), rgba(158, 1, 255, 0.025));
}

table tbody tr:hover td:first-child {
  background-color: #f8fafc;
  background-image: linear-gradient(90deg, rgba(17, 69, 126, 0.09), rgba(6, 229, 160, 0.09));
}

table th:first-child {
  z-index: 2;
  box-shadow: 3px 0 0 var(--mint);
}

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

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

.bonus-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(145deg, #fff 0%, #f7f5fb 100%);
  border: 1px solid #d9d5e3;
  border-left: 4px solid var(--violet);
  border-radius: 5px;
  box-shadow: 0 5px 14px rgba(20, 16, 30, 0.07);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.bonus-card::after {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 62px;
  height: 62px;
  content: "";
  background: linear-gradient(135deg, transparent 48%, rgba(6, 229, 160, 0.16) 49%, rgba(157, 0, 255, 0.13) 78%);
  transform: rotate(8deg);
  pointer-events: none;
}

.bonus-card:nth-child(even) {
  border-left-color: var(--mint);
}

.content-section .bonus-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #6500ad;
  font-size: 18px;
  line-height: 24px;
}

.bonus-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.bonus-card:hover,
.bonus-card:focus-within {
  border-color: rgba(157, 0, 255, 0.52);
  box-shadow: 0 10px 24px rgba(17, 69, 126, 0.1);
  transform: translateY(-2px);
}

.comparison-card,
.review-card {
  position: relative;
  align-content: start;
  overflow: hidden;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #dce1e9;
  border-radius: 5px;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.comparison-card:hover,
.comparison-card:focus-within,
.review-card:hover,
.review-card:focus-within {
  border-color: rgba(6, 229, 160, 0.55);
  box-shadow: 0 10px 24px rgba(17, 69, 126, 0.1);
  transform: translateY(-2px);
}

.comparison-card--positive {
  border-left: 4px solid var(--success);
}

.comparison-card--negative {
  border-left: 4px solid var(--warning);
}

.comparison-card h3,
.review-card h3 {
  margin: 0 0 14px;
}

.comparison-card ul,
.comparison-card ol,
.review-card p {
  margin-bottom: 0;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 12px 14px;
  gap: 16px;
  color: #fff;
  background: linear-gradient(100deg, #0b0e14, #151020);
  border-left: 4px solid var(--mint);
  border-radius: 4px;
}

.review-summary strong {
  color: var(--mint);
  font-size: 24px;
  white-space: nowrap;
}

.review-methodology {
  margin-bottom: 16px;
  padding: 12px 14px;
  color: #303640;
  background: #f2fbf8;
  border: 1px solid rgba(6, 229, 160, 0.34);
  border-left: 4px solid var(--czech-blue);
  border-radius: 4px;
}

.review-methodology strong {
  display: block;
  margin-bottom: 4px;
  color: #151923;
}

.review-methodology p {
  margin: 0;
}

.review-meta {
  margin: 0 0 12px !important;
  color: #fff !important;
  background: linear-gradient(90deg, var(--czech-blue), #111722 65%, var(--violet-dark));
  padding: 10px 12px;
  border-radius: 3px;
  font-weight: 700;
}

.review-body {
  margin: 0 !important;
}

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

.faq-item {
  overflow: hidden;
  background: #f7f9fc;
  border: 1px solid #dce1e9;
  border-radius: 5px;
  transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.faq-item:hover,
.faq-item:focus-within,
.faq-item[open] {
  border-color: rgba(158, 1, 255, 0.42);
  box-shadow: 0 8px 20px rgba(17, 69, 126, 0.09);
  transform: translateY(-1px);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  min-height: 56px;
  padding: 10px 12px 10px 16px;
  gap: 12px;
  list-style: none;
  cursor: pointer;
}

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

.faq-question {
  margin: 0 !important;
  color: #151821 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  text-transform: none !important;
}

.faq-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--czech-blue);
  border-radius: 50%;
}

.faq-marker::before,
.faq-marker::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: var(--violet);
  transition: transform 170ms ease;
}

.faq-marker::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-marker {
  border-color: var(--mint-dark);
}

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

.faq-answer {
  padding: 0 16px 16px;
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

.author-card {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  color: #e9edf3;
  background:
    linear-gradient(135deg, rgba(17, 69, 126, 0.28), transparent 44%),
    linear-gradient(315deg, rgba(158, 1, 255, 0.17), transparent 42%),
    #0e1118;
  border-left: 4px solid var(--mint);
  border-radius: 5px;
}

.author-card p {
  margin: 0 !important;
  color: inherit !important;
}

.responsible-box {
  padding: 17px 18px;
  background: #f5f7fa;
  border-left: 4px solid var(--czech-blue);
  border-radius: 4px;
}

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

.section-cta {
  display: flex;
  width: 100%;
}

.promo-banner {
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  margin-top: 20px;
  padding: 30px;
  color: #fff;
}

.promo-banner--copy-right {
  justify-content: flex-end;
}

.promo-banner--copy-right::before {
  background: linear-gradient(270deg, rgba(3, 6, 9, 0.97) 0%, rgba(3, 6, 9, 0.84) 36%, rgba(3, 6, 9, 0.16) 72%, rgba(3, 6, 9, 0.03) 100%);
}

.promo-banner__copy {
  position: relative;
  z-index: 1;
  width: min(53%, 530px);
}

.promo-banner__title {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 26px;
  font-weight: 750;
  line-height: 1.25;
}

.promo-banner__text {
  margin: 0 0 14px;
  color: #f0f3f7;
  font-size: 14px;
  line-height: 1.5;
}

.service-shell {
  display: block;
  width: min(100%, 1120px);
  margin: 20px auto 0;
  padding: 0 30px;
}

.service-block {
  width: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-block h1 {
  width: 100%;
  margin: 0 0 24px;
  color: #11141a;
  font-size: 30px;
  line-height: 36px;
  text-transform: uppercase;
}

.service-qa {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e5eb;
}

.service-qa:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.service-qa h2 {
  margin: 0 0 8px;
  color: #151821;
  font-size: 18px;
  line-height: 1.45;
}

.service-qa p {
  margin: 0;
}

.not-found {
  display: grid;
  min-height: 520px;
  align-content: center;
  justify-items: start;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.97), rgba(4, 7, 10, 0.72)),
    url("images/hero-betting.webp") center / cover;
}

.not-found__code {
  margin: 0 0 6px;
  color: var(--mint);
  font-size: clamp(66px, 14vw, 150px);
  font-weight: 850;
  line-height: 0.9;
}

.not-found h1 {
  color: #fff;
}

.site-footer {
  margin-top: 20px;
  color: #d9dde5;
  background:
    linear-gradient(145deg, rgba(17, 69, 126, 0.14), transparent 33%),
    linear-gradient(315deg, rgba(158, 1, 255, 0.12), transparent 34%),
    #07080b;
  border-top: 1px solid rgba(6, 229, 160, 0.24);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.65fr) minmax(170px, 0.65fr);
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 34px 30px 24px;
  gap: 34px;
  text-align: center;
}

.footer-brand img {
  width: 135px;
  height: 34px;
  margin: 0 auto 14px;
}

.footer-brand p {
  max-width: 520px;
  margin: 0 auto;
  color: #afb5bf;
  font-size: 12px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  justify-items: center;
}

.footer-link {
  min-height: 34px;
  padding: 0 0 0 14px;
  color: #cbd0d8;
  font-size: 11px;
  text-transform: none;
}

.footer-link::before {
  right: auto;
  bottom: 5px;
  left: 0;
  width: 8px;
}

.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  padding-top: 18px;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bcc2cc;
  font-size: 12px;
}

.age-badge {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--czech-red);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 0;
  color: #7f8793;
  font-size: 11px;
  text-align: center;
}

.back-to-top {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 5px;
  color: #06130f;
  background: var(--mint);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top img {
  width: 18px;
  height: 18px;
}

@media (max-width: 1359px) {
  .site-shell {
    display: block;
    width: min(100%, 1080px);
  }

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

  .main-column {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero__copy {
    width: min(70%, 620px);
  }

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

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

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

  .header-inner {
    gap: 14px;
  }

  .brand-link,
  .brand-link img {
    width: 118px;
  }

  .hero {
    min-height: 430px;
    padding: 34px 20px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(3, 6, 9, 0.96), rgba(3, 6, 9, 0.74) 58%, rgba(3, 6, 9, 0.32));
  }

  .hero__copy {
    width: min(78%, 610px);
  }

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

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

  .promo-banner {
    min-height: 310px;
    padding: 24px 20px;
  }

  .promo-banner__copy {
    width: min(72%, 540px);
  }

  .promo-banner__title {
    font-size: 23px;
  }

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

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

@media (max-width: 638px) {
  .bonus-card-grid {
    grid-template-columns: 1fr;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-actions .cta {
    width: 100%;
    min-width: 0;
  }

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

  .hero__copy {
    width: 100%;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero::before,
  .promo-banner::before,
  .promo-banner--copy-right::before {
    background: linear-gradient(0deg, rgba(3, 6, 9, 0.97) 0%, rgba(3, 6, 9, 0.82) 52%, rgba(3, 6, 9, 0.26) 100%);
  }

  .hero__image {
    object-position: var(--focus-x-mobile, var(--focus-x, 50%)) var(--focus-y-mobile, var(--focus-y, 50%));
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions--stores {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 230px);
  }

  .store-button {
    width: 100%;
  }

  .content-section {
    padding: 18px 16px;
  }

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

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

  .promo-banner {
    min-height: 390px;
    padding: 22px 18px;
  }

  .promo-banner__image {
    object-position: var(--focus-x-mobile, var(--focus-x, 50%)) var(--focus-y-mobile, var(--focus-y, 50%));
  }

  .promo-banner__copy {
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .promo-banner__title {
    font-size: 22px;
  }

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

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

  .footer-trust {
    align-items: center;
    justify-content: center;
  }

  .service-block {
    padding: 22px 18px;
  }
}

@media (max-width: 390px) {
  .mobile-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 28px;
  }

  .cta {
    min-width: 148px;
  }

  .review-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

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

  .content-section h2::after {
    transform: scaleX(1);
  }
}
