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

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

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

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

:root {
  --page: #242122;
  --header: #292526;
  --surface: #322e2f;
  --surface-raised: #3a3533;
  --surface-soft: #4e4842;
  --line: #5d554e;
  --line-hot: #fec882;
  --accent: #fec882;
  --accent-2: #ff9f6c;
  --text: #fffaf3;
  --muted: #d4c5b1;
  --quiet: #aa9d8e;
  --success: #9fd7b4;
  --warning: #ffb08f;
  --shadow: 0 18px 50px rgb(0 0 0 / 28%);
  --radius: 6px;
  --gap: 20px;
  --header-height: 75px;
  --cta-height: 50px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  color-scheme: dark;
  overflow-x: clip;
}

body {
  min-width: 0;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: clip;
  color: var(--text);
  background-color: var(--page);
  background-image: url("hexline.svg"), linear-gradient(180deg, #242122 0%, #292526 48%, #211e1f 100%);
  background-attachment: fixed;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.menu-open {
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

body.loader-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  width: 100%;
  max-width: none;
  text-wrap: wrap;
}

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

h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.28;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #292526;
  background: var(--accent);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background: rgb(41 37 38 / 96%);
  border-bottom: 1px solid rgb(254 200 130 / 28%);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(140px, auto) 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 4px;
}

.brand-link img {
  width: 155px;
  height: auto;
}

.user-context {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  max-width: 210px;
  min-height: 38px;
  padding: 6px 11px 6px 9px;
  color: var(--text);
  background: linear-gradient(135deg, rgb(254 200 130 / 11%), rgb(255 158 102 / 5%));
  border: 1px solid rgb(254 200 130 / 34%);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
}

.user-context-icon {
  position: relative;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.user-context-icon::before,
.user-context-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--accent);
  border-radius: 1px;
  transform-origin: 50% 100%;
}

.user-context-icon::before {
  height: 7px;
  transform: translate(-50%, -100%) rotate(0deg);
}

.user-context-icon::after {
  height: 6px;
  transform: translate(-50%, -100%) rotate(120deg);
}

.user-context-copy {
  display: grid;
  min-width: 0;
  line-height: 1.1;
}

.user-context time {
  color: var(--accent);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .035em;
}

.user-context small {
  max-width: 145px;
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: .65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  justify-content: center;
  gap: 34px;
}

.desktop-nav a,
.mobile-menu nav a,
.site-footer nav a,
.article-nav a {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.desktop-nav a::after,
.site-footer nav a::after,
.article-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 8px 0 0 rgb(254 200 130 / 18%), -8px 0 0 rgb(254 200 130 / 18%);
  transition: right 180ms ease, left 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active,
.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.article-nav a:hover,
.article-nav a:focus-visible,
.article-nav a.active {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after,
.article-nav a:hover::after,
.article-nav a:focus-visible::after,
.article-nav a.active::after {
  right: 0;
  left: 0;
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.cta,
.store-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 190px;
  min-height: var(--cta-height);
  padding: 11px 22px;
  overflow: hidden;
  color: #322e2f;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  border: 1px solid var(--accent);
  border-radius: 5px;
  box-shadow: 0 8px 22px rgb(255 159 108 / 17%);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: box-shadow 160ms ease, filter 160ms ease, transform 120ms ease;
}

.cta::after,
.store-button::after {
  position: absolute;
  inset: 4px;
  z-index: -1;
  content: "";
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 160ms ease, inset 120ms ease;
}

.cta:hover,
.cta:focus-visible,
.store-button:hover,
.store-button:focus-visible {
  box-shadow: 0 10px 28px rgb(255 159 108 / 28%);
  filter: brightness(1.05);
}

.cta:hover::after,
.cta:focus-visible::after,
.store-button:hover::after,
.store-button:focus-visible::after {
  border-color: rgb(41 37 38 / 36%);
}

.cta.is-pressed,
.store-button.is-pressed,
.cta:active,
.store-button:active {
  box-shadow: inset 0 4px 10px rgb(41 37 38 / 28%), 0 4px 12px rgb(255 159 108 / 18%);
  transform: translateY(1px) scale(.988);
}

.cta.is-pressed::after,
.store-button.is-pressed::after,
.cta:active::after,
.store-button:active::after {
  inset: 1px;
  border-color: rgb(255 250 243 / 60%);
}

.cta-outline {
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}

.header-cta {
  min-width: 148px;
  min-height: 42px;
  padding: 8px 18px;
  font-size: 14px;
}

.menu-toggle,
.mobile-menu,
.menu-scrim {
  display: none;
}

.site-grid {
  --left-sidebar-width: 240px;
  --right-sidebar-width: 240px;
  display: grid;
  grid-template-columns: var(--left-sidebar-width) 20px minmax(0, 1fr) 20px var(--right-sidebar-width);
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 30px 0;
}

.site-grid.is-left-collapsed {
  --left-sidebar-width: 52px;
}

.site-grid.is-right-collapsed {
  --right-sidebar-width: 52px;
}

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

.editorial-article {
  display: block;
  min-width: 0;
}

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

.sidebar-collapse {
  position: relative;
  display: grid;
  width: 100%;
  height: 30px;
  margin: 0 0 10px;
  padding: 0;
  place-items: center;
  color: var(--accent);
  background: linear-gradient(90deg, rgb(35 31 32 / 96%), rgb(61 50 45 / 78%) 50%, rgb(35 31 32 / 96%));
  border: 1px solid rgb(254 200 130 / 46%);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 4%);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.sidebar-collapse::before,
.sidebar-collapse::after {
  position: absolute;
  top: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(254 200 130 / 30%));
  transition: opacity 160ms ease;
}

.sidebar-collapse::before {
  right: calc(50% + 14px);
  left: 12px;
}

.sidebar-collapse::after {
  right: 12px;
  left: calc(50% + 14px);
  transform: scaleX(-1);
}

.sidebar-collapse:hover,
.sidebar-collapse:focus-visible {
  color: var(--text);
  background-color: rgb(254 200 130 / 10%);
  border-color: rgb(254 200 130 / 72%);
}

.sidebar-collapse-arrow {
  z-index: 1;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transition: transform 180ms ease;
}

.sidebar-left .sidebar-collapse-arrow {
  transform: rotate(-135deg);
}

.sidebar-right .sidebar-collapse-arrow {
  transform: rotate(45deg);
}

.site-grid.is-left-collapsed .sidebar-left .sidebar-content,
.site-grid.is-right-collapsed .sidebar-right .sidebar-content {
  display: none;
}

.site-grid.is-left-collapsed .sidebar-left .sidebar-collapse-arrow {
  transform: rotate(45deg);
}

.site-grid.is-right-collapsed .sidebar-right .sidebar-collapse-arrow {
  transform: rotate(-135deg);
}

.site-grid.is-left-collapsed .sidebar-left .sidebar-collapse::before,
.site-grid.is-left-collapsed .sidebar-left .sidebar-collapse::after,
.site-grid.is-right-collapsed .sidebar-right .sidebar-collapse::before,
.site-grid.is-right-collapsed .sidebar-right .sidebar-collapse::after {
  opacity: 0;
}

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

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

.sidebar-card {
  padding: 14px;
  background: rgb(50 46 47 / 92%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgb(0 0 0 / 16%);
}

.sidebar-card + .sidebar-card,
.game-shortcuts {
  margin-top: 20px;
}

.sidebar-title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.shortcut-card {
  display: grid;
  gap: 4px;
}

.shortcut {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.shortcut:hover,
.shortcut:focus-visible,
.shortcut:active {
  color: var(--text);
  background: rgb(254 200 130 / 7%);
  border-color: rgb(254 200 130 / 28%);
  transform: translateX(2px);
}

.shortcut:active {
  transform: translateX(1px) scale(.992);
}

.icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.article-nav a {
  padding-left: 12px;
  font-size: 12px;
  line-height: 1.4;
}

.article-nav a::after {
  top: 4px;
  right: auto;
  bottom: 4px;
  left: 0;
  width: 1px;
  height: auto;
}

.article-nav a:hover::after,
.article-nav a:focus-visible::after,
.article-nav a.active::after {
  right: auto;
  left: 0;
  width: 3px;
}

.article-nav a[aria-current="location"] {
  color: var(--text);
  background: linear-gradient(90deg, rgb(254 200 130 / 10%), transparent 86%);
}

.app-teaser {
  display: grid;
  gap: 10px;
  text-align: left;
}

.app-teaser-icon {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
}

.app-teaser p:not(.sidebar-title) {
  color: var(--muted);
  font-size: 12px;
}

.sidebar-cta {
  min-width: 0;
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  white-space: normal;
  font-size: 13px;
}

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

.game-shortcut {
  position: relative;
  display: block;
  height: 112px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.game-shortcut img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: opacity 180ms ease, transform 220ms ease;
}

.game-shortcut::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 25%, rgb(20 17 18 / 90%) 100%);
}

.game-shortcut span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  z-index: 1;
  color: var(--text);
  font-weight: 600;
}

.game-shortcut:hover img,
.game-shortcut:focus-visible img {
  opacity: .9;
  transform: scale(1.025);
}

.game-shortcut:active img {
  opacity: .96;
  transform: scale(1.012);
}

.hero,
.promo-banner,
.app-download-banner,
.content-section {
  width: 100%;
  margin-bottom: var(--gap);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 381px;
  padding: 65px 30px;
  overflow: hidden;
  background: #171516;
  border: 1px solid rgb(254 200 130 / 35%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero::after,
.promo-banner::after,
.app-download-banner::after,
.content-section::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid transparent;
  border-radius: inherit;
  transition: border-color 180ms ease, clip-path 180ms ease;
  clip-path: polygon(0 0, 54px 0, 54px 2px, 2px 2px, 2px 54px, 0 54px, 0 100%, 100% 100%, 100% calc(100% - 54px), calc(100% - 2px) calc(100% - 54px), calc(100% - 2px) calc(100% - 2px), calc(100% - 54px) calc(100% - 2px), calc(100% - 54px) 100%, 0 100%);
}

.hero:hover::after,
.hero:focus-within::after,
.content-section:hover::after,
.content-section:focus-within::after,
.promo-banner:hover::after,
.promo-banner:focus-within::after,
.app-download-banner:hover::after,
.app-download-banner:focus-within::after {
  border-color: rgb(254 200 130 / 58%);
}

.hero-media,
.promo-banner > img,
.app-download-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(20 18 19 / 96%) 0%, rgb(25 22 23 / 88%) 42%, rgb(25 22 23 / 30%) 70%, rgb(25 22 23 / 8%) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 16px;
  width: min(62%, 630px);
}

.hero-copy h1 {
  color: var(--text);
  text-shadow: 0 2px 18px rgb(0 0 0 / 55%);
}

.hero-copy p {
  width: 100%;
  max-width: none;
  color: var(--muted);
  font-size: 16px;
}

.hero-cta {
  margin-top: 0;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: auto;
}

.store-button {
  justify-content: flex-start;
  flex: 0 0 268px;
  gap: 14px;
  width: 268px;
  min-width: 268px;
  height: 64px;
  min-height: 64px;
  padding: 10px 18px;
  color: #322e2f;
  white-space: normal;
}

.store-button span {
  display: grid;
  min-width: 0;
  gap: 1px;
  text-align: left;
}

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

.store-button small {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.store-button strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.store-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-actions {
  margin-top: 22px;
}

.download-button {
  width: 268px;
  min-width: 268px;
}

.store-logo-wrap {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #322e2f;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgb(255 190 126 / 12%);
}

.store-logo {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.download-button .store-copy {
  gap: 2px;
}

.download-button .store-copy small {
  font-size: 11px;
  font-weight: 600;
}

.download-button .store-copy strong {
  font-size: 14px;
}

.content-section {
  position: relative;
  overflow: hidden;
  background: rgb(50 46 47 / 96%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgb(0 0 0 / 14%);
}

.section-heading {
  position: relative;
  width: 100%;
  padding: 20px 20px 0;
}

.section-heading::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  content: "";
  background: linear-gradient(90deg, var(--accent) 0 64px, var(--accent-2) 64px 90px, rgb(254 200 130 / 13%) 90px 100%);
  transform-origin: left;
}

.reveal .section-heading::after {
  transform: scaleX(.22);
}

.reveal.is-visible .section-heading::after {
  transform: scaleX(1);
  transition: transform 560ms cubic-bezier(.22, .72, .24, 1);
}

.section-body {
  display: flow-root;
  width: 100%;
  padding: 20px;
}

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

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

.section-body > h3 {
  margin-top: 20px;
  color: var(--accent);
}

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

.intro-section .section-body > p:first-child {
  color: var(--text);
  font-size: 16px;
}

.feature-list,
.steps-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.steps-list li {
  position: relative;
  width: 100%;
  padding-left: 32px;
  color: var(--muted);
}

.feature-list li::before {
  position: absolute;
  top: .46em;
  left: 3px;
  width: 11px;
  height: 11px;
  content: "";
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 2px solid var(--surface);
  outline: 1px solid rgb(254 200 130 / 62%);
  transform: rotate(30deg);
}

#vip-programm .section-body > .feature-list:first-of-type {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
}

#vip-programm .section-body > .feature-list:first-of-type li {
  min-width: 0;
}

.steps-list {
  counter-reset: steps;
}

.steps-list::before {
  position: absolute;
}

.steps-list li {
  min-height: 34px;
  padding-left: 46px;
  counter-increment: steps;
}

.steps-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #292526;
  content: counter(steps);
  background: var(--accent);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  font-size: 11px;
  font-weight: 700;
}

.steps-list li:not(:last-child)::after {
  position: absolute;
  top: 28px;
  bottom: -12px;
  left: 14px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--accent), rgb(254 200 130 / 12%));
}

.table-wrap {
  --scroll-edge-start: transparent;
  --scroll-edge-end: transparent;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  background: #2b2728;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 18px 0 18px -20px var(--scroll-edge-start), inset -18px 0 18px -20px var(--scroll-edge-end);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #2b2728;
  transition: box-shadow 160ms ease;
}

.table-wrap.is-scrollable:not(.is-scroll-start) {
  --scroll-edge-start: var(--accent-2);
}

.table-wrap.is-scrollable:not(.is-scroll-end) {
  --scroll-edge-end: var(--accent);
}

.table-wrap:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

th,
td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid rgb(254 200 130 / 8%);
  border-bottom: 1px solid rgb(254 200 130 / 10%);
}

thead th {
  color: var(--text);
  background: #211e1f;
  border-bottom-color: rgb(254 200 130 / 35%);
  font-weight: 600;
}

tbody th {
  color: var(--accent);
  background: #302b2b;
  font-weight: 600;
}

tbody tr:nth-child(even) td {
  background: rgb(254 200 130 / 2.5%);
}

tbody tr {
  position: relative;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

tbody tr:hover,
tbody tr:focus-within {
  background: rgb(255 159 108 / 7%);
  box-shadow: inset 3px 0 0 var(--accent-2);
}

tbody tr:hover th,
tbody tr:focus-within th {
  color: var(--text);
  background: #3b302d;
}

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

.comparison-card,
.review-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 20px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.comparison-card::before,
.review-card::before {
  position: absolute;
  top: -1px;
  left: 18px;
  width: 42px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.comparison-card.is-pro::before {
  background: var(--success);
}

.comparison-card.is-con::before {
  background: var(--warning);
}

.comparison-card:hover,
.comparison-card:focus-within,
.review-card:hover,
.review-card:focus-within {
  border-color: rgb(254 200 130 / 55%);
  box-shadow: 0 14px 28px rgb(0 0 0 / 18%);
  transform: translateY(-2px);
}

.comparison-card h3 {
  color: var(--text);
}

.comparison-card .feature-list {
  gap: 14px;
}

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

.game-card-controls {
  display: none;
}

.game-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 20px;
  overflow: hidden;
  background-color: var(--surface-raised);
  background-image: linear-gradient(145deg, rgb(254 200 130 / 5%), transparent 48%), url("hexline.svg");
  background-repeat: no-repeat;
  background-position: 0 0, calc(100% + 42px) -48px;
  background-size: auto, 190px auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.game-card::before {
  position: absolute;
  top: -1px;
  left: 20px;
  width: 54px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.game-card:hover,
.game-card:focus-within {
  border-color: rgb(254 200 130 / 55%);
  box-shadow: 0 14px 28px rgb(0 0 0 / 18%);
  transform: translateY(-2px);
}

.game-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.game-card-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.game-card-head h3 {
  color: var(--text);
  font-size: 17px;
}

.game-card-index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--page);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 1px solid rgb(255 250 243 / 35%);
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
}

.game-card > p {
  color: var(--muted);
}

.section-note {
  position: relative;
  padding: 15px 18px 15px 22px;
  background: rgb(254 200 130 / 5%);
  border: 1px solid rgb(254 200 130 / 18%);
  border-radius: var(--radius);
}

.section-note::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -1px;
  width: 3px;
  content: "";
  background: linear-gradient(var(--accent), var(--accent-2));
}

.section-note p {
  color: var(--text);
  font-weight: 500;
}

.expert-byline {
  position: relative;
  padding: 14px 16px 14px 20px;
  color: var(--text);
  background: linear-gradient(90deg, rgb(254 200 130 / 10%), transparent 78%);
  border-left: 3px solid var(--accent);
  font-weight: 600;
}

.author-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0;
}

.author-meta-item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 16px 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(254 200 130 / 8%), rgb(255 159 108 / 3%));
  border: 1px solid rgb(254 200 130 / 24%);
  border-radius: var(--radius);
}

.author-meta-item::before {
  position: absolute;
  top: 0;
  left: 18px;
  width: 42px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.author-meta-item.is-wide {
  grid-column: 1 / -1;
}

.author-meta-item dt {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.author-meta-item dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.author-meta-item.is-wide dd {
  color: var(--muted);
  font-weight: 500;
}

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

.review-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(110deg, rgb(254 200 130 / 12%), rgb(255 159 108 / 4%));
  border: 1px solid rgb(254 200 130 / 32%);
  border-radius: var(--radius);
}

.review-score {
  display: flex;
  align-items: baseline;
  min-width: 96px;
  color: var(--accent);
}

.review-score strong {
  font-size: 34px;
  line-height: 1;
}

.review-score span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.review-summary-copy {
  display: grid;
  gap: 5px;
}

.review-summary-copy .reviewed-entity {
  color: var(--text);
  font-weight: 700;
}

.review-summary-copy p:not(.reviewed-entity) {
  color: var(--muted);
  font-size: 13px;
}

.review-meter {
  display: block;
  width: min(100%, 280px);
  height: 4px;
  overflow: hidden;
  background: rgb(255 250 243 / 10%);
  border-radius: 5px;
}

.review-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.review-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.review-meta {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(254 200 130 / 16%);
}

.review-meta-line {
  color: var(--text);
  font-weight: 600;
}

.stars {
  color: var(--accent);
  letter-spacing: .08em;
}

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

.faq-item {
  overflow: hidden;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item:hover,
.faq-item:focus-within,
.faq-item[open] {
  border-color: rgb(254 200 130 / 58%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 15%);
  transform: translateY(-1px);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px 16px 10px 12px;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline-offset: -3px;
}

.faq-chip {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--accent);
  background: #292526;
  border: 1px solid rgb(254 200 130 / 46%);
  clip-path: polygon(25% 2%, 75% 2%, 100% 25%, 100% 75%, 75% 98%, 25% 98%, 0 75%, 0 25%);
  font-size: 11px;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.faq-chip > span {
  display: block;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-chip {
  color: #292526;
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-item[open] .faq-chip > span {
  transform: rotate(-45deg);
}

.faq-item summary:active .faq-chip {
  transform: scale(.94);
}

.faq-item[open] summary:active .faq-chip {
  transform: rotate(45deg) scale(.94);
}

.faq-answer {
  padding: 0 16px 18px 68px;
  color: var(--muted);
}

.promo-banner,
.app-download-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 260px;
  padding: 28px 30px;
  overflow: hidden;
  background: #171516;
  border: 1px solid rgb(254 200 130 / 28%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-overlay {
  position: absolute;
  inset: 0;
}

.promo-copy-left .promo-overlay {
  background: linear-gradient(90deg, rgb(20 18 19 / 96%) 0%, rgb(20 18 19 / 80%) 43%, rgb(20 18 19 / 16%) 72%, transparent 100%);
}

.promo-copy-right .promo-overlay {
  background: linear-gradient(270deg, rgb(20 18 19 / 96%) 0%, rgb(20 18 19 / 80%) 43%, rgb(20 18 19 / 16%) 72%, transparent 100%);
}

.app-download-banner .promo-overlay {
  background: linear-gradient(90deg, rgb(20 18 19 / 98%) 0%, rgb(20 18 19 / 90%) 48%, rgb(20 18 19 / 18%) 76%, transparent 100%);
}

.app-download-banner-actions {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: start;
  width: 100%;
}

.app-download-banner-actions .download-actions {
  margin-top: 0;
}

.promo-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 12px;
  width: min(56%, 560px);
}

.promo-copy-right .promo-copy {
  margin-left: auto;
}

.promo-copy h2 {
  font-size: 26px;
}

.promo-copy p {
  width: 100%;
  max-width: none;
  color: var(--muted);
}

.promo-cta {
  min-height: 46px;
  margin-top: 2px;
}

.section-cta {
  display: inline-flex;
  width: auto;
  margin-top: 20px;
}

.final-action-list .cta-list-item {
  padding-left: 0;
}

.final-action-list .cta-list-item::before {
  display: none;
}

.final-action-list .section-cta {
  margin-top: 0;
}

.site-footer {
  margin-top: 40px;
  background: #211e1f;
  border-top: 1px solid rgb(254 200 130 / 24%);
}

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

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(150px, .7fr) minmax(180px, .8fr) minmax(250px, 1fr);
  gap: 40px;
  padding-top: 34px;
  padding-bottom: 30px;
}

.footer-brand img {
  width: 160px;
  height: auto;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-responsible p,
.footer-bottom {
  color: var(--quiet);
  font-size: 12px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 10px;
}

.site-footer nav a::after {
  bottom: -2px;
}

.footer-title {
  color: var(--text) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 22px;
  border-top: 1px solid rgb(254 200 130 / 12%);
}

.single-main {
  width: calc(100% - 60px);
  max-width: 1540px;
  min-height: 60vh;
  margin: 20px auto 0;
}

.service-main {
  max-width: 1020px;
}

.service-card,
.error-card {
  width: 100%;
  padding: 30px;
  background: rgb(50 46 47 / 96%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card > h1 {
  margin: 6px 0 28px;
}

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

.service-qa {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid rgb(254 200 130 / 14%);
}

.service-qa h2 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.4;
}

.service-qa p {
  width: 100%;
  max-width: none;
  color: var(--muted);
}

.error-main {
  display: grid;
  place-items: center;
}

.error-card {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 760px;
  background-image: url("hexline.svg");
}

.error-code {
  color: var(--accent);
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
}

.numeric-indicator {
  font-variant-numeric: tabular-nums;
}

.review-carousel {
  position: relative;
  width: 100%;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.carousel-control {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--accent);
  background: #292526;
  border: 1px solid rgb(254 200 130 / 38%);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 120ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible,
.carousel-control[aria-pressed="true"] {
  color: var(--page);
  background: var(--accent);
}

.carousel-control:active {
  transform: scale(.94);
}

.review-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #2b2728;
  scroll-snap-type: x mandatory;
}

.review-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  min-width: 100%;
}

.review-card {
  flex: 0 0 calc((min(100vw - 92px, 980px) - 20px) / 2);
  max-width: 480px;
  scroll-snap-align: start;
}

.review-card:last-child:nth-child(odd) {
  grid-column: auto;
}

.promo-banner.has-pointer-light > img {
  transform: translate3d(var(--promo-x, 0), var(--promo-y, 0), 0) scale(1.035);
  transition: transform 120ms ease-out;
}

.promo-overlay::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle 190px at var(--promo-light-x, 50%) var(--promo-light-y, 50%), rgb(254 200 130 / 19%), transparent 72%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.promo-banner.has-pointer-light .promo-overlay::after {
  opacity: 1;
}

.table-wrap thead th:first-child,
.table-wrap tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 2;
  box-shadow: 8px 0 14px -12px rgb(0 0 0 / 80%);
}

.table-wrap thead th:first-child {
  z-index: 3;
}

.anchor-target-pulse::after {
  animation: target-copper-pulse 1000ms ease-out;
}

@keyframes target-copper-pulse {
  0% { border-color: var(--accent); box-shadow: inset 0 0 0 2px rgb(254 200 130 / 28%); }
  100% { border-color: transparent; box-shadow: inset 0 0 0 18px transparent; }
}

.game-rail {
  position: relative;
  width: 100%;
  margin-bottom: var(--gap);
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(90deg, #211e1f, #332d2b 48%, #211e1f);
  border: 1px solid rgb(254 200 130 / 24%);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgb(0 0 0 / 18%);
}

.game-rail-viewport {
  width: 100%;
  overflow: hidden;
}

html:not([data-interaction-ready]) .game-rail-viewport {
  overflow-x: auto;
}

.game-rail-track,
.game-rail-group {
  display: flex;
  width: max-content;
}

.game-rail-group {
  gap: 10px;
  padding-right: 10px;
}

.game-rail.is-ready .game-rail-track {
  animation: game-rail-loop 54s linear infinite;
}

.game-rail:hover .game-rail-track,
.game-rail:focus-within .game-rail-track,
.game-rail.is-paused .game-rail-track,
.game-rail.is-page-paused .game-rail-track {
  animation-play-state: paused;
}

.game-rail-card {
  position: relative;
  flex: 0 0 176px;
  height: 128px;
  overflow: hidden;
  color: #fff;
  background: #080808;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgb(254 200 130 / 8%);
}

.game-rail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transition: opacity 180ms ease, transform 220ms ease;
}

.game-rail-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 24%, rgb(8 7 8 / 72%) 56%, rgb(8 7 8 / 98%) 100%);
}

.game-rail-card span {
  position: absolute;
  right: 12px;
  bottom: 9px;
  left: 12px;
  z-index: 1;
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
  text-shadow: 0 1px 3px #000;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.game-rail-card:hover img,
.game-rail-card:focus-visible img {
  opacity: .92;
  transform: scale(1.035);
}

@keyframes game-rail-loop {
  to { transform: translateX(-50%); }
}

.site-loader:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  color: var(--text);
  background-color: #211e1f;
  background-image: url("hexline.svg"), radial-gradient(circle at 50% 40%, rgb(254 200 130 / 13%), transparent 38%);
  text-align: center;
}

.site-loader > img {
  width: min(250px, 72vw);
  height: auto;
}

.loader-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: var(--page);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  font-size: 34px;
  font-weight: 700;
  animation: loader-mark-pulse 1100ms ease-in-out infinite alternate;
}

.loader-line {
  width: min(330px, 78vw);
  height: 3px;
  overflow: hidden;
  background: rgb(255 250 243 / 10%);
}

.loader-line span {
  display: block;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: loader-line-run 1200ms ease-in-out infinite;
}

.loader-skip {
  min-height: 42px;
  padding: 8px 16px;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgb(254 200 130 / 45%);
  border-radius: var(--radius);
  cursor: pointer;
}

@keyframes loader-mark-pulse { to { transform: scale(1.06); filter: brightness(1.08); } }
@keyframes loader-line-run { from { transform: translateX(-105%); } to { transform: translateX(225%); } }

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 85;
  display: grid;
  justify-items: end;
  gap: 8px;
  pointer-events: none;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 13px;
  color: var(--text);
  background: rgb(41 37 38 / 96%);
  border: 1px solid rgb(254 200 130 / 44%);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgb(0 0 0 / 30%);
  cursor: pointer;
  pointer-events: auto;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  color: var(--page);
  background: var(--accent);
  transform: translateY(-2px);
}

.floating-action > span:first-child {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.floating-chat {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  min-width: 228px;
  min-height: 60px;
  margin-right: -20px;
  padding: 8px 28px 8px 8px;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(50 46 47 / 98%), rgb(41 37 38 / 98%));
  border-right: 0;
  border-radius: 10px 0 0 10px;
  text-align: left;
}

.floating-chat::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--accent);
}

.support-tab-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--accent);
  background: rgb(254 200 130 / 10%);
  border: 1px solid rgb(254 200 130 / 34%);
  border-radius: 7px;
}

.support-tab-svg {
  width: 23px;
  height: 23px;
}

.support-tab-copy {
  display: grid;
  align-content: center;
  gap: 2px;
  min-width: 0;
}

.support-tab-copy strong,
.support-tab-copy small {
  display: block;
  white-space: nowrap;
}

.support-tab-copy strong {
  font-size: 13px;
  line-height: 1.2;
}

.support-tab-copy small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
}

.floating-chat:hover .support-tab-svg,
.floating-chat:focus-visible .support-tab-svg {
  stroke: var(--page);
}

.floating-chat:hover .support-tab-copy small,
.floating-chat:focus-visible .support-tab-copy small {
  color: var(--page);
}

.floating-action:hover > span:first-child,
.floating-action:focus-visible > span:first-child {
  color: var(--page);
}

.back-to-top:not([hidden]) {
  --scroll-progress: 0deg;
  position: relative;
  display: inline-grid;
  width: 52px;
  min-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 4px;
  place-items: center;
  overflow: hidden;
  background: conic-gradient(var(--accent) var(--scroll-progress), rgb(254 200 130 / 18%) 0deg);
  border: 0;
  border-radius: 50%;
}

.back-to-top:not([hidden])::before {
  position: absolute;
  inset: 4px;
  content: "";
  background: rgb(41 37 38 / 98%);
  border: 1px solid rgb(254 200 130 / 32%);
  border-radius: 50%;
}

.back-to-top:not([hidden])::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  z-index: 1;
  color: var(--muted);
  content: attr(data-scroll-progress) "%";
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.back-to-top:not([hidden]) > span:first-child {
  position: relative;
  z-index: 1;
  transform: translateY(-4px);
}

.back-to-top:not([hidden]) > span:last-child {
  display: none;
}

.back-to-top:not([hidden]):hover,
.back-to-top:not([hidden]):focus-visible {
  background: conic-gradient(var(--accent) var(--scroll-progress), rgb(254 200 130 / 24%) 0deg);
}

.back-to-top:not([hidden]):hover::before,
.back-to-top:not([hidden]):focus-visible::before {
  background: #f0ab70;
}

.back-to-top:not([hidden]):hover::after,
.back-to-top:not([hidden]):focus-visible::after {
  color: var(--page);
}

.modal-shell:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(14 12 13 / 82%);
  backdrop-filter: blur(5px);
}

.interaction-modal {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 520px);
  max-height: calc(100dvh - 36px);
  padding: 28px;
  overflow-y: auto;
  color: var(--text);
  background-color: #322e2f;
  background-image: url("hexline.svg");
  border: 1px solid rgb(254 200 130 / 48%);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgb(0 0 0 / 55%);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: var(--accent);
  background: #292526;
  border: 1px solid rgb(254 200 130 / 38%);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.modal-eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wheel-stage {
  position: relative;
  width: 320px;
  height: 320px;
}

.wheel-disc {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    repeating-conic-gradient(from 0deg, transparent 0 35deg, rgb(255 247 228 / 42%) 35deg 36deg),
    conic-gradient(from 0deg, #fec882 0 10%, #3e3431 10% 20%, #ff9f6c 20% 30%, #2a2526 30% 40%, #fec882 40% 50%, #3e3431 50% 60%, #ff9f6c 60% 70%, #2a2526 70% 80%, #fec882 80% 90%, #3e3431 90% 100%);
  border: 8px solid #211e1f;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent), 0 16px 40px rgb(0 0 0 / 32%);
  transition: transform 1600ms cubic-bezier(.17, .67, .2, 1);
}

.wheel-disc::after {
  position: absolute;
  inset: 41%;
  content: "N";
  display: grid;
  place-items: center;
  color: var(--accent);
  background: #211e1f;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-weight: 700;
}

.wheel-disc > .wheel-segment {
  position: absolute;
  inset: 0;
  transform: rotate(calc(var(--segment) * 36deg + 18deg));
  transform-origin: 50% 50%;
}

.wheel-segment-label {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 76px;
  margin-left: -38px;
  padding: 3px 4px;
  color: #fffaf2;
  background: rgb(25 22 23 / 72%);
  border: 1px solid rgb(254 200 130 / 34%);
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 1px 3px #000;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.wheel-segment:nth-child(n + 6) .wheel-segment-label {
  transform: rotate(90deg);
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: calc(50% - 10px);
  z-index: 2;
  color: var(--text);
  font-size: 22px;
  filter: drop-shadow(0 2px 2px #000);
}

.wheel-spin {
  border: 0;
}

[data-modal="wheel"][data-wheel-state="idle"] [data-wheel-result],
[data-modal="wheel"][data-wheel-state="idle"] [data-interaction-owner="wheel"],
[data-modal="wheel"][data-wheel-state="spinning"] [data-wheel-result],
[data-modal="wheel"][data-wheel-state="spinning"] [data-interaction-owner="wheel"],
[data-modal="wheel"][data-wheel-state="resolved"] [data-wheel-spin] {
  display: none !important;
}

.offer-result {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px 16px;
  background: rgb(254 200 130 / 8%);
  border: 1px solid rgb(254 200 130 / 28%);
  border-radius: var(--radius);
}

.offer-result strong {
  color: var(--accent);
  font-size: 18px;
}

.offer-result p,
.offer-result span {
  color: var(--muted);
}

.modal-cta {
  margin-top: 2px;
}

.coin-rain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.coin-rain-piece {
  position: absolute;
  top: -38px;
  left: var(--coin-left);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #4a2810;
  background: radial-gradient(circle at 34% 28%, #fff7a8 0 9%, #ffd45f 10% 36%, #e99821 65%, #8f4c0f 100%);
  border: 2px solid #fff0a0;
  border-radius: 50%;
  box-shadow: 0 0 18px rgb(255 201 68 / 92%), inset 0 0 0 2px rgb(119 58 5 / 34%);
  font-size: 15px;
  font-weight: 900;
  opacity: 0;
}

.coin-rain.is-active .coin-rain-piece {
  animation: coin-rain-fall var(--coin-duration) cubic-bezier(.2, .7, .25, 1) var(--coin-delay) forwards;
}

.coin-rain-piece.is-dollar {
  color: #173b24;
  background: radial-gradient(circle at 34% 28%, #f5ffc8 0 9%, #9fe15d 10% 35%, #e8bd35 61%, #92600c 100%);
}

.wheel-modal.is-celebrating {
  animation: wheel-bonus-glow 850ms ease-in-out 2 alternate;
}

@keyframes coin-rain-fall {
  0% { opacity: 0; transform: translate3d(0, -46px, 0) rotate(0) scale(var(--coin-scale)); }
  10% { opacity: 1; }
  82% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--coin-drift), 680px, 0) rotate(var(--coin-spin)) scale(var(--coin-scale)); }
}

@keyframes wheel-bonus-glow {
  to { border-color: #ffe66a; box-shadow: 0 0 0 3px rgb(255 223 91 / 42%), 0 0 46px rgb(255 172 52 / 70%), 0 28px 90px rgb(0 0 0 / 55%); }
}

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

  .sidebar {
    display: none;
  }

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 180px 88px 1fr auto;
    gap: 12px;
  }

  .user-context {
    min-width: 82px;
    padding-right: 9px;
  }

  .user-context small {
    display: none;
  }

  .desktop-nav {
    gap: 22px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    min-width: 130px;
  }

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

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

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    grid-template-columns: minmax(118px, 1fr) auto auto;
    gap: 8px;
    padding: 0 16px;
  }

  .brand-link {
    min-width: 0;
    height: 100%;
  }

  .brand-link img {
    width: 126px;
    max-height: 44px;
    object-fit: contain;
    object-position: left center;
  }

  .user-context {
    min-width: 0;
    min-height: 36px;
    padding: 6px 9px;
  }

  .user-context-icon {
    width: 20px;
    height: 20px;
  }

  .user-context time {
    font-size: .78rem;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 130;
    display: grid;
    align-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px;
    color: var(--accent);
    background: transparent;
    border: 1px solid rgb(254 200 130 / 45%);
    border-radius: 5px;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 120ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    color: var(--text);
    background: rgb(254 200 130 / 8%);
    border-color: var(--accent);
  }

  .menu-toggle:active {
    transform: scale(.96);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 180ms ease, opacity 140ms ease, width 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    width: 22px;
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    width: 22px;
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-scrim:not([hidden]) {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 105;
    display: block;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    padding: 0;
    background: rgb(16 14 15 / 72%);
    border: 0;
    touch-action: pan-y;
  }

  .mobile-menu:not([hidden]) {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    z-index: 120;
    display: grid;
    gap: 18px;
    max-height: calc(100dvh - var(--header-height) - 16px);
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scrollbar-gutter: stable;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    background: #2d292a;
    border: 1px solid rgb(254 200 130 / 45%);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 24px 50px rgb(0 0 0 / 38%);
  }

  .mobile-menu nav,
  .mobile-actions {
    display: grid;
    gap: 10px;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 10px;
    border-bottom: 1px solid rgb(254 200 130 / 12%);
    border-radius: 4px;
    transition: color 160ms ease, background-color 160ms ease, transform 120ms ease;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible,
  .mobile-menu nav a.active {
    color: var(--accent);
    background: rgb(254 200 130 / 7%);
  }

  .mobile-menu nav a:active {
    transform: translateX(2px) scale(.994);
  }

  .mobile-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 4px;
  }

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

  .site-grid {
    padding: 20px 16px 0;
  }

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

  .footer-inner,
  .footer-bottom {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(24px, 7vw, 30px);
  }

  h2 {
    font-size: clamp(23px, 6vw, 28px);
  }

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

  .hero {
    min-height: 460px;
    padding: 36px 20px 24px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgb(20 18 19 / 8%) 0%, rgb(20 18 19 / 36%) 34%, rgb(20 18 19 / 94%) 76%, rgb(20 18 19 / 98%) 100%);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-cta {
    width: auto;
    max-width: 100%;
  }

  .section-heading {
    padding: 18px 16px 0;
  }

  .section-heading::after {
    margin-top: 16px;
  }

  .section-body {
    padding: 16px;
  }

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

  #vip-programm .section-body > .feature-list:first-of-type {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .pros-cons-grid,
  .review-grid,
  .game-card-grid {
    grid-template-columns: 1fr;
  }

  .game-card-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 10px;
  }

  .game-card-grid {
    display: flex;
    gap: 14px;
    width: 100%;
    padding-bottom: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #2b2728;
    scroll-snap-type: x mandatory;
  }

  .game-card {
    flex: 0 0 min(86%, 370px);
    scroll-snap-align: start;
  }

  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .game-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .review-card {
    flex-basis: min(86vw, 380px);
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .floating-action {
    min-width: 44px;
    padding: 9px 12px;
    justify-content: center;
  }

  .floating-action > span:last-child,
  .floating-chat .support-tab-copy {
    display: none;
  }

  .floating-chat {
    grid-template-columns: 1fr;
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    margin-right: 0;
    padding: 6px;
    place-items: center;
    border-right: 1px solid rgb(254 200 130 / 44%);
    border-radius: 10px;
  }

  .interaction-modal {
    padding: 24px 18px;
  }

  .wheel-stage {
    width: 252px;
    height: 252px;
  }

  .wheel-segment-label {
    top: 23px;
    width: 64px;
    margin-left: -32px;
    font-size: 7.5px;
  }

  .game-rail-card {
    flex-basis: 150px;
    height: 110px;
  }

  .promo-banner,
  .app-download-banner {
    min-height: 330px;
    padding: 22px 20px;
  }

  .promo-copy-left .promo-overlay,
  .promo-copy-right .promo-overlay,
  .app-download-banner .promo-overlay {
    background: linear-gradient(180deg, rgb(20 18 19 / 8%) 0%, rgb(20 18 19 / 38%) 36%, rgb(20 18 19 / 94%) 76%, rgb(20 18 19 / 98%) 100%);
  }

  .promo-copy,
  .promo-copy-right .promo-copy {
    width: 100%;
    margin: 0;
  }

  .promo-copy h2 {
    font-size: 23px;
  }

  .promo-cta {
    max-width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .service-card,
  .error-card {
    padding: 22px 18px;
  }
}

@media (max-width: 638px) {
  #vip-programm .section-body > .feature-list:first-of-type {
    grid-template-columns: 1fr;
  }

  .author-meta-grid {
    grid-template-columns: 1fr;
  }

  .author-meta-item.is-wide {
    grid-column: auto;
  }

  .review-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .store-actions {
    display: grid;
    width: min(100%, 286px);
  }

  .store-button {
    flex-basis: auto;
    width: 100%;
    min-width: 0;
  }

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

@media (max-width: 389px) {
  .site-grid {
    padding-right: 12px;
    padding-left: 12px;
  }

  .single-main {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: 490px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta {
    min-width: 0;
    white-space: normal;
  }

  .faq-item summary {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    padding-right: 12px;
  }

  .faq-chip {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    padding-right: 12px;
    padding-left: 58px;
  }

  .footer-inner,
  .footer-bottom {
    padding-right: 12px;
    padding-left: 12px;
  }
}

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

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

  .reveal .section-heading::after {
    transform: none;
  }

  .game-rail.is-ready .game-rail-track {
    animation: none;
    transform: none;
  }

  .game-rail-viewport {
    overflow-x: auto;
  }

  .promo-banner.has-pointer-light > img {
    transform: none;
  }

  .promo-overlay::after {
    display: none;
  }

  .coin-rain-piece {
    display: none;
  }

  .wheel-modal.is-celebrating {
    animation: none;
  }
}
