:root {
  --blue: #0038a8;
  --red: #ce1126;
  --gold: #fcd116;
  --ink: #132957;
  --muted: #53627c;
  --line: #dce4f2;
  --paper: #fff;
  --deep: #002778;
  --green: var(--blue);
  --orange: var(--gold);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --control: 260ms;
  --micro: 150ms;
  --shadow: 0 12px 32px #193e8110;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  padding-top: 84px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background:
    linear-gradient(120deg, #eaf0fd88, transparent 42%),
    linear-gradient(300deg, #fff1f188, transparent 35%), #f6f8fd;
  background-attachment: fixed;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: var(--blue);
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  border: 0;
  cursor: pointer;
  background: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: clamp(36px, 3.3vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}
h2 {
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.22;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
p,
li,
td,
th {
  overflow-wrap: anywhere;
}
a,
button,
summary,
input,
[tabindex] {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
  border-radius: 5px;
}
[hidden] {
  display: none !important;
}
.ui-icon {
  width: 23px;
  height: 23px;
  flex: none;
}
.container {
  width: min(1540px, 100%);
  margin-inline: auto;
  padding-inline: 32px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1100;
  left: 20px;
  top: -90px;
  background: #fff;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 84px;
  z-index: 50;
  background: #ffffffed;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px #17376d07;
}
.site-header:before {
  content: "";
  height: 4px;
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(
    90deg,
    var(--blue) 0 48%,
    var(--red) 48% 92%,
    var(--gold) 92%
  );
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.brand img {
  width: 154px;
  height: auto;
}
.brand:hover {
  transform: rotate(-3deg) scale(1.04);
}
.desktop-nav {
  display: flex;
  gap: 23px;
  margin-left: auto;
  height: 100%;
  align-items: center;
}
.desktop-nav > a {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  color: var(--ink);
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}
.desktop-nav > a:after {
  content: "";
  position: absolute;
  bottom: 16px;
  height: 3px;
  left: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    var(--blue) 55%,
    var(--red) 55% 85%,
    var(--gold) 85%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.desktop-nav > a:hover:after,
.desktop-nav > a[aria-current]:after,
.desktop-nav > a:focus-visible:after {
  transform: scaleX(1);
}
.desktop-nav > a:hover,
.desktop-nav > a[aria-current] {
  color: var(--blue);
}
.header-tools,
.desktop-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.locale {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  padding-inline: 6px;
}
.locale i {
  position: relative;
  width: 23px;
  height: 15px;
  display: block;
  background: linear-gradient(var(--blue) 50%, var(--red) 50%);
  border: 1px solid #e1e7ef;
}
.locale i:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.locale i:after {
  content: "✦";
  position: absolute;
  left: 1px;
  top: -3px;
  font-size: 9px;
  color: #dcaa00;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  background: var(--red);
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 4px 0 #930a1b;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s;
}
.button:before {
  content: "";
  position: absolute;
  inset: -70% auto -70% -65%;
  width: 35%;
  background: linear-gradient(90deg, transparent, #fff8, transparent);
  transform: skew(-22deg);
  transition: left 0.55s var(--ease);
  pointer-events: none;
}
.button:hover:before,
.button:focus-visible:before {
  left: 135%;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 7px 0 #930a1b,
    0 12px 24px #ce112626;
}
.button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #930a1b;
}
.button-green {
  background: #fff;
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: none;
}
.button-green:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px #0038a825;
}
.button:disabled {
  opacity: 0.6;
  cursor: default;
}
.dock-launch {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  background: #fff9d9;
  border: 1px solid #f3da79;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.dock-launch b {
  background: var(--blue);
  color: #fff;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  font-size: 10px;
  display: grid;
  place-items: center;
}
.dock-launch .ui-icon {
  color: #9a7000;
  transition: transform 0.5s var(--ease);
}
.dock-launch:hover {
  background: #ffef97;
  box-shadow: 0 0 0 4px #fcd11622;
}
.dock-launch:hover .ui-icon {
  transform: rotate(-15deg) scale(1.13);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: #eff4ff;
  padding: 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--blue);
  margin: 5px 0;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 4px solid var(--gold);
  padding: 20px 28px;
  box-shadow: 0 14px 30px #10244b18;
}
.mobile-menu nav {
  display: grid;
  gap: 4px;
}
.mobile-menu nav a {
  padding: 9px 10px;
  border-radius: 8px;
  font-weight: 700;
  transition:
    padding 0.25s,
    background 0.25s;
}
.mobile-menu nav a:hover,
.mobile-menu nav a[aria-current] {
  background: #edf3ff;
  padding-left: 20px;
}
.mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.mobile-actions .button {
  flex: 1;
}
.menu-scrim {
  position: fixed;
  inset: 84px 0 0;
  background: #0a204b44;
  backdrop-filter: blur(4px);
  z-index: 40;
}
.noscript-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
html:not([data-interactions]) .menu-toggle,
html:not([data-interactions]) .dock-launch,
html:not([data-interactions]) .wheel-launch {
  display: none !important;
}
.is-disclosing {
  overflow: hidden !important;
}
.page-layout {
  display: grid;
  grid-template-columns: 206px minmax(0, 1fr) 174px;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 48px;
  align-items: start;
}
.content-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.editorial-article {
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 0;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  position: sticky;
  top: 110px;
  max-height: calc(100dvh - 125px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #cfdaee transparent;
}
.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px #1a377508;
  padding: 12px;
}
.side-title {
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 7px;
  color: #66758d;
}
.side-title:not(:first-child) {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 18px;
}
.side-link {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  line-height: 1.35;
  min-height: 43px;
  color: var(--ink);
  padding: 10px 7px;
  border-radius: 8px;
  transition:
    transform 0.25s,
    background 0.25s;
}
.side-link .ui-icon {
  width: 19px;
  height: 19px;
  color: var(--blue);
}
.side-link:hover {
  background: #edf2ff;
  transform: translateX(3px);
}
.side-link:hover .ui-icon {
  color: var(--red);
}
.league-mark {
  font-size: 9px;
  font-weight: 800;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
}
.side-link:nth-of-type(even) .league-mark {
  background: var(--red);
}
.article-nav a {
  position: relative;
  display: block;
  font-size: 11px;
  line-height: 1.5;
  padding: 9px 9px 9px 13px;
  color: var(--muted);
  border-left: 2px solid #e1e7f1;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    padding 0.25s;
}
.article-nav a:hover,
.article-nav a[aria-current] {
  border-color: var(--red);
  background: #f3f6fe;
  color: var(--blue);
  padding-left: 17px;
}
.side-game {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 7px 0 13px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink);
}
.side-game img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.side-game:hover img {
  transform: scale(0.95) rotate(2deg);
  box-shadow: 5px 5px 0 var(--gold);
}
.side-responsible {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(145deg, #eff4ff, #fff 75%);
  font-size: 11px;
  padding: 18px;
}
.side-responsible strong {
  font-size: 14px;
  line-height: 1.4;
}
.age {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
}
.hero,
.promo-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 21px;
  min-height: 485px;
  border: 1px solid #d9e4f5;
  background: #f4f7fc;
  display: flex;
  align-items: center;
  padding: 44px 36px;
  box-shadow: var(--shadow);
}
.hero > picture,
.promo-banner > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero > picture > img,
.promo-banner > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s var(--ease);
}
.hero:after,
.promo-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #ffffffdc 0%,
    #ffffffa3 37%,
    #ffffff00 66%
  );
  pointer-events: none;
}
.hero:hover > picture > img {
  transform: scale(1.035);
}
.hero-copy {
  width: 58%;
  max-width: 580px;
}
.hero h1 {
  margin-bottom: 22px;
  color: var(--deep);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow span {
  color: #c69400;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.hero-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #3e5275;
}
.hero-actions {
  margin-top: 28px;
}
.hero-actions .button {
  padding: 15px 22px;
}
.promo-banner {
  min-height: 345px;
  padding: 35px;
  border-radius: 17px;
}
.promo-copy {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.promo-copy > .eyebrow {
  margin: 0;
  color: var(--red);
}
.promo-title {
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--deep);
}
.promo-copy p:not(.promo-title) {
  font-size: 13px;
  line-height: 1.65;
  color: #425575;
}
.promo-banner.copy-right {
  justify-content: flex-end;
}
.promo-banner.copy-right:after {
  background: linear-gradient(270deg, #ffffffec, #ffffffa3 38%, #fff0 69%);
}
.promo-banner:hover > picture > img {
  transform: scale(1.04) translateX(-3px);
}
.promo-banner.copy-right:hover > picture > img {
  transform: scale(1.04) translateX(3px);
}
.promo-copy .button {
  background: var(--blue);
  box-shadow: 0 4px 0 #002674;
}
.promo-copy .button:hover {
  box-shadow:
    0 7px 0 #002674,
    0 12px 25px #0038a823;
}
.store-pair {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}
.store-pair .store-button {
  flex: 1 1 160px;
  max-width: 210px;
  min-height: 65px;
  justify-content: flex-start;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 0 #00236b;
  padding: 11px 14px;
}
.platform-mark {
  width: 25px;
  height: 28px;
  flex: none;
}
.platform-mark img {
  width: 25px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.store-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 400;
}
.store-label strong {
  font-size: 15px;
}
.store-button:hover .platform-mark img {
  transform: translateY(-4px) rotate(-7deg);
}
.content-section {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 32px;
  scroll-margin-top: 110px;
  box-shadow: 0 4px 18px #1b326b04;
  overflow: hidden;
}
.content-section:before {
  content: "";
  position: absolute;
  inset: 25px auto 25px 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(
    var(--blue) 0 45%,
    var(--red) 45% 85%,
    var(--gold) 85%
  );
  transform-origin: top;
  transition: transform 0.8s var(--ease);
}
html[data-interactions] .content-section:before {
  transform: scaleY(0);
}
html[data-interactions] .content-section.edge-seen:before {
  transform: scaleY(1);
}
.section-kicker {
  font-size: 9px;
  letter-spacing: 0.13em;
  font-weight: 800;
  color: #7a89a2;
  margin-bottom: 12px;
}
.content-section h2 {
  margin-bottom: 25px;
  color: var(--deep);
}
.section-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.section-body p {
  color: #43516a;
  font-size: 15px;
  line-height: 1.85;
}
.section-body ul,
.section-body ol {
  margin: 0;
  padding-left: 24px;
  color: #43516a;
  font-size: 15px;
}
.section-body li {
  padding-left: 5px;
  margin-bottom: 10px;
}
.section-body li::marker {
  color: var(--blue);
  font-weight: 700;
}
.section-body > .button {
  align-self: flex-start;
}
.light-art-block {
  background:
    radial-gradient(ellipse at var(--motif-x) 0%, #0038a807, transparent 50%),
    linear-gradient(var(--motif-angle), #fffaf133, transparent), #fff;
}
.topic-card-grid,
.pros-cons,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.topic-info-card,
.comparison,
.review-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid #dce5f6;
  border-radius: 13px;
  padding: 23px;
  min-width: 0;
  background:
    radial-gradient(circle at var(--motif-x) 12%, #0038a80b, transparent 55%),
    #f9fbff;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s,
    box-shadow 0.35s;
}
.topic-info-card:after {
  content: "✦";
  position: absolute;
  right: 10px;
  bottom: -35px;
  font-size: 125px;
  color: #fcd11620;
  z-index: -1;
  transform: rotate(var(--motif-angle));
  transition: transform 0.8s var(--ease);
}
.topic-info-card:nth-child(even) {
  background: linear-gradient(145deg, #fff8f8, #fff);
  border-color: #f1dfe2;
}
.topic-info-card:nth-child(even):after {
  color: #ce11260b;
}
.topic-info-card:last-child:nth-child(odd),
.review-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.topic-info-card h3 {
  font-size: 19px;
  color: var(--blue);
}
.topic-info-card p,
.topic-info-card li,
.comparison p,
.comparison li {
  font-size: 14px;
}
.topic-info-card:hover {
  border-color: #8ba9ec;
  box-shadow: 0 8px 24px #0038a811;
  transform: translateY(-3px);
}
.topic-info-card:hover:after {
  transform: rotate(calc(var(--motif-angle) + 40deg)) scale(1.14);
}
.comparison {
  border-top: 4px solid var(--blue);
}
.comparison.cons {
  border-top-color: var(--red);
  background: linear-gradient(150deg, #fff7f7, #fff);
}
.comparison-sign {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font-size: 24px;
}
.cons .comparison-sign {
  background: var(--red);
}
.comparison:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 24px #17397312;
}
.comparison > p:first-of-type {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.review-card {
  background: linear-gradient(145deg, #f7faff, #fff);
  border-radius: 18px;
  gap: 18px;
}
.review-avatar {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  background: #e8efff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #c1d3f5;
  border-radius: 50%;
  transition:
    box-shadow 0.4s,
    transform 0.4s;
}
.review-card:nth-child(even) .review-avatar {
  background: #ffe8e9;
  color: var(--red);
}
.review-card blockquote {
  margin: 0;
}
.review-card > p {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
}
.review-card:hover .review-avatar {
  transform: rotate(-8deg);
  box-shadow: 0 0 0 5px #fcd11655;
}
.review-card:before {
  content: "“";
  position: absolute;
  right: 20px;
  top: 0;
  font:
    100px Georgia,
    serif;
  color: #0038a80a;
  pointer-events: none;
}
.byline {
  padding: 13px 16px;
  background: #edf3ff;
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  font-size: 13px !important;
  color: #395581 !important;
}
.table-wrap {
  overflow: auto;
  max-width: 100%;
  border: 1px solid #d6e1f3;
  border-radius: 12px;
  scrollbar-width: thin;
  scrollbar-color: #93afe5 #edf2fc;
  background: white;
}
.table-wrap table {
  border-collapse: collapse;
  width: 100%;
  min-width: 100%;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
}
.table-wrap th {
  background: #edf3ff;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  vertical-align: top;
}
.table-wrap td,
.table-wrap th {
  padding: 15px 17px;
  border-bottom: 1px solid #e1e8f4;
  min-width: 130px;
  max-width: 350px;
}
.table-wrap td {
  color: #43516a;
  vertical-align: top;
  transition: background 0.25s;
}
.table-wrap tr:last-child td {
  border-bottom: 0;
}
.table-wrap td:first-child {
  border-left: 3px solid transparent;
  font-weight: 700;
}
.table-wrap tr:nth-child(even) td {
  background: #f8faff;
}
.table-wrap tbody tr:hover td {
  background: #fff9dc;
}
.table-wrap tbody tr:hover td:first-child {
  border-left-color: var(--red);
  color: var(--blue);
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.faq-item summary {
  list-style: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
  padding: 20px 52px 20px 20px;
  position: relative;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  position: absolute;
  right: 17px;
  top: 17px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  background: #edf2ff;
  color: var(--blue);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  transition:
    transform 0.3s,
    background 0.3s,
    color 0.3s;
}
.faq-item[open] {
  border-color: #b7c9ed;
  background: #f9fbff;
  box-shadow: inset 3px 0 var(--blue);
}
.faq-item[open] summary:after {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}
.faq-item:hover {
  border-color: #859fd8;
}
.faq-item:hover summary:after {
  background: var(--gold);
  color: var(--deep);
}
.faq-answer {
  padding: 0 20px 22px;
}
.faq-answer p {
  font-size: 14px;
}
.game-rail {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 24px;
  overflow: hidden;
}
.rail-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}
.rail-heading p {
  font-size: 18px;
  font-weight: 800;
  color: var(--deep);
}
.rail-toggle {
  padding: 8px 13px;
  min-height: 36px;
  background: #edf3ff;
  color: var(--blue);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.rail-toggle:hover {
  background: var(--gold);
  box-shadow: 0 0 0 4px #fcd11620;
}
.rail-window {
  overflow: auto;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: #a6bce4 transparent;
  padding: 8px 0;
}
.rail-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.game-group {
  display: flex;
  gap: 14px;
}
.game-card {
  width: 132px;
  flex: 0 0 132px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}
.game-card img {
  width: 132px;
  height: 132px;
  border-radius: 13px;
  object-fit: cover;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  box-shadow: 0 3px 12px #14295b15;
}
.game-card span {
  min-height: 34px;
}
.game-card:hover img {
  transform: translateY(-5px) rotate(-2deg);
  box-shadow:
    0 5px 0 var(--gold),
    0 10px 18px #0038a826;
}
.game-rail[data-native="false"] .rail-window {
  overflow: hidden;
}
.game-rail[data-native="false"] .rail-track {
  animation: ph-rail var(--rail-duration, 45s) linear infinite;
}
.game-rail[data-paused="true"] .rail-track {
  animation-play-state: paused;
}
@keyframes ph-rail {
  to {
    transform: translateX(calc(-1 * var(--rail-distance)));
  }
}
.site-footer {
  position: relative;
  background: #edf2fc;
  border-top: 1px solid #d7e2f4;
  padding: 44px 0 0;
}
.site-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--blue) 60%,
    var(--red) 60% 90%,
    var(--gold) 90%
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 35px;
}
.footer-brand img {
  width: 156px;
  height: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  max-width: 270px;
  font-size: 13px;
  color: #536785;
}
.footer-stars {
  font-size: 24px;
  display: block;
  color: #d09b00;
  letter-spacing: 0.35em;
  margin-top: 18px;
}
.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}
.footer-grid nav strong {
  margin-bottom: 5px;
}
.footer-grid nav a,
.responsible > a {
  width: fit-content;
  position: relative;
  transition:
    color 0.25s,
    transform 0.25s;
}
.footer-grid nav a:after,
.responsible > a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.footer-grid nav a:hover,
.responsible > a:hover {
  color: var(--red);
  transform: translateX(3px);
}
.footer-grid nav a:hover:after,
.responsible > a:hover:after {
  transform: scaleX(1);
}
.responsible {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  color: #536785;
}
.responsible > strong {
  color: var(--ink);
  font-size: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  grid-column: 1/-1;
  border-top: 1px solid #d2def0;
  padding: 22px 0;
  font-size: 11px;
  color: #637595;
}
.service-main {
  padding-block: 32px 60px;
  max-width: 1000px;
}
.service-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px;
}
.service-block > p {
  margin: 25px 0;
}
.service-qa {
  margin-top: 30px;
}
.service-qa h2 {
  font-size: 23px;
  margin-bottom: 15px;
}
.service-qa p {
  color: #53627c;
}
.utility-cluster {
  position: fixed;
  z-index: 35;
  right: max(15px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.utility-cluster > a,
.utility-cluster > button {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: #fff;
  background: var(--blue);
  border: 2px solid #fff;
  box-shadow: 0 6px 19px #132f732e;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    border-radius 0.35s;
}
.utility-cluster .wheel-launch {
  background: var(--red);
}
.utility-cluster .utility-chat {
  background: #fff;
  color: var(--blue);
}
.utility-cluster .wheel-launch:hover {
  transform: rotate(15deg);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #fcd11677;
}
.utility-cluster .utility-chat:hover {
  transform: translateY(-6px) rotate(-7deg);
  box-shadow: 0 8px 0 var(--gold);
}
.utility-cluster .scroll-top:hover {
  transform: translateY(-5px);
  background: var(--deep);
}
.scroll-top > svg {
  position: absolute;
  inset: 2px;
  width: 38px;
  height: 38px;
  transform: rotate(-90deg);
  fill: none;
  stroke-width: 2;
}
.scroll-track {
  stroke: #ffffff33;
}
.scroll-meter {
  stroke: var(--gold);
  stroke-dasharray: 100;
  stroke-dashoffset: calc(100 - var(--scroll-progress, 0));
  transition: stroke-dashoffset 0.2s;
}
.scroll-top-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1;
}
.scroll-top-copy > span {
  font-size: 19px;
}
.scroll-top-copy > small {
  font-size: 8px;
  margin-top: 1px;
}
.bonus-dock {
  position: fixed;
  z-index: 65;
  right: 28px;
  top: 98px;
  width: 420px;
  max-width: calc(100vw - 28px);
  max-height: calc(100dvh - 120px);
  overflow: auto;
  background: #fff;
  border: 1px solid #bfcfec;
  border-top: 4px solid var(--gold);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 22px 75px #08235e35;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.panel-heading strong {
  font-size: 19px;
  line-height: 1.4;
  color: var(--deep);
}
.panel-heading button {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2f5fc;
  font-size: 26px;
  line-height: 1;
  transition:
    transform 0.3s,
    background 0.3s,
    color 0.3s;
}
.panel-heading button:hover {
  transform: rotate(90deg);
  background: var(--red);
  color: #fff;
}
.dock-offer {
  padding: 20px;
  margin-top: 16px;
  border: 1px solid #dce5f4;
  background:
    radial-gradient(circle at var(--motif-x) 0, #0038a80c, transparent), #f8faff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  border-left: 4px solid var(--blue);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.dock-offer:nth-of-type(odd) {
  border-left-color: var(--red);
}
.dock-offer:hover {
  background: #fffbed;
  border-color: #e5c25b;
}
.dock-offer strong {
  font-size: 16px;
  line-height: 1.4;
}
.dock-offer p {
  font-size: 12px;
  line-height: 1.7;
}
.dock-offer .button {
  font-size: 11px;
  padding: 10px 14px;
  min-height: 40px;
}
.offer-wheel {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 510px;
  max-width: calc(100vw - 28px);
  max-height: calc(100dvh - 36px);
  overflow: auto;
  border: 1px solid #cedcf2;
  border-top: 5px solid var(--gold);
  border-radius: 22px;
  padding: 27px;
  background: linear-gradient(160deg, #fff, #f1f5ff);
  color: var(--ink);
  box-shadow: 0 30px 100px #00174666;
}
.offer-wheel::backdrop {
  background: #071d4cb8;
  backdrop-filter: blur(7px);
}
.offer-wheel > p {
  font-size: 12px;
  line-height: 1.7;
  margin: 14px 0 20px;
  color: #546684;
}
.wheel-stage {
  position: relative;
  width: min(100%, 324px);
  aspect-ratio: 1;
  margin: 24px auto 29px;
}
.wheel-disc {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--blue) 0 90deg,
    var(--red) 90deg 180deg,
    #123d96 180deg 270deg,
    #b40f24 270deg 360deg
  );
  border: 8px solid var(--gold);
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 6px #d2aa0c,
    0 12px 30px #0038a822;
}
.wheel-disc:after {
  content: "☀";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 56px;
  height: 56px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #b98600;
  font-size: 29px;
  line-height: 1;
  box-shadow: 0 2px 12px #00174644;
}
.wheel-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 47%;
  transform-origin: left center;
  transform: translateY(-50%) rotate(var(--angle));
  padding-left: 40px;
  padding-right: 12px;
  text-align: center;
  line-height: 1.25;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.wheel-label > span {
  display: block;
  transform: rotate(var(--flip));
}
.wheel-pointer {
  position: absolute;
  top: -14px;
  left: calc(50% - 12px);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 27px solid var(--red);
  z-index: 2;
  filter: drop-shadow(0 3px 1px #0003);
}
.offer-wheel > [data-spin-wheel] {
  display: flex;
  margin: auto;
}
.wheel-results > div {
  padding: 20px;
  border: 1px solid #d5e2f5;
  border-radius: 14px;
  background: linear-gradient(125deg, #fff6ca, #fff);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  font-size: 13px;
}
.wheel-results strong {
  font-size: 20px;
  line-height: 1.4;
  color: var(--deep);
}
.coin-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: -20px;
  display: block;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #ffffff55;
}
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(ellipse at 20% 20%, #2057c2, transparent 50%),
    radial-gradient(ellipse at 90% 90%, #a21a40, transparent 50%), #002a7d;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s,
    visibility 0.24s;
  contain: layout paint;
}
.page-transition:before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  border: 1px solid #ffffff14;
  border-radius: 50%;
  box-shadow:
    0 0 0 50px #ffffff04,
    0 0 0 100px #ffffff03;
}
html[data-page-transition="loading"],
html[data-page-transition="leaving"] {
  overflow: hidden;
}
html[data-page-transition="loading"] .page-transition,
html[data-page-transition="leaving"] .page-transition {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.transition-card {
  position: relative;
  width: min(100%, 380px);
  padding: 35px;
  border: 1px solid #ffffff33;
  border-radius: 26px;
  background: linear-gradient(140deg, #ffffff1a, #ffffff06);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
  box-shadow: 0 30px 80px #00194b44;
}
.transition-emblem {
  height: 110px;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}
.transition-emblem img {
  width: 168px;
  height: auto;
  position: relative;
  z-index: 1;
}
.transition-orbit {
  position: absolute;
  inset: 8px 6px;
  border: 1px solid #ffffff3a;
  border-radius: 50%;
  transform: rotate(-16deg);
}
.transition-orbit:after {
  content: "★";
  position: absolute;
  top: -12px;
  left: 40px;
  color: var(--gold);
  font-size: 22px;
  animation: ph-star 2s ease-in-out infinite;
}
.transition-caption {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  color: var(--gold);
  margin: 18px 0 12px;
}
.transition-card > strong {
  font-size: 26px;
  line-height: 1.3;
}
.transition-card > p {
  font-size: 13px;
  color: #c3d5f3;
  margin-top: 10px;
}
.transition-track {
  width: 100%;
  height: 4px;
  position: relative;
  background: #ffffff22;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 28px;
}
.transition-track:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, var(--gold), #fff);
  animation: ph-loading 1.1s ease-in-out infinite;
}
.transition-signature {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #a8c2ee;
  margin-top: 22px;
}
@keyframes ph-loading {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(220%);
  }
}
@keyframes ph-star {
  50% {
    transform: scale(1.25) rotate(18deg);
  }
}
@media (min-width: 1360px) and (max-width: 1500px) {
  .container {
    padding-inline: 25px;
  }
  .header-inner {
    gap: 20px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .header-tools {
    gap: 8px;
  }
  .desktop-actions .button {
    padding-inline: 15px;
  }
  .page-layout {
    grid-template-columns: 190px minmax(0, 1fr) 154px;
    gap: 20px;
  }
  .hero {
    padding: 36px 30px;
    min-height: 455px;
  }
  .hero-copy {
    width: 61%;
  }
  .hero h1 {
    font-size: 44px;
  }
  .promo-copy {
    width: 65%;
  }
  .promo-title {
    font-size: 31px;
  }
  .content-section {
    padding: 29px;
  }
  .utility-cluster {
    right: 10px;
  }
}
@media (max-width: 1359px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr);
    max-width: 1160px;
  }
  .sidebar {
    display: none;
  }
  .hero {
    min-height: 480px;
    padding: 46px;
  }
  .hero-copy {
    width: 52%;
  }
  .hero h1 {
    font-size: 52px;
  }
  .promo-banner {
    min-height: 365px;
    padding: 42px;
  }
  .promo-copy {
    width: 51%;
  }
  .desktop-actions {
    display: none;
  }
  .desktop-nav {
    margin-left: auto;
  }
  .header-inner {
    gap: 22px;
  }
  .menu-toggle {
    display: block;
  }
  .utility-cluster {
    right: 13px;
  }
  .topic-info-card p,
  .topic-info-card li {
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  .container {
    padding-inline: 24px;
  }
  .locale {
    display: none;
  }
  .header-inner {
    gap: 17px;
  }
  .desktop-nav {
    gap: 17px;
  }
  .dock-launch > span {
    display: none;
  }
  .hero {
    min-height: 470px;
    padding: 36px;
  }
  .hero-copy {
    width: 58%;
  }
  .hero h1 {
    font-size: 45px;
  }
  .promo-copy {
    width: 60%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .content-section {
    padding: 28px;
  }
  .store-pair .store-button {
    min-width: 145px;
    max-width: 200px;
    padding: 10px 12px;
  }
  .hero-actions .store-button {
    padding: 10px 12px;
  }
  .store-label {
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 68px;
  }
  .site-header {
    height: 68px;
  }
  .header-inner {
    gap: 12px;
  }
  .brand img {
    width: 142px;
  }
  .desktop-nav {
    display: none;
  }
  .header-tools {
    margin-left: auto;
  }
  .menu-scrim {
    top: 68px;
  }
  .container {
    padding-inline: 17px;
  }
  .page-layout {
    margin-top: 18px;
    margin-bottom: 32px;
  }
  .editorial-article,
  .content-column {
    gap: 20px;
  }
  .hero,
  .promo-banner {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 0;
    border-radius: 17px;
    align-items: stretch;
  }
  .hero > picture,
  .promo-banner > picture {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    height: 235px;
    flex: none;
    overflow: hidden;
  }
  .hero > picture > img,
  .promo-banner > picture > img {
    object-fit: cover;
    object-position: 75% 49%;
    transform: scale(1.13);
    transform-origin: right center;
  }
  .hero:hover > picture > img,
  .promo-banner:hover > picture > img {
    transform: scale(1.16);
  }
  .promo-banner.copy-right > picture > img {
    transform-origin: left center;
    object-position: 20% center;
  }
  .hero:after,
  .promo-banner:after,
  .promo-banner.copy-right:after {
    display: none;
  }
  .hero-copy,
  .promo-copy {
    width: 100%;
    max-width: none;
    padding: 26px;
    background: linear-gradient(145deg, #fff, #f6f9ff);
  }
  .hero h1 {
    font-size: 37px;
    margin-bottom: 18px;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.75;
  }
  .eyebrow {
    margin-bottom: 15px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-actions > .button {
    min-height: 48px;
  }
  .promo-copy {
    gap: 17px;
  }
  .promo-title {
    font-size: 29px;
  }
  .promo-copy p:not(.promo-title) {
    font-size: 13px;
  }
  .promo-banner.copy-right {
    justify-content: flex-start;
  }
  .promo-banner.copy-right .promo-copy {
    background: linear-gradient(145deg, #fff, #fff7f8);
  }
  .content-section {
    padding: 24px 21px;
    scroll-margin-top: 86px;
    border-radius: 14px;
  }
  .content-section h2 {
    font-size: 26px;
    margin-bottom: 23px;
  }
  .section-body p,
  .section-body li {
    font-size: 14px;
    line-height: 1.85;
  }
  .section-body {
    gap: 18px;
  }
  .topic-card-grid,
  .pros-cons,
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }
  .topic-info-card,
  .comparison,
  .review-card {
    padding: 21px;
  }
  .topic-info-card h3 {
    font-size: 20px;
  }
  .topic-info-card:last-child:nth-child(odd),
  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .table-wrap td,
  .table-wrap th {
    min-width: 130px;
    padding: 13px 14px;
    font-size: 12px;
  }
  .table-wrap td:first-child,
  .table-wrap th:first-child {
    min-width: 135px;
  }
  .faq-item summary {
    font-size: 14px;
    padding: 18px 47px 18px 17px;
  }
  .faq-item summary:after {
    right: 12px;
    top: 16px;
  }
  .faq-answer {
    padding: 0 17px 20px;
  }
  .faq-answer p {
    font-size: 13px;
  }
  .game-rail {
    padding: 21px;
  }
  .game-card {
    width: 122px;
    flex-basis: 122px;
  }
  .game-card img {
    width: 122px;
    height: 122px;
  }
  .rail-heading p {
    font-size: 17px;
  }
  .store-pair {
    flex-wrap: nowrap;
    gap: 9px;
  }
  .store-pair .store-button {
    flex: 1;
    min-width: 0;
    max-width: none;
    padding: 11px 10px;
    min-height: 63px;
    gap: 7px;
  }
  .store-label {
    font-size: 9px;
  }
  .store-label strong {
    font-size: 15px;
  }
  .platform-mark,
  .platform-mark img {
    width: 22px;
  }
  .footer-grid {
    padding-inline: 24px;
    gap: 28px;
  }
  .site-footer {
    padding-top: 33px;
    padding-bottom: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding-right: 25px;
  }
  .utility-cluster {
    right: 9px;
    bottom: 15px;
    gap: 9px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }
  .utility-cluster .ui-icon {
    width: 21px;
    height: 21px;
  }
  .scroll-top > svg {
    inset: 1px;
    width: 33px;
    height: 33px;
  }
  .scroll-top-copy > span {
    font-size: 16px;
  }
  .scroll-top-copy > small {
    font-size: 7px;
  }
  .bonus-dock {
    top: 79px;
    right: 14px;
    max-height: calc(100dvh - 94px);
    padding: 19px;
  }
  .offer-wheel {
    padding: 22px;
    max-height: calc(100dvh - 28px);
  }
  .wheel-label {
    font-size: 10px;
    padding-left: 33px;
    padding-right: 8px;
  }
  .wheel-disc:after {
    width: 48px;
    height: 48px;
    font-size: 25px;
  }
  .service-main {
    padding-block: 22px 36px;
  }
  .service-block {
    padding: 27px 23px;
  }
  .service-block h1 {
    font-size: 34px;
  }
  .service-qa h2 {
    font-size: 22px;
  }
  .service-qa p {
    font-size: 14px;
  }
}
@media (max-width: 399px) {
  .container {
    padding-inline: 12px;
  }
  .brand img {
    width: 128px;
  }
  .header-tools {
    gap: 7px;
  }
  .dock-launch {
    padding: 8px;
    gap: 5px;
  }
  .hero > picture,
  .promo-banner > picture {
    height: 205px;
  }
  .hero-copy,
  .promo-copy {
    padding: 23px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .promo-title {
    font-size: 27px;
  }
  .content-section {
    padding: 22px 18px;
  }
  .content-section h2 {
    font-size: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }
  .store-pair {
    flex-direction: column;
  }
  .store-pair .store-button {
    width: 100%;
    flex: auto;
    min-height: 57px;
    padding: 10px 16px;
    gap: 12px;
  }
  .store-label {
    font-size: 11px;
  }
  .wheel-label {
    font-size: 9px;
    padding-left: 27px;
  }
  .offer-wheel {
    padding: 19px;
  }
  .panel-heading strong {
    font-size: 18px;
  }
  .game-card {
    width: 115px;
    flex-basis: 115px;
  }
  .game-card img {
    width: 115px;
    height: 115px;
  }
}
.sidebar > .side-card {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero-copy {
    width: 55%;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      #fffffff5 0%,
      #ffffffeb 37%,
      #ffffffb0 54%,
      #fff0 78%
    );
  }
  .promo-copy {
    width: 55%;
  }
  .promo-banner.copy-right .promo-copy {
    width: 52%;
  }
  .promo-banner:after {
    background: linear-gradient(
      90deg,
      #ffffffed,
      #ffffffb8 42%,
      #ffffff22 68%,
      #fff0 80%
    );
  }
  .promo-banner.copy-right:after {
    background: linear-gradient(
      270deg,
      #fffffff5,
      #ffffffde 45%,
      #ffffff55 59%,
      #fff0 73%
    );
  }
}
@media (max-width: 767px) {
  .content-section {
    padding-right: 45px;
  }
  .hero-copy,
  .promo-copy {
    padding-right: 44px;
  }
  .service-block {
    padding-right: 44px;
  }
  .footer-grid .responsible {
    padding-right: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .page-transition {
    display: none !important;
  }
  html[data-page-transition] {
    overflow: auto;
  }
  .coin-confetti {
    display: none;
  }
  .game-rail .rail-track {
    animation: none !important;
  }
  .hero:hover > picture > img,
  .promo-banner:hover > picture > img {
    transform: none;
  }
}
@media (min-width: 768px) {
  .footer-grid .responsible {
    padding-right: 42px;
  }
  .footer-bottom {
    padding-right: 52px;
  }
}
.sidebar-icon,
.league-logo {
  object-fit: contain;
  flex-shrink: 0;
  transition:
    transform 0.3s var(--ease),
    filter 0.3s;
}
.side-link .league-logo {
  width: 24px;
  height: 24px;
}
.side-link:hover .league-logo {
  transform: scale(1.15) rotate(-6deg);
  filter: drop-shadow(0 2px 2px #0038a82b);
}
.side-link:hover .sidebar-icon {
  transform: translateY(-2px) scale(1.12);
}
.sidebar-left .side-link:nth-of-type(6) .sidebar-icon {
  width: 23px;
  height: 23px;
  padding: 3px;
  border-radius: 5px;
  background: var(--blue);
}

.transition-emblem:before {
  content: "";
  position: absolute;
  width: 210px;
  height: 76px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px #00194b33;
}
.promo-logo {
  width: 136px;
  height: auto;
  object-fit: contain;
}
.store-label {
  line-height: 1.4;
}
.store-label > span,
.store-label > strong {
  display: block;
}
.content-section {
  background: linear-gradient(135deg, #f2f6ff, #fff 65%);
  border-color: #bccce7;
  box-shadow: 0 6px 20px #1b326b0c;
}
.light-art-block {
  background:
    radial-gradient(ellipse at var(--motif-x) 0%, #0038a822, transparent 65%),
    linear-gradient(var(--motif-angle), #fff0, #fcd1161c), #f7faff;
}
.topic-info-card,
.comparison,
.review-card {
  background:
    radial-gradient(circle at var(--motif-x) 12%, #0038a829, transparent 70%),
    #e7efff;
  border-color: #adc2e9;
  box-shadow: 0 3px 10px #1739730a;
}
.topic-info-card:nth-child(even),
.comparison.cons {
  background: linear-gradient(145deg, #f8dfe4, #fff0 90%), #fff1f3;
  border-color: #e7aeba;
}
.topic-info-card:after {
  color: #e3ad0052;
}
.topic-info-card:nth-child(even):after {
  color: #ce11262b;
}
.review-card:before {
  color: #0038a822;
}
.side-card,
.game-rail {
  background: linear-gradient(145deg, #e9f0ff, #f8faff);
  border-color: #b9cbea;
}
.dock-offer {
  background:
    radial-gradient(circle at var(--motif-x) 0, #0038a82b, transparent 75%),
    #eaf1ff;
  border-color: #b8caeb;
  border-left-color: var(--blue);
}
.dock-offer:nth-of-type(odd) {
  background: linear-gradient(135deg, #fae2e6, #fff3f5);
  border-left-color: var(--red);
}
.faq-item {
  background: #edf3ff;
  border-color: #b8cae9;
}
.faq-item[open] {
  background: #f4f7ff;
  border-color: #8eabe0;
}
.service-block {
  background: linear-gradient(135deg, #eff4ff, #fff 50%);
  border-color: #b9cbea;
  box-shadow: 0 8px 24px #1739730c;
}

body {
  hyphens: none;
  -webkit-hyphens: none;
}
p,
li,
td,
th,
.button,
.promo-title {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
}
.nowrap {
  white-space: nowrap;
}
.table-wrap table {
  width: max-content;
  min-width: 100%;
}
.table-wrap td,
.table-wrap th {
  min-width: 210px;
  max-width: none;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}
.table-wrap td:first-child,
.table-wrap th:first-child {
  min-width: 190px;
}
.utility-cluster {
  z-index: 60;
}
@media (max-width: 900px) {
  .table-wrap td,
  .table-wrap th {
    min-width: 230px;
    padding: 14px 16px;
  }
  .table-wrap td:first-child,
  .table-wrap th:first-child {
    min-width: 210px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-inline: 12px;
  }
  .content-section {
    padding: 24px 18px;
  }
  .hero-copy,
  .promo-copy {
    padding: 26px 20px;
  }
  .topic-info-card,
  .comparison,
  .review-card {
    padding: 21px 18px;
  }
  .service-block {
    padding: 27px 20px;
  }
  .game-rail {
    padding: 21px 17px;
  }
  .table-wrap {
    margin-right: 0;
  }
  .table-wrap td,
  .table-wrap th {
    min-width: 245px;
    padding: 13px 16px;
  }
  .table-wrap td:first-child,
  .table-wrap th:first-child {
    min-width: 220px;
  }
  .utility-cluster {
    right: 6px;
    z-index: 60;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    box-shadow: 0 7px 20px #061b4f70;
  }
}
@media (max-width: 399px) {
  .content-section {
    padding: 22px 16px;
  }
  .hero-copy,
  .promo-copy {
    padding: 23px 18px;
  }
  .topic-info-card,
  .comparison,
  .review-card {
    padding: 20px 16px;
  }
  .service-block {
    padding: 25px 18px;
  }
  .game-rail {
    padding: 20px 15px;
  }
}
