:root {
  color-scheme: dark;
  --body-bg: #05071a;
  --body-bg-rgb: 5, 7, 26;
  --geo-green: #009246;
  --geo-white: #f1f2f1;
  --geo-red: #ce2b37;
  --surface: #181e29;
  --surface-raised: #23293a;
  --surface-soft: #32333f;
  --surface-warm: #322e2f;
  --text: #f1f2f1;
  --text-strong: #ffffff;
  --text-muted: #c8d2cb;
  --text-inactive: #a8a8a8;
  --text-dark: #07140c;
  --accent: var(--geo-green);
  --accent-hover: #00b458;
  --accent-rgb: 0, 146, 70;
  --danger: var(--geo-red);
  --danger-hover: #ef4050;
  --success: var(--geo-green);
  --line: rgba(241, 242, 241, 0.16);
  --line-strong: rgba(0, 146, 70, 0.46);
  --radius-sm: 8px;
  --radius: 10px;
  --radius-card: 20px;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  --shadow-accent: 0 10px 26px rgba(var(--accent-rgb), 0.16);
  --header-height: 76px;
  --content-width: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  max-width: 100%;
  min-height: 100dvh;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: clip;
  background:
    radial-gradient(
      circle at 76% -10%,
      rgba(var(--accent-rgb), 0.08),
      transparent 30rem
    ),
    linear-gradient(180deg, #0b0c21 0, var(--body-bg) 32rem, #030415 100%);
  color: var(--text);
  font-family: "Merriweather Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent);
  color: var(--text-dark);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.table-frame:focus-visible,
.review-track:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: -999px;
  z-index: 200;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 800;
}
.skip-link:focus {
  left: 10px;
}

.site-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(var(--body-bg-rgb), 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}
.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(100%, var(--content-width));
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}
.brand-mark {
  position: static;
  width: 142px;
  height: 58px;
  object-fit: contain;
  opacity: 1;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 0;
  padding: 4px;
  border-radius: var(--radius);
  background: var(--surface);
}

.main-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 7px;
  color: var(--text-inactive);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.main-nav-links a:hover {
  background: var(--surface-soft);
  color: var(--text-strong);
}
.main-nav-links a:active {
  transform: translateY(1px);
}
.main-nav-links a.state-active,
.main-nav-links a[aria-current="page"] {
  background: var(--accent);
  color: var(--text-dark);
}

.member-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
@media (min-width: 1081px) {
  body:has(.page-layout:not(.page-layout-single) > .story-rail) .main-nav {
    display: grid;
    grid-template-columns: 220px max-content minmax(0, 1fr);
    column-gap: 20px;
  }
  body:has(.page-layout:not(.page-layout-single) > .story-rail)
    .member-actions {
    justify-self: end;
    margin-left: 0;
  }
  body:has(.page-layout:not(.page-layout-single) > .story-rail.state-folded)
    .main-nav {
    grid-template-columns: 90px max-content minmax(0, 1fr);
  }
}
@media (min-width: 1081px) and (max-width: 1100px) {
  body:has(.page-layout:not(.page-layout-single) > .story-rail) .main-nav {
    column-gap: 14px;
  }
}
.desk-locale {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 5px 11px 5px 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(21, 27, 43, 0.88);
  color: var(--text-strong);
  font-size: 12px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.desk-locale-flag {
  display: inline-block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background-image: linear-gradient(
    90deg,
    #009246 0 33.333%,
    #fff 33.333% 66.666%,
    #ce2b37 66.666% 100%
  );
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.38);
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.desk-locale-flag::after,
.mob-locale span::after {
  content: none;
}
.rail-country-flag::after {
  color: #fff;
  content: "IT";
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}
.desk-locale strong {
  letter-spacing: 0.06em;
}
.head-action,
.ui-action-button,
.app-get-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 20px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  --button-bg: var(--accent);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  filter: drop-shadow(0 7px 12px rgba(var(--accent-rgb), 0.16));
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    filter 0.2s ease;
}
.head-action::before,
.ui-action-button::before,
.app-get-btn::before {
  position: absolute;
  inset: 0 4px;
  z-index: -1;
  border-radius: 8px;
  background: var(--button-bg);
  content: "";
  transform: skewX(-5deg);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}
.head-action:hover,
.ui-action-button:hover,
.app-get-btn:hover {
  --button-bg: var(--accent-hover);
  transform: translateY(-1px);
}
.head-action:active,
.ui-action-button:active,
.app-get-btn:active {
  transform: translateY(1px) scale(0.99);
  filter: none;
}

.head-action.alt-action {
  border: 0;
  background: transparent;
  --button-bg: var(--surface-raised);
  color: var(--text);
  filter: none;
}
.head-action.alt-action:hover {
  --button-bg: var(--surface-soft);
}
.head-action.main-action {
  --button-bg: var(--accent);
  color: var(--text-dark);
}

.member-actions .head-action {
  min-width: 120px;
  min-height: 40px;
  padding: 10px 22px;
}
.member-actions .head-action.main-action {
  min-width: 132px;
  filter: drop-shadow(0 0 8px rgba(233, 62, 58, 0.72))
    drop-shadow(0 6px 13px rgba(233, 62, 58, 0.38));
}
.member-actions .head-action.main-action:hover {
  filter: drop-shadow(0 0 10px rgba(233, 62, 58, 0.82))
    drop-shadow(0 7px 15px rgba(233, 62, 58, 0.46));
}

.mob-head-actions,
.mob-burger,
.mob-menu {
  display: none;
}

.game-strip {
  --games-visible: 6;
  --games-gap: 10px;
  --game-slide-duration: 1.05s;
  min-width: 0;
  padding: 22px 0 8px;
  overflow: hidden;
}
.game-strip[data-game-mode="live"] {
  --game-slide-duration: 1.4s;
}
.game-strip-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.game-strip-heading h2 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}
.game-strip-controls {
  display: flex;
  gap: 8px;
}
.game-strip-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0 0 4px;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  font: 800 28px/1 var(--font-body);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.game-strip-controls button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text-dark);
  transform: translateY(-1px);
}
.game-strip-viewport {
  min-width: 0;
  overflow: hidden;
}
.game-strip-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - (var(--games-visible) - 1) * var(--games-gap)) /
      var(--games-visible)
  );
  gap: var(--games-gap);
  backface-visibility: hidden;
  transition: transform var(--game-slide-duration) cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.game-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: #171e2b;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.game-tile:hover,
.game-tile:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.86);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.3),
    0 13px 30px rgba(0, 0, 0, 0.38);
  transform: translateY(-3px);
}
.game-tile-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0b1020;
}
.game-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.3s ease;
}
.game-tile:hover .game-tile-media img,
.game-tile:focus-visible .game-tile-media img {
  transform: scale(1.055);
  filter: brightness(0.64);
}
.game-tile-stats {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(10, 18, 31, 0.84);
  color: #63e858;
  font-size: 11px;
  line-height: 1.05;
  backdrop-filter: blur(5px);
}
.game-tile-stats span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.game-tile-stats b {
  color: #fff;
  font-size: 12px;
}
.game-tile-stats small {
  color: #aaf39f;
  font-size: 8px;
  font-weight: 900;
}
.game-tile-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 18, 0.18);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.game-tile:hover .game-tile-shade,
.game-tile:focus-visible .game-tile-shade {
  opacity: 1;
}
.game-tile-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  min-width: 104px;
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -40%) scale(0.94);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background-color 0.2s ease;
}
.game-tile:hover .game-tile-play,
.game-tile:focus-visible .game-tile-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.game-tile-footer {
  display: grid;
  align-content: center;
  min-height: 84px;
  padding: 12px 10px 10px;
  text-align: center;
}
.game-tile-footer strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.game-tile-footer small {
  margin-top: 7px;
  color: var(--text-inactive);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.game-strip-progress {
  position: relative;
  width: min(180px, 36%);
  height: 3px;
  margin: 14px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.game-strip-progress::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--game-progress, 50%);
  border-radius: inherit;
  background: var(--accent);
  content: "";
  transition: width var(--game-slide-duration) cubic-bezier(0.16, 1, 0.3, 1);
}

:root {
  --motion-out: cubic-bezier(0.23, 1, 0.32, 1);
  --motion-soft: cubic-bezier(0.22, 0.68, 0.28, 1);
}
.ui-motion-ready:not(.motion-off) .ui-motion-hero {
  overflow: hidden;
}
.ui-motion-ready:not(.motion-off) .ui-motion-hero .ui-hero-copy {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.68s var(--motion-out) 0.12s,
    transform 0.68s var(--motion-out) 0.12s;
}
.ui-motion-ready:not(.motion-off) .ui-motion-hero.state-shown .ui-hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.ui-motion-ready:not(.motion-off) .ui-motion-hero .hero-art {
  animation: hero-cinematic-entry 0.95s var(--motion-out) both;
}
@keyframes hero-cinematic-entry {
  from {
    opacity: 0.48;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.ui-motion-ready:not(.motion-off) .motion-block {
  opacity: 0;
  transform: translate3d(0, 17px, 0);
  transition:
    opacity 0.62s var(--motion-out),
    transform 0.62s var(--motion-out);
}
.ui-motion-ready:not(.motion-off) .motion-block.state-shown {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.ui-motion-ready:not(.motion-off) .promo-stack.motion-block .promo-kicker,
.ui-motion-ready:not(.motion-off) .promo-stack.motion-block .promo-copy > h2,
.ui-motion-ready:not(.motion-off) .promo-stack.motion-block .promo-copy > h3,
.ui-motion-ready:not(.motion-off) .promo-stack.motion-block .promo-actions {
  opacity: 0;
  filter: blur(5px);
  transition:
    opacity 0.72s var(--motion-out),
    filter 0.72s var(--motion-out),
    transform 0.72s var(--motion-out);
}
.ui-motion-ready:not(.motion-off) .promo-stack.motion-block .promo-kicker {
  transform: translate3d(-18px, 0, 0);
  transition-delay: 0.08s;
}
.ui-motion-ready:not(.motion-off) .promo-stack.motion-block .promo-copy > h2,
.ui-motion-ready:not(.motion-off) .promo-stack.motion-block .promo-copy > h3 {
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition-delay: 0.18s;
}
.ui-motion-ready:not(.motion-off) .promo-stack.motion-block .promo-actions {
  transform: translate3d(0, 18px, 0);
  transition-delay: 0.3s;
}
.ui-motion-ready:not(.motion-off)
  .promo-stack.motion-block.state-shown
  .promo-kicker,
.ui-motion-ready:not(.motion-off)
  .promo-stack.motion-block.state-shown
  .promo-copy
  > h2,
.ui-motion-ready:not(.motion-off)
  .promo-stack.motion-block.state-shown
  .promo-copy
  > h3,
.ui-motion-ready:not(.motion-off)
  .promo-stack.motion-block.state-shown
  .promo-actions {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.motion-title {
  white-space: normal;
}
.ui-motion-ready:not(.motion-off) .ui-motion-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 0.48em, 0);
  transition:
    opacity 0.48s var(--motion-out) calc(var(--letter-index) * 18ms),
    filter 0.48s var(--motion-out) calc(var(--letter-index) * 18ms),
    transform 0.48s var(--motion-out) calc(var(--letter-index) * 18ms);
}
.ui-motion-ready:not(.motion-off) .state-shown .ui-motion-letter,
.ui-motion-ready:not(.motion-off) .motion-title.state-shown .ui-motion-letter {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}
.section-art,
.app-get-art {
  transform: translateZ(0) scale(1);
  transition:
    transform 0.46s var(--motion-soft),
    filter 0.3s ease,
    opacity 0.3s ease;
  will-change: transform;
}
.promo-card,
.expert-focus {
  transform: translateZ(0);
  transition:
    transform 0.3s var(--motion-out),
    box-shadow 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .section-art:hover,
  .app-get-panel:hover .app-get-art {
    filter: saturate(1.05) brightness(1.025);
    transform: translateZ(0) scale(1.018);
  }
  .promo-card:hover,
  .expert-focus:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }
  .ui-action-button:hover,
  .head-action:hover,
  .app-get-btn:hover {
    transform: translate3d(0, -2px, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-block,
  .ui-motion-hero .ui-hero-copy,
  .ui-motion-letter,
  .section-art,
  .app-get-art,
  .promo-card,
  .expert-focus {
    animation: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

.help-chat {
  position: fixed;
  right: 22px;
  bottom: 138px;
  z-index: 88;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 7px 17px 7px 7px;
  border: 1px solid rgba(var(--accent-rgb), 0.62);
  border-radius: 999px;
  background: rgba(16, 22, 36, 0.96);
  color: #fff;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(var(--accent-rgb), 0.12);
  backdrop-filter: blur(12px);
  transition:
    opacity 0.2s ease,
    transform 0.2s var(--motion-out),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.help-chat-footer-visible {
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}
.help-chat::before {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.2s ease,
    transform 0.2s var(--motion-out);
}
.help-chat-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd51e, #f04437);
  box-shadow: 0 6px 14px rgba(240, 68, 55, 0.3);
}
.help-chat-icon svg {
  width: 24px;
  height: 24px;
  fill: #101522;
}
.help-chat-icon circle {
  fill: #ffd51e;
}
.help-chat-copy {
  display: grid;
  gap: 2px;
  min-width: 76px;
}
.help-chat-copy small {
  color: var(--text-inactive);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.help-chat-copy strong {
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.help-chat:hover {
  border-color: var(--accent);
  color: #fff;
  box-shadow:
    0 17px 42px rgba(0, 0, 0, 0.48),
    0 0 26px rgba(var(--accent-rgb), 0.22);
  transform: translate3d(0, -3px, 0);
}
.help-chat:hover::before {
  opacity: 1;
  transform: scale(1);
}
.help-chat:active {
  transform: translate3d(0, 0, 0) scale(0.97);
}
.help-chat:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 620px) {
  .help-chat {
    right: 14px;
    bottom: 194px;
    width: 56px;
    min-height: 56px;
    padding: 6px;
  }
  .help-chat-icon {
    width: 42px;
    height: 42px;
  }
  .help-chat-copy {
    display: none;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: #05071a;
  opacity: 1;
  transition:
    opacity 0.34s ease,
    visibility 0.34s ease;
}
.page-loader img {
  width: clamp(120px, 13vw, 168px);
  height: auto;
}
.page-loader.state-hidden {
  visibility: hidden;
  opacity: 0;
}
body.has-page-loader {
  overflow: hidden;
}

.page-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  width: min(100%, var(--content-width));
  margin: 20px auto 0;
  padding: 0 20px;
}

.story-rail {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
  max-height: calc(100dvh - var(--header-height) - 40px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
  scrollbar-width: thin;
  scrollbar-color: var(--surface-soft) transparent;
}

.rail-brand {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 10px 18px 6px 14px;
}
.rail-brand img {
  position: static;
  width: 168px;
  height: 70px;
  object-fit: contain;
  opacity: 1;
}
.rail-collapse-button {
  position: absolute;
  top: 26px;
  right: -1px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0 2px 2px 0;
  border: 1px solid #404256;
  border-radius: 50%;
  background: #1b1d2c;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.rail-collapse-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.rail-menu {
  padding: 0 5px 8px;
}
.rail-promotions {
  display: grid;
  gap: 10px;
}
.rail-promo {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 7px;
  min-height: 60px;
  padding: 4px 12px 4px 4px;
  overflow: hidden;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(180deg, #f0ce58 0%, #e56f31 52%, #c84929 100%);
  color: var(--text-strong);
  font-size: 14px;
  text-shadow: 0 1px 1px rgba(90, 28, 12, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.rail-promo:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 8px 18px rgba(0, 0, 0, 0.2);
}
.rail-promo-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  font-size: 0;
}
.rail-wheel-frame,
.rail-wheel-orbit,
.rail-wheel-disc,
.rail-missions-animation {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.rail-wheel-frame {
  z-index: 2;
  background-image: url("../img/fiery/aside/wof-button-frame.webp");
}
.rail-wheel-orbit {
  z-index: 1;
  inset: 5px;
  animation: safe-wheel-spin 7s linear infinite;
}
.rail-wheel-disc {
  background-image: url("../img/fiery/aside/wof-button-wheel.webp");
  animation: safe-wheel-spin 10s linear infinite;
}
.rail-missions-animation {
  inset: -4px;
  background-image: url("../img/fiery/aside/daily-rewards.svg");
}
@keyframes safe-wheel-spin {
  to {
    transform: rotate(360deg);
  }
}
.rail-promo-prizes {
  display: none;
}
.rail-badge,
.rail-count-icon small {
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.rail-secondary-links {
  display: grid;
  gap: 0;
  margin-top: 7px;
}
.rail-secondary-links > a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 53px;
  padding: 6px 11px;
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}
.rail-secondary-links > a:hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--accent);
  transform: translateX(2px);
}
.rail-secondary-links > a:nth-of-type(3) {
  display: none;
}
.rail-menu-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("../img/fiery/aside/hellspin-aside-reference.png");
  background-repeat: no-repeat;
  background-size: 214px 855px;
  color: var(--text);
  font-size: 0;
}
.rail-secondary-links > a:nth-of-type(1) .rail-menu-icon {
  background-position: -13px -244px;
}
.rail-secondary-links > a:nth-of-type(2) .rail-menu-icon {
  background-position: -13px -305px;
}
.rail-secondary-links > a:nth-of-type(4) .rail-menu-icon {
  background-position: -13px -367px;
}
.rail-secondary-links > a:nth-of-type(5) .rail-menu-icon {
  background-position: -13px -429px;
}
.rail-secondary-links > a:nth-of-type(6) .rail-menu-icon {
  background-position: -13px -490px;
}
.rail-secondary-links > a:nth-of-type(7) .rail-menu-icon {
  background-position: -13px -551px;
}
.rail-secondary-links > a:nth-of-type(8) .rail-menu-icon {
  background-position: -13px -613px;
}
.rail-secondary-links > a:nth-of-type(9) .rail-menu-icon {
  background-position: -13px -674px;
}
.rail-secondary-links > a:nth-of-type(10) .rail-menu-icon {
  background-position: -13px -731px;
}
.rail-count-icon small {
  position: absolute;
  top: -5px;
  right: -7px;
}
.rail-link-chevron,
.rail-language-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.rail-divider {
  display: none;
}

.rail-extra-links {
  display: grid;
  gap: 8px;
  padding: 0 2px 3px;
}
.rail-language {
  display: none;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: var(--text-muted);
  font-size: 13px;
}
.rail-language:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
.rail-country-flag {
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--geo-red);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.38);
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.rail-app {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 78px;
  align-items: center;
  min-height: 72px;
  padding: 10px 7px 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: linear-gradient(120deg, #606986, #3e496a);
}
.rail-app-content {
  display: grid;
  align-content: center;
  gap: 2px;
}
.rail-app-content small {
  color: #e0e1ea;
  font-size: 10px;
  line-height: 1.2;
}
.rail-app-content strong {
  color: #fff;
  font-size: 13px;
}
.rail-app img {
  align-self: center;
  width: 78px;
  height: 61px;
  object-fit: cover;
  object-position: top;
  border-radius: 5px 5px 0 0;
}
.rail-download-link {
  display: inline;
  margin-top: 1px;
  padding: 0;
  background: transparent;
  color: #e0e1ea;
  font-size: 10px;
  font-weight: 400;
}
.rail-download-link:hover {
  color: #fff;
}
.rail-download-link::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  cursor: pointer;
}
.rail-download-link:focus-visible {
  outline: 0;
}
.rail-download-link:focus-visible::after {
  border-radius: 6px;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.story-rail.state-folded {
  overflow: hidden;
}
.page-layout:has(.story-rail.state-folded) {
  grid-template-columns: 90px minmax(0, 1fr);
}
.story-rail.state-folded .rail-brand {
  min-height: 78px;
  padding: 4px 8px;
}
.story-rail.state-folded .rail-brand::before {
  display: block;
  width: 64px;
  height: 70px;
  background-image: url("../img/fiery/aside/hellspin-aside-collapsed-reference.png");
  background-position: -9px -5px;
  background-repeat: no-repeat;
  background-size: 191px 803px;
  content: "";
}
.story-rail.state-folded .rail-brand img {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.story-rail.state-folded .rail-collapse-button {
  top: 27px;
  right: 6px;
  transform: rotate(180deg);
}
.story-rail.state-folded .rail-promotions {
  gap: 0;
}
.story-rail.state-folded .rail-promo {
  grid-template-columns: 42px;
  justify-content: center;
  min-height: 56px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: none;
}
.story-rail.state-folded .rail-promo:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  filter: none;
}
.story-rail.state-folded .rail-promo-icon {
  width: 42px;
  height: 42px;
}
.story-rail.state-folded .rail-wheel-orbit {
  inset: 4px;
}
.story-rail.state-folded .rail-missions-animation {
  inset: -3px;
}
.story-rail.state-folded .rail-promo strong,
.story-rail.state-folded .rail-promo .rail-badge,
.story-rail.state-folded .rail-secondary-links strong,
.story-rail.state-folded .rail-link-chevron,
.story-rail.state-folded .page-nav {
  display: none;
}
.story-rail.state-folded .rail-secondary-links {
  margin-top: 0;
}
.story-rail.state-folded .rail-secondary-links > a {
  grid-template-columns: 36px;
  justify-content: center;
  min-height: 59px;
  padding: 4px;
}
.story-rail.state-folded .rail-menu-icon {
  width: 36px;
  height: 36px;
  background-image: url("../img/fiery/aside/hellspin-aside-collapsed-reference.png");
  background-size: 191px 803px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(1)
  .rail-menu-icon {
  background-position: -25px -174px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(2)
  .rail-menu-icon {
  background-position: -25px -234px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(4)
  .rail-menu-icon {
  background-position: -25px -301px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(5)
  .rail-menu-icon {
  background-position: -25px -365px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(6)
  .rail-menu-icon {
  background-position: -25px -418px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(7)
  .rail-menu-icon {
  background-position: -25px -476px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(8)
  .rail-menu-icon {
  background-position: -25px -538px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(9)
  .rail-menu-icon {
  background-position: -25px -605px;
}
.story-rail.state-folded
  .rail-secondary-links
  > a:nth-of-type(10)
  .rail-menu-icon {
  background-position: -25px -664px;
}
.story-rail.state-folded .rail-extra-links {
  display: block;
  padding: 4px 16px 12px;
}
.story-rail.state-folded .rail-app {
  display: block;
  width: 58px;
  min-height: 54px;
  padding: 0;
  border: 0;
  background-image: url("../img/fiery/aside/hellspin-aside-collapsed-reference.png");
  background-position: -17px -712px;
  background-repeat: no-repeat;
  background-size: 191px 803px;
}
.story-rail.state-folded .rail-app > * {
  display: none;
}

.page-nav {
  padding: 0 2px 14px;
}
.page-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}
.page-nav-toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.page-nav:not(.state-open) .page-nav-links {
  display: none;
}
.page-nav.state-open .page-nav-toggle span {
  transform: rotate(225deg);
}
.page-nav-links {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}
.page-nav-links a {
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--text-inactive);
  font-size: 12px;
  line-height: 1.35;
}
.page-nav-links a:hover {
  background: var(--surface-raised);
  color: var(--accent);
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.story-body > * + * {
  margin-top: 0;
}
.story-body > .campaign-break {
  margin-top: 0;
  margin-bottom: 0;
}
.campaign-gap-sm {
  --campaign-gap-before: 40px;
  --campaign-gap-after: 24px;
}
.campaign-gap-md {
  --campaign-gap-before: 64px;
  --campaign-gap-after: 36px;
}
.campaign-gap-lg {
  --campaign-gap-before: 88px;
  --campaign-gap-after: 50px;
}
.campaign-gap-xl {
  --campaign-gap-before: 116px;
  --campaign-gap-after: 66px;
}
.campaign-gap-xxl {
  --campaign-gap-before: 142px;
  --campaign-gap-after: 78px;
}
.page-layout-single {
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ui-hero-copy {
  position: relative;
  z-index: 1;
  width: min(770px, 140%);
  padding: clamp(26px, 5vw, 64px);
}
.hero-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-inactive);
  font-size: 13px;
  font-weight: 700;
}
.hero-crumbs a:hover {
  color: var(--accent);
}
.hero-score,
.error-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.hero-score strong {
  color: var(--text-strong);
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--text-strong);
  line-height: 1.16;
  text-wrap: balance;
}
h1 {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
}
h2 {
  color: var(--accent);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 20px;
  font-weight: 700;
}
p {
  margin: 0;
  color: var(--text-muted);
  text-wrap: wrap;
}
.page-hero p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
}
.ui-hero-actions,
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.ui-error-code {
  display: block;
  color: var(--accent);
  font-size: clamp(72px, 12vw, 150px);
  line-height: 0.78;
}
.error-heading {
  display: block;
  margin-top: 18px;
}

.copy-panel,
.copy-section {
  margin-top: 0;
  padding: clamp(22px, 3.2vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}
.copy-panel > h2,
.copy-section > h2 {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: 18px;
  text-wrap: wrap;
}
.copy-panel h3,
.copy-section h3 {
  margin: 28px 0 10px;
  color: var(--text-strong);
}
.copy-panel p,
.copy-section p {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}
.copy-panel a:not(.ui-action-button),
.copy-section a:not(.ui-action-button) {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.35);
  text-underline-offset: 3px;
}
.copy-panel a:hover,
.copy-section a:hover {
  text-decoration-color: currentColor;
}
.section-cta-row {
  display: flex;
  align-items: center;
  margin-top: 26px;
}
.section-cta-row .ui-action-button {
  min-width: 140px;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 11px;
  font-size: 16px;
}
.section-cta-row .ui-action-button::before {
  inset: 0;
  border-radius: 10px;
  transform: none;
}
.story-intro {
  color: var(--text-strong);
  font-size: 18px;
}
.legal-lead {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, var(--surface-raised), var(--surface));
}
.legal-lead h1 {
  color: var(--accent);
  font-size: clamp(32px, 4vw, 50px);
}

.feature-points {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0 0 0 22px;
  color: var(--text-muted);
}
.feature-points li::marker {
  color: var(--accent);
  font-weight: 800;
}

.copy-panel > .feature-points {
  min-height: 190px;
  padding: 20px clamp(190px, 32%, 340px) 20px 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--body-bg-rgb), 1) 0 48%,
      rgba(var(--body-bg-rgb), 0.94) 54%,
      rgba(var(--body-bg-rgb), 0.76) 64%,
      rgba(var(--body-bg-rgb), 0.5) 74%,
      rgba(var(--body-bg-rgb), 0.24) 86%,
      rgba(var(--body-bg-rgb), 0.04) 100%
    ),
    url("../img/fiery/generated/casino-hero.webp");
  background-position:
    center,
    right center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  list-style-position: inside;
}
.copy-panel > .feature-points li {
  padding: 10px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 7px;
  background: rgba(var(--body-bg-rgb), 0.8);
  color: var(--text);
  backdrop-filter: blur(5px);
}
.copy-panel > ol.feature-points:nth-of-type(even),
.copy-panel > ul.feature-points:nth-of-type(even) {
  padding-right: 20px;
  padding-left: clamp(190px, 32%, 340px);
  background-image:
    linear-gradient(
      270deg,
      rgba(var(--body-bg-rgb), 1) 0 48%,
      rgba(var(--body-bg-rgb), 0.94) 54%,
      rgba(var(--body-bg-rgb), 0.76) 64%,
      rgba(var(--body-bg-rgb), 0.5) 74%,
      rgba(var(--body-bg-rgb), 0.24) 86%,
      rgba(var(--body-bg-rgb), 0.04) 100%
    ),
    url("../img/fiery/generated/app-security-payments.webp");
  background-position:
    center,
    left center;
}

.ui-list-story-panel {
  min-height: 220px;
  margin-top: 18px;
  padding: 20px clamp(190px, 32%, 340px) 20px 20px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--body-bg-rgb), 1) 0 48%,
      rgba(var(--body-bg-rgb), 0.94) 54%,
      rgba(var(--body-bg-rgb), 0.76) 64%,
      rgba(var(--body-bg-rgb), 0.5) 74%,
      rgba(var(--body-bg-rgb), 0.24) 86%,
      rgba(var(--body-bg-rgb), 0.04) 100%
    ),
    var(--list-panel-image);
  background-position:
    center,
    right center;
  background-repeat: no-repeat;
  background-size:
    cover,
    auto 100%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}
.ui-list-story-panel-reverse {
  padding-right: 20px;
  padding-left: clamp(190px, 32%, 340px);
  background-image:
    linear-gradient(
      270deg,
      rgba(var(--body-bg-rgb), 1) 0 48%,
      rgba(var(--body-bg-rgb), 0.94) 54%,
      rgba(var(--body-bg-rgb), 0.76) 64%,
      rgba(var(--body-bg-rgb), 0.5) 74%,
      rgba(var(--body-bg-rgb), 0.24) 86%,
      rgba(var(--body-bg-rgb), 0.04) 100%
    ),
    var(--list-panel-image);
  background-position:
    center,
    left center;
  background-size:
    cover,
    auto 100%;
}
.ui-list-story-panel > p:first-child {
  margin-top: 0;
}
.ui-list-story-panel > .feature-points {
  min-height: 0;
  margin: 14px 0 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  list-style-position: inside;
}
.ui-list-story-panel > .feature-points:first-child {
  margin-top: 0;
}
.ui-list-story-panel > .feature-points li {
  padding: 10px 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 7px;
  background: rgba(var(--body-bg-rgb), 0.82);
  color: var(--text);
  backdrop-filter: blur(5px);
}
.ui-list-story-panel > .feature-points + p {
  margin-top: 14px;
}
.ui-list-story-panel > .platform-download-action {
  display: flex;
  justify-content: flex-start;
  margin: 14px 0 0;
}
.ui-list-story-panel > .platform-download-action .app-get-btn {
  width: min(100%, 246px);
}

.section-art {
  width: 100%;
  max-height: 520px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.section-art-unshaded {
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: none;
}
.ui-live-table-visual {
  object-position: center top;
}

.side-art {
  min-height: 330px;
  padding-right: clamp(300px, 38%, 470px);
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--body-bg-rgb), 1) 0 48%,
      rgba(var(--body-bg-rgb), 0.94) 54%,
      rgba(var(--body-bg-rgb), 0.76) 64%,
      rgba(var(--body-bg-rgb), 0.26) 74%,
      rgba(var(--body-bg-rgb), 0.05) 86%,
      rgba(var(--body-bg-rgb), 0) 100%
    ),
    var(--side-character-image);
  background-position:
    center,
    right center;
  background-repeat: no-repeat;
  background-size:
    cover,
    auto 100%;
}

.side-art-reverse {
  padding-right: 26px;
  padding-left: clamp(300px, 38%, 470px);
  background-image:
    linear-gradient(
      270deg,
      rgba(var(--body-bg-rgb), 1) 0 48%,
      rgba(var(--body-bg-rgb), 0.94) 54%,
      rgba(var(--body-bg-rgb), 0.76) 64%,
      rgba(var(--body-bg-rgb), 0.26) 74%,
      rgba(var(--body-bg-rgb), 0.05) 86%,
      rgba(var(--body-bg-rgb), 0) 100%
    ),
    var(--side-character-image);
  background-position:
    center,
    left center;
  background-size:
    cover,
    auto 100%;
}

.mob-reviews {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.mob-review {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  overflow: hidden;
  padding: 25px clamp(240px, 31%, 350px) 25px 25px;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(var(--accent-rgb), 0.2),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      rgba(20, 31, 49, 0.98),
      rgba(var(--body-bg-rgb), 0.94)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 34px rgba(var(--body-bg-rgb), 0.28);
}

.mob-review:nth-child(2) {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(37, 109, 191, 0.25),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      rgba(16, 25, 49, 0.98),
      rgba(var(--body-bg-rgb), 0.95)
    );
}

.mob-review:nth-child(3) {
  background:
    radial-gradient(circle at 88% 18%, rgba(154, 42, 75, 0.3), transparent 38%),
    linear-gradient(
      135deg,
      rgba(45, 17, 37, 0.96),
      rgba(var(--body-bg-rgb), 0.96)
    );
}

.mob-review:nth-child(4) {
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(12, 144, 157, 0.2),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      rgba(14, 29, 40, 0.98),
      rgba(var(--body-bg-rgb), 0.96)
    );
}

.mob-review::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(var(--body-bg-rgb), 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.mob-review h3,
.mob-review p {
  position: relative;
  z-index: 2;
}

.mob-review h3 {
  margin: 0;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.24);
  color: var(--accent);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.3;
}

.mob-review p {
  margin: 16px 0 0;
  color: var(--text);
  line-height: 1.72;
}

.mob-review-character {
  position: absolute;
  right: clamp(5px, -1.5vw, -10px);
  bottom: -13px;
  z-index: 1;
  width: clamp(250px, 31%, 350px);
  height: 96%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(-14px 10px 22px rgba(0, 0, 0, 0.42));
  pointer-events: none;
  user-select: none;
}

@media (min-width: 901px) {
  .ui-app-page .mob-review-character {
    transform: scale(1.42);
    transform-origin: right bottom;
  }
}

.table-frame {
  margin-top: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scrollbar-color: var(--accent) var(--surface);
  scrollbar-width: thin;
}
.table-frame table {
  min-width: 680px;
}
.table-frame::-webkit-scrollbar {
  height: 8px;
}
.table-frame::-webkit-scrollbar-track {
  background: var(--surface);
}
.table-frame::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--accent);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(78, 72, 66, 0.34);
}
th,
td {
  padding: 13px 16px;
  border-right: 1px solid var(--body-bg);
  border-bottom: 1px solid var(--body-bg);
  text-align: left;
  vertical-align: top;
}
th {
  background: var(--surface-warm);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
td {
  color: var(--text-muted);
}
tr:last-child td {
  border-bottom: 0;
}
th:last-child,
td:last-child {
  border-right: 0;
}
tbody tr:hover td {
  background: rgba(var(--accent-rgb), 0.06);
}

.promo-stack {
  display: grid;
  gap: 16px;
  margin-top: 0;
}
.promo-stack-single {
  --bonus-frame-art: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 520' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23e7cd52'/%3E%3Cstop offset='.52' stop-color='%23e77b3d'/%3E%3Cstop offset='1' stop-color='%23ed3f4b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M42 29 C30 29 25 33 25 43 L17 444 Q15 456 26 457 L1096 503 Q1108 504 1110 496 L1180 43 Q1183 31 1171 31 L42 29 Z' fill='none' stroke='url(%23g)' stroke-width='3.5' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  position: relative;
  isolation: isolate;
  padding: 29px 38px 34px;
}
.promo-stack-single::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bonus-frame-art);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  pointer-events: none;
}
.promo-card,
.app-get-panel {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 300px;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}
.promo-card {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.promo-stack-single > .promo-card {
  z-index: 1;
  border-color: rgba(6, 8, 27, 0.88);
}
.promo-card::after,
.app-get-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--body-bg-rgb), 0.64),
    rgba(var(--body-bg-rgb), 0.3) 54%,
    rgba(var(--body-bg-rgb), 0.04)
  );
  content: "";
}
.promo-card > *,
.app-get-panel > * {
  position: relative;
  z-index: 2;
}
.promo-copy {
  width: min(440px, 46%);
}
.promo-art-center .promo-copy {
  width: min(380px, 40%);
}
.promo-copy h2 {
  color: var(--accent);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
}
.promo-copy h3 {
  color: var(--accent);
  font-size: clamp(24px, 3vw, 36px);
}
.promo-copy p {
  margin-top: 12px;
  color: var(--text-muted);
}
.promo-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.promo-plus-line {
  display: block;
}
@media (min-width: 901px) {
  .ui-home-bonus-banner .promo-copy {
    width: min(520px, 60%);
  }
  .ui-home-bonus-banner .promo-copy h2 {
    font-size: clamp(25px, 2.35vw, 38px);
    line-height: 1.08;
    white-space: nowrap;
    text-wrap: nowrap;
  }
  .ui-home-bonus-banner .promo-plus-line {
    white-space: nowrap;
  }
}
.promo-card .ui-action-button {
  min-width: 184px;
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 10px;
}
.promo-card .ui-action-button::before {
  inset: 0;
  border-radius: 10px;
  transform: none;
}
.ui-home-bonus-banner {
  background: transparent;
}

.app-get-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.app-get-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-self: start;
  gap: 11px;
  width: min(42%, 330px);
  margin-top: 0;
}
.app-get-panel-copy-right .app-get-actions {
  justify-self: end;
}
.app-get-panel-copy-left .app-get-actions {
  justify-self: start;
}
.app-get-btn {
  display: grid;
  grid-template-columns: 27px max-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 66px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 9px;
  background: #101326;
  color: #fff;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}
.app-get-btn-ios {
  border-color: var(--geo-green);
}
.app-get-btn-android {
  border-color: var(--geo-red);
}
.app-get-btn::before {
  display: none;
}
.app-get-icon {
  display: block;
  width: 27px;
  height: 27px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.app-get-btn-ios .app-get-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.03-.46-1.97-.48-3.06 0-1.36.59-2.08.42-2.91-.35C3.29 15.42 4 8.03 9.36 7.76c1.3.07 2.2.71 2.96.76 1.13-.23 2.21-.89 3.42-.8 1.45.12 2.54.69 3.27 1.73-3 1.8-2.29 5.75.46 6.86-.55 1.45-1.27 2.89-2.42 3.97M12.03 7.7C11.88 5.55 13.63 3.78 15.63 3.6c.28 2.49-2.26 4.35-3.6 4.1'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.03-.46-1.97-.48-3.06 0-1.36.59-2.08.42-2.91-.35C3.29 15.42 4 8.03 9.36 7.76c1.3.07 2.2.71 2.96.76 1.13-.23 2.21-.89 3.42-.8 1.45.12 2.54.69 3.27 1.73-3 1.8-2.29 5.75.46 6.86-.55 1.45-1.27 2.89-2.42 3.97M12.03 7.7C11.88 5.55 13.63 3.78 15.63 3.6c.28 2.49-2.26 4.35-3.6 4.1'/%3E%3C/svg%3E");
}
.app-get-btn-android .app-get-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.6 9.48l1.84-3.18a.63.63 0 0 0-1.09-.63L16.48 8.9A11.4 11.4 0 0 0 12 8c-1.57 0-3.08.31-4.48.9L5.65 5.67a.63.63 0 0 0-1.09.63L6.4 9.48A10.81 10.81 0 0 0 1 18h22a10.81 10.81 0 0 0-5.4-8.52M7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.6 9.48l1.84-3.18a.63.63 0 0 0-1.09-.63L16.48 8.9A11.4 11.4 0 0 0 12 8c-1.57 0-3.08.31-4.48.9L5.65 5.67a.63.63 0 0 0-1.09.63L6.4 9.48A10.81 10.81 0 0 0 1 18h22a10.81 10.81 0 0 0-5.4-8.52M7 15.25a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5m10 0a1.25 1.25 0 1 1 0-2.5 1.25 1.25 0 0 1 0 2.5'/%3E%3C/svg%3E");
}
.app-get-label {
  display: grid;
  gap: 2px;
  justify-items: center;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}
.app-get-label > span {
  display: block;
}
.app-get-label > span:first-child {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}
.app-get-btn:hover {
  background: #171b33;
  color: #fff;
  filter: drop-shadow(0 12px 22px rgba(var(--accent-rgb), 0.18));
}
.app-get-btn-ios:hover {
  border-color: var(--accent-hover);
}
.app-get-btn-android:hover {
  border-color: var(--danger-hover);
}
.app-get-btn > img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.app-get-btn > span {
  display: grid;
  place-content: center;
  min-width: 0;
  color: #fff;
  line-height: 1.12;
  text-align: center;
}
.app-get-btn > span > small,
.app-get-btn > span > strong {
  display: block;
  font: inherit;
}
.app-get-btn > span > small {
  font-size: 12px;
  font-weight: 700;
}
.app-get-btn > span > strong {
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
}

.expert-focus {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px);
  border-color: rgba(var(--accent-rgb), 0.34);
  background-color: #080b1e;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 7, 26, 0.86) 0%,
      rgba(5, 7, 26, 0.74) 37%,
      rgba(5, 7, 26, 0.38) 58%,
      rgba(5, 7, 26, 0.04) 82%
    ),
    linear-gradient(0deg, rgba(5, 7, 26, 0.78), transparent 38%),
    var(--author-art);
  background-position:
    center,
    center,
    center right;
  background-size: cover;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}
.expert-focus::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.22);
  content: "";
  pointer-events: none;
}
.expert-focus > * {
  position: relative;
  z-index: 1;
  width: min(61%, 690px);
}
.expert-focus > .section-art {
  display: none;
}
.expert-focus > p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.58;
}
.expert-card {
  display: grid;
  justify-items: start;
  gap: 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.expert-card-identity {
  display: grid;
  gap: 3px;
}
.expert-card-name {
  margin: 0;
  color: #fff;
  font-size: 16px;
}
.expert-card-role {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}
.expert-card-bio {
  max-width: 590px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.48;
}
.expert-card-cta {
  min-width: 180px;
}
.expert-more > h3:first-child {
  color: var(--accent);
  font-size: clamp(22px, 2.4vw, 30px);
}
.review-track {
  display: grid;
  grid-auto-columns: minmax(270px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  margin-top: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.review-tile {
  scroll-snap-align: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-raised);
}
.ui-review-stars {
  margin-top: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.review-toggle {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin-top: 18px;
  padding: 9px 15px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.review-toggle::before {
  position: absolute;
  inset: 0 4px;
  z-index: -1;
  border-radius: 8px;
  background: var(--surface-raised);
  content: "";
  transform: skewX(-5deg);
  transition: background-color 0.2s ease;
}
.review-toggle:hover {
  color: var(--accent);
  transform: translateY(-1px);
}
.review-toggle:hover::before {
  background: var(--surface-soft);
}

.ui-faq-section details,
.ui-faq-item {
  border-bottom: 1px solid var(--line);
}
.ui-faq-section details:last-child,
.ui-faq-item:last-child {
  border-bottom: 0;
}
.ui-faq-section summary,
.ui-faq-item summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: var(--text-strong);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.ui-faq-section summary::-webkit-details-marker,
.ui-faq-item summary::-webkit-details-marker {
  display: none;
}
.ui-faq-section summary::after,
.ui-faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.ui-faq-section details[open] summary::after,
.ui-faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}
.ui-faq-section details p,
.ui-faq-item p {
  margin: 0 0 18px;
  padding-right: 42px;
  color: var(--text-muted);
}

.cookie-note,
.cookie-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  grid-template-columns: 64px minmax(180px, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(560px, calc(100vw - 40px));
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: rgba(24, 30, 41, 0.97);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.cookie-note.state-visible,
.cookie-container.state-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.cookie-note[hidden],
.cookie-container[hidden] {
  display: none;
}
.cookie-character {
  width: 64px;
  max-height: 72px;
  object-fit: contain;
}
.cookie-copy {
  color: var(--text-muted);
  font-size: 13px;
}
.cookie-policy-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
#cookieOk {
  position: relative;
  isolation: isolate;
  min-height: 40px;
  padding: 9px 18px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
#cookieOk::before {
  position: absolute;
  inset: 0 4px;
  z-index: -1;
  border-radius: 8px;
  background: var(--danger);
  content: "";
  transform: skewX(-5deg);
  transition: background-color 0.2s ease;
}
#cookieOk:hover::before {
  background: var(--danger-hover);
}

.page-footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-inactive);
}
.ui-footer-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 28px 20px;
  text-align: center;
  font-size: 13px;
}

.page-footer[data-enhanced-footer] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  background:
    radial-gradient(
      circle at 18% 0,
      rgba(var(--accent-rgb), 0.08),
      transparent 24rem
    ),
    #080a1c;
}
.page-foot-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(233, 62, 58, 0.12),
      transparent 20rem
    ),
    repeating-linear-gradient(
      118deg,
      transparent 0 72px,
      rgba(255, 245, 214, 0.025) 73px 74px,
      transparent 75px 132px
    );
}
.page-foot-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 2fr);
  grid-template-areas:
    "brand links"
    "contacts contacts"
    "bottom bottom";
  gap: 14px;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 36px 20px 22px;
}
.page-foot-brand-row {
  position: relative;
  grid-area: brand;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 176px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, var(--surface-raised), var(--surface));
  box-shadow: var(--shadow);
}
.page-foot-brand img {
  width: clamp(160px, 15vw, 218px);
  filter: grayscale(1) brightness(1.55) saturate(0.35);
  opacity: 0.82;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.page-foot-brand:hover img {
  opacity: 1;
  transform: translateY(-1px);
}
.ui-site-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 89;
  display: grid;
  place-items: center;
  gap: 2px;
  min-width: 58px;
  min-height: 58px;
  padding: 5px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 14px;
  background: rgba(16, 22, 36, 0.96);
  color: var(--text-muted);
  font: inherit;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.ui-site-scroll-top[hidden] {
  display: none;
}
.ui-site-scroll-top span {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.ui-site-scroll-top:hover {
  border-color: var(--line-strong);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  transform: translateY(-2px);
}
.ui-site-scroll-top:focus-visible {
  border-radius: 10px;
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.page-foot-links {
  grid-area: links;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: center;
  gap: 7px 12px;
  min-height: 176px;
  padding: 23px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.page-foot-nav-title {
  grid-column: 1 / -1;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-foot-links a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.page-foot-links a:hover {
  background: var(--surface-soft);
  color: var(--text-strong);
  transform: translateX(2px);
}
.page-foot-contacts {
  grid-area: contacts;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.page-foot-contact {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-strong);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.page-foot-mail-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--text-dark);
  font-size: 16px;
}
.page-foot-contact span:nth-child(2) {
  display: grid;
  min-width: 0;
}
.page-foot-contact small {
  color: var(--text-inactive);
  font-size: 10px;
}
.page-foot-contact strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
}
.page-foot-arrow {
  color: var(--accent);
  font-size: 18px;
  text-align: center;
}
.page-foot-contact:hover {
  border-color: var(--line-strong);
  background: var(--surface-raised);
  transform: translateY(-2px);
}
.page-foot-bottom {
  grid-area: bottom;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 14px 4px 0;
  border-top: 1px solid var(--line);
}
.page-foot-bottom p {
  margin: 0;
  color: var(--text-inactive);
  font-size: 11px;
  line-height: 1.55;
}
.page-foot-age-badge {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .page-foot-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "links"
      "contacts"
      "bottom";
    padding-top: 28px;
  }
  .page-foot-brand-row,
  .page-foot-links {
    min-height: 0;
  }
  .page-foot-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page-foot-inner {
    gap: 10px;
    padding: 22px 12px 16px;
  }
  .page-foot-brand-row {
    align-items: center;
    min-height: 150px;
    padding: 20px;
  }
  .page-foot-brand img {
    width: 174px;
  }
  .ui-site-scroll-top {
    right: 14px;
    bottom: 14px;
    min-width: 48px;
    min-height: 48px;
  }
  .ui-site-scroll-top span {
    font-size: 24px;
  }
  .page-foot-links {
    gap: 4px 6px;
    padding: 18px 14px;
    border-radius: var(--radius-card);
  }
  .page-foot-links a {
    align-items: flex-start;
    min-height: 42px;
    padding: 7px;
    font-size: 10px;
  }
  .page-foot-contacts {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page-foot-bottom {
    align-items: center;
    min-height: 58px;
  }
  .page-foot-bottom p {
    font-size: 10px;
  }
}

@media (min-width: 821px) {
  .promo-card {
    min-height: clamp(300px, 32vw, 360px);
  }
  .app-get-panel {
    min-height: 400px;
  }
}

@media (min-width: 901px) {
  .page-hero {
    height: 550px;
    min-height: 550px;
  }
  .promo-card,
  .app-get-panel {
    height: 450px;
    min-height: 450px;
  }
  .hero-art,
  .app-get-art {
    object-position: center 24%;
  }
  .promo-card {
    background-position: center 24%;
  }
  .app-get-art-pumpkin {
    object-position: center 30%;
  }
  .app-get-art-rider {
    object-position: center 22%;
  }
  .app-get-art-goblin,
  .app-get-art-mobile-guide {
    object-position: center 18%;
  }
}

body.prize-wheel-modal-open {
  overflow: hidden;
}
.prize-wheel-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(1, 4, 17, 0.82);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.prize-wheel-modal-overlay[hidden] {
  display: none;
}
.prize-wheel-modal-overlay.state-open {
  opacity: 1;
}
.prize-wheel-modal {
  position: relative;
  width: min(813px, calc(100vw - 32px));
  height: min(865px, calc(100dvh - 32px));
  min-height: 620px;
  overflow: hidden;
  border-radius: 7px;
  background: #181727 url("../img/fiery/wof/wof-bg-modal.webp") center / cover
    no-repeat;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.72);
  color: #fff;
  transform: translateY(8px) scale(0.985);
  transition: transform 0.18s ease;
}
.prize-wheel-modal-overlay.state-open .prize-wheel-modal {
  transform: none;
}
.prize-wheel-modal:focus {
  outline: none;
}
.prize-wheel-modal h2 {
  position: relative;
  z-index: 6;
  margin: 92px 60px 0;
  color: #ffc400;
  font-family: var(--font-display);
  font-size: clamp(38px, 2.9vw, 46px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 3px 8px rgba(71, 33, 0, 0.35);
}
.prize-wheel-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  padding: 0 0 5px;
  border: 0;
  background: transparent;
  color: #fff;
  font:
    300 42px/1 Arial,
    sans-serif;
  cursor: pointer;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
.prize-wheel-modal-close:hover {
  color: #ffc400;
  transform: rotate(90deg);
}
.prize-wheel-stage {
  position: absolute;
  top: 162px;
  left: 50%;
  z-index: 4;
  width: min(570px, 74%);
  aspect-ratio: 1;
  transform: translateX(-50%);
}
.prize-wheel-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: transform 4.25s cubic-bezier(0.12, 0.65, 0.08, 1);
  will-change: transform;
}
.prize-wheel-wheel.state-idle {
  animation: wof-wheel-idle 24s linear infinite;
  transition: none;
}
@keyframes wof-wheel-idle {
  to {
    transform: rotate(360deg);
  }
}
.prize-wheel-wheel-colors,
.prize-wheel-wheel-separators,
.prize-wheel-sectors {
  position: absolute;
  inset: 44px;
  overflow: hidden;
  border-radius: 50%;
}
.prize-wheel-wheel-colors {
  background: conic-gradient(
    from -16.36deg,
    #14b9bb 0 9.09%,
    #ff922d 9.09% 18.18%,
    #ffe214 18.18% 27.27%,
    #ff8b2c 27.27% 36.36%,
    #ffe319 36.36% 45.45%,
    #ff8a2b 45.45% 54.54%,
    #ffe11a 54.54% 63.63%,
    #ff8d2c 63.63% 72.72%,
    #ffe319 72.72% 81.81%,
    #ff902c 81.81% 90.9%,
    #ffe119 90.9% 100%
  );
  box-shadow: inset 0 0 30px rgba(95, 36, 0, 0.32);
}
.prize-wheel-wheel-separators {
  background: repeating-conic-gradient(
    from -16.36deg,
    transparent 0 31.1deg,
    rgba(255, 255, 255, 0.94) 31.1deg 32.727deg
  );
  filter: drop-shadow(0 0 2px rgba(81, 39, 0, 0.42));
}
.prize-wheel-sectors {
  overflow: visible;
}
.prize-wheel-sector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 220px;
  color: #141823;
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  transform: translate(-50%, -100%)
    rotate(calc(var(--sector-index) * 32.727deg));
  transform-origin: 50% 100%;
}
.prize-wheel-sector b,
.prize-wheel-sector i {
  position: absolute;
  left: 50%;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}
.prize-wheel-sector b {
  top: 92px;
  white-space: nowrap;
  transform: translateX(-50%) rotate(90deg);
}
.prize-wheel-sector i {
  top: 34px;
  width: 34px;
  height: 34px;
  border: 3px solid #c79a23;
  border-radius: 50%;
  background: #172634;
  color: #ffd313;
  font-size: 11px;
  font-style: normal;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
}
.prize-wheel-sector:first-child i {
  border-color: #c6df42;
  background: #38b845;
  color: #dffb6c;
  font-size: 16px;
}
.prize-wheel-wheel-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.prize-wheel-wheel-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 23%;
  height: 23%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.prize-wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 7;
  width: 95px;
  height: 95px;
  object-fit: contain;
  transform: translateX(-50%);
  transform-origin: 50% 18%;
}
.prize-wheel-modal.state-spinning .prize-wheel-pointer {
  animation: wof-pointer-tick 0.14s ease-in-out infinite alternate;
}
@keyframes wof-pointer-tick {
  from {
    transform: translateX(-50%) rotate(-4deg);
  }
  to {
    transform: translateX(-50%) rotate(4deg);
  }
}
.prize-wheel-coins {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.prize-wheel-coin {
  position: absolute;
  width: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(71, 22, 4, 0.32));
  animation: wheel-of-fortune-coin-float 2.8s ease-in-out infinite alternate;
}
.prize-wheel-coin-top-left {
  top: 14%;
  left: -2%;
  width: 72px;
  animation-delay: -0.8s;
}
.prize-wheel-coin-top-right {
  top: 19%;
  right: -2%;
  width: 68px;
  animation-delay: -1.6s;
}
.prize-wheel-coin-bottom-left {
  bottom: 17%;
  left: 2%;
  width: 58px;
  animation-delay: -2.2s;
}
.prize-wheel-coin-bottom-right {
  right: 2%;
  bottom: 16%;
  width: 62px;
  animation-delay: -0.3s;
}
@keyframes wheel-of-fortune-coin-float {
  from {
    transform: translateY(-5px) rotate(-7deg);
  }
  to {
    transform: translateY(7px) rotate(7deg);
  }
}
.prize-wheel-modal-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  align-items: center;
  min-height: 96px;
  padding: 12px 50px;
  background: linear-gradient(
    180deg,
    rgba(25, 23, 38, 0.12),
    rgba(25, 23, 38, 0.96) 42%
  );
  font-size: 20px;
}
.prize-wheel-spins {
  justify-self: start;
  white-space: nowrap;
}
.prize-wheel-spin-button {
  position: relative;
  isolation: isolate;
  min-height: 65px;
  padding: 12px 40px;
  border: 0;
  background: transparent;
  color: #111522;
  font: 800 24px/1 var(--font-body);
  cursor: pointer;
}
.prize-wheel-spin-button::before {
  position: absolute;
  inset: 0 3px;
  z-index: -1;
  border-radius: 14px;
  background: #ffc313;
  content: "";
  transform: skewX(-4deg);
  box-shadow: 0 0 22px rgba(255, 94, 42, 0.34);
}
.prize-wheel-spin-button:hover::before {
  background: #ffd13c;
}
.prize-wheel-spin-button:disabled {
  cursor: default;
  opacity: 0.72;
}
.prize-wheel-details {
  justify-self: end;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}
.prize-wheel-details:hover {
  color: #ffc313;
}
.prize-wheel-win-view[hidden] {
  display: none;
}
.prize-wheel-modal.state-win {
  width: min(565px, calc(100vw - 32px));
  height: min(665px, calc(100dvh - 32px));
  min-height: 600px;
}
.prize-wheel-modal.state-win > h2,
.prize-wheel-modal.state-win .prize-wheel-stage,
.prize-wheel-modal.state-win .prize-wheel-modal-footer {
  display: none;
}
.prize-wheel-win-view {
  position: absolute;
  inset: 0;
  z-index: 7;
  animation: wof-win-arrive 0.34s ease-out both;
}
@keyframes wof-win-arrive {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.prize-wheel-win-badge {
  position: absolute;
  top: 35px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 290px;
  min-height: 116px;
  padding: 14px 20px 18px;
  border: 6px solid #e7a536;
  border-radius: 25px;
  background: linear-gradient(180deg, #ff8c27 0%, #e83c2d 48%, #ad100c 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.64),
    0 7px 0 #74431e,
    0 14px 24px rgba(40, 5, 0, 0.38);
  color: #fff;
  text-align: center;
  transform: translateX(-50%) rotate(-0.5deg);
}
.prize-wheel-win-badge strong,
.prize-wheel-win-badge b {
  display: block;
  font-family: var(--font-body);
  font-weight: 900;
  line-height: 1.05;
}
.prize-wheel-win-badge strong {
  font-size: 24px;
}
.prize-wheel-win-badge b {
  font-size: 31px;
}
.prize-wheel-win-gift {
  position: absolute;
  top: 165px;
  left: 50%;
  width: 365px;
  height: 365px;
  object-fit: contain;
  transform: translateX(-50%);
  animation: wof-gift-float 2.2s ease-in-out infinite alternate;
}
@keyframes wof-gift-float {
  from {
    transform: translateX(-50%) translateY(2px) scale(0.98);
  }
  to {
    transform: translateX(-50%) translateY(-6px) scale(1.02);
  }
}
.prize-wheel-win-prize {
  position: absolute;
  top: 495px;
  left: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 3px 0 #c64322,
    0 0 18px rgba(255, 193, 22, 0.72);
  transform: translateX(-50%);
}
.prize-wheel-claim-button {
  position: absolute;
  isolation: isolate;
  right: 50%;
  bottom: 29px;
  display: grid;
  place-items: center;
  width: 232px;
  min-height: 52px;
  background: transparent;
  color: #101522;
  font-size: 18px;
  font-weight: 900;
  transform: translateX(50%);
}
.prize-wheel-claim-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 15px;
  background: #ffc313;
  box-shadow: 0 0 25px rgba(255, 128, 22, 0.3);
  content: "";
  transform: skewX(-4deg);
}
.prize-wheel-claim-button:hover {
  color: #101522;
}
.prize-wheel-claim-button:hover::before {
  background: #ffd13c;
}
.prize-wheel-claim-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.prize-wheel-modal.state-win .prize-wheel-coin {
  animation: wof-prize-coin 1.8s ease-in-out infinite alternate;
}
@keyframes wof-prize-coin {
  from {
    translate: 0 -3px;
    rotate: -3deg;
  }
  to {
    translate: 0 7px;
    rotate: 5deg;
  }
}

@media (max-width: 680px) {
  .prize-wheel-modal-overlay {
    padding: 0;
  }
  .prize-wheel-modal {
    width: 100vw;
    height: 100dvh;
    min-height: 520px;
    border-radius: 0;
  }
  .prize-wheel-modal h2 {
    margin: 76px 45px 0;
    font-size: clamp(30px, 9vw, 42px);
  }
  .prize-wheel-stage {
    top: 150px;
    width: min(96vw, calc(100dvh - 270px));
  }
  .prize-wheel-wheel-colors,
  .prize-wheel-wheel-separators,
  .prize-wheel-sectors {
    inset: 9%;
  }
  .prize-wheel-sector {
    width: 13.5%;
    height: 38.6%;
    font-size: clamp(10px, 3.2vw, 16px);
  }
  .prize-wheel-sector b {
    top: 43%;
  }
  .prize-wheel-sector i {
    top: 15%;
    width: clamp(20px, 7vw, 31px);
    height: clamp(20px, 7vw, 31px);
    border-width: 2px;
    font-size: 8px;
  }
  .prize-wheel-pointer {
    top: -4%;
    width: 18%;
    height: 18%;
  }
  .prize-wheel-modal-footer {
    grid-template-columns: 1fr 1.2fr 1fr;
    min-height: 108px;
    padding: 12px 14px;
    font-size: 13px;
  }
  .prize-wheel-spin-button {
    min-height: 58px;
    padding: 10px 22px;
    font-size: 20px;
  }
  .prize-wheel-details {
    font-size: 13px;
  }
  .prize-wheel-coin {
    transform: scale(0.72);
  }
  .prize-wheel-modal.state-win {
    width: 100vw;
    height: 100dvh;
    min-height: 520px;
  }
  .prize-wheel-win-badge {
    top: 48px;
    width: min(290px, 76vw);
    min-height: 104px;
  }
  .prize-wheel-win-badge strong {
    font-size: 20px;
  }
  .prize-wheel-win-badge b {
    font-size: 27px;
  }
  .prize-wheel-win-gift {
    top: 175px;
    width: min(360px, 94vw);
    height: min(360px, 44vh);
  }
  .prize-wheel-win-prize {
    top: auto;
    bottom: 128px;
    font-size: 43px;
  }
  .prize-wheel-claim-button {
    bottom: 34px;
    width: 230px;
  }
}

@media (max-width: 1100px) {
  .game-strip {
    --games-visible: 4;
  }
  .page-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 14px;
    padding: 0 14px;
  }
  .brand-mark {
    width: 132px;
    height: 54px;
  }
  .main-nav {
    padding-inline: 14px;
  }
}

@media (max-width: 1023px) {
  .page-layout {
    display: block;
  }
  .story-rail {
    display: none;
  }
}

@media (max-width: 1023px) {
  .game-strip {
    --games-visible: 2;
    padding-top: 18px;
  }
  .game-strip-heading h2 {
    font-size: 24px;
  }
  .game-tile-footer {
    min-height: 76px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 68px;
  }
  .main-nav {
    gap: 8px;
    padding-inline: 12px;
  }
  .main-nav-links,
  .member-actions {
    display: none;
  }
  .brand-mark {
    width: 112px;
    height: 52px;
  }
  .mob-head-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
  }
  .mob-wheel-button {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr 16px;
    align-items: center;
    gap: 3px;
    flex: 0 0 124px;
    width: 124px;
    height: 44px;
    padding: 5px 4px 5px 2px;
    border-radius: 7px;
    background: linear-gradient(180deg, #f2cf5d 0%, #e87431 50%, #c84628 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-shadow: 0 1px 1px rgba(74, 18, 5, 0.55);
    text-transform: uppercase;
    box-shadow: 0 0 14px rgba(233, 62, 58, 0.5);
  }
  .mob-wheel-button strong {
    font-size: 10px;
    text-transform: none;
  }
  .mob-wheel-button b {
    display: grid;
    place-items: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--danger);
    color: #fff;
    font-size: 9px;
  }
  .mob-wheel-icon {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
  }
  .mob-wheel-icon .rail-wheel-orbit {
    inset: 3px;
  }
  .mob-locale,
  .mob-burger {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
  }
  .mob-locale {
    grid-template-rows: 22px 11px;
    align-content: center;
  }
  .mob-locale span {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 17px;
    overflow: visible;
    border: 0;
    border-radius: 2px;
    background: transparent;
    box-shadow: none;
    color: initial;
    font-size: 16px;
    line-height: 1;
  }
  .mob-locale span::after {
    content: none;
  }
  .mob-locale small {
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
  }
  .mob-burger {
    gap: 4px;
    align-content: center;
  }
  .mob-burger span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }
  .main-nav.mob-menu-open .mob-burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .main-nav.mob-menu-open .mob-burger span:nth-child(2) {
    opacity: 0;
  }
  .main-nav.mob-menu-open .mob-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mob-menu {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 8px;
    z-index: 90;
    display: grid;
    gap: 7px;
    width: min(330px, calc(100vw - 16px));
    max-height: calc(100dvh - var(--header-height) - 16px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: #181e29;
    box-shadow:
      -100vw 0 0 100vw rgba(1, 4, 17, 0.74),
      0 24px 70px rgba(0, 0, 0, 0.72);
    isolation: isolate;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }
  .main-nav.mob-menu-open .mob-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .mob-menu > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--surface-raised);
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
  }
  .mob-menu > a:hover {
    border-color: var(--line-strong);
    background: var(--surface-soft);
  }
  .mob-menu > a.state-active,
  .mob-menu > a[aria-current="page"] {
    background: var(--accent);
    color: var(--text-dark);
  }
  .mob-menu > .head-action {
    min-width: 0;
    filter: none;
  }
  .mob-menu > .head-action::before {
    display: none;
  }
  .mob-menu > .mob-login {
    margin-top: 5px;
    border-color: var(--line);
  }
  .mob-menu > .mob-register {
    justify-content: center;
    background: var(--accent);
    color: var(--text-dark);
  }
}

@media (max-width: 1023px) {
  .page-layout {
    display: block;
    margin-top: 12px;
    padding: 0 12px;
  }
  .story-rail {
    position: static;
    max-height: none;
    margin-bottom: 12px;
  }
  .rail-menu,
  .rail-extra-links,
  .rail-brand {
    display: none;
  }
  .page-nav {
    padding: 10px;
  }
  .page-nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-hero {
    min-height: 390px;
  }
  .ui-hero-copy {
    width: 100%;
  }
  .promo-copy {
    width: 100%;
  }
}

@media (min-width: 821px) and (max-width: 1023px) {
  .game-strip {
    --games-visible: 4;
    padding-top: 22px;
  }
  .game-strip-heading h2 {
    font-size: clamp(24px, 2.5vw, 34px);
  }
  .game-tile-footer {
    min-height: 84px;
  }
  .page-layout {
    margin-top: 20px;
    padding: 0 14px;
  }
  .page-nav {
    padding: 0 2px 14px;
  }
  .page-nav-links {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 430px;
  }
  .ui-hero-copy {
    width: min(770px, 140%);
  }
  .promo-copy {
    width: min(440px, 46%);
  }
}

@media (max-width: 900px) {
  .ui-app-page .story-body > :first-child:not(.page-hero) {
    display: none !important;
  }
  .expert-focus {
    background-image:
      linear-gradient(90deg, rgba(5, 7, 26, 0.9) 0%, rgba(5, 7, 26, 0.78) 100%),
      var(--author-art);
    background-position:
      center,
      right center;
    background-size:
      cover,
      auto 100%;
    background-repeat: no-repeat;
  }
  .expert-focus > * {
    width: 100%;
    max-width: none;
  }
  .expert-card {
    justify-items: stretch;
  }
  .expert-card-identity,
  .expert-card-bio {
    width: 100%;
    max-width: none;
  }
  .expert-card-cta {
    justify-self: start;
  }
  .page-hero {
    align-items: flex-end;
    min-height: clamp(440px, 66vw, 520px);
  }
  .hero-art {
    object-position: 82% center;
  }
  .ui-hero-copy {
    width: calc(100% - clamp(24px, 5vw, 44px));
    margin: clamp(12px, 2.6vw, 22px);
    padding: clamp(20px, 3.6vw, 34px);
    border: 1px solid rgba(var(--accent-rgb), 0.38);
    border-radius: clamp(13px, 2vw, 18px);
    background: rgba(var(--body-bg-rgb), 0.66);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    text-align: center;
    -webkit-backdrop-filter: blur(7px) saturate(1.08);
    backdrop-filter: blur(7px) saturate(1.08);
  }
  .hero-crumbs,
  .ui-hero-actions {
    justify-content: center;
  }
  .page-hero h1 {
    font-size: clamp(29px, 5.1vw, 44px);
  }
  .page-hero p {
    margin-inline: auto;
    font-size: clamp(15px, 2.2vw, 18px);
  }

  .promo-stack-single {
    padding: clamp(15px, 2.6vw, 24px);
  }
  .promo-card {
    align-items: end;
    min-height: clamp(380px, 58vw, 500px);
    padding: clamp(14px, 2.4vw, 22px);
    background-position: right center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
  .promo-card::after {
    background: linear-gradient(
      180deg,
      rgba(var(--body-bg-rgb), 0.02) 0%,
      rgba(var(--body-bg-rgb), 0.06) 45%,
      rgba(var(--body-bg-rgb), 0.24) 100%
    );
  }
  .promo-copy {
    width: 100%;
    padding: clamp(18px, 3.6vw, 30px);
    border: 1px solid rgba(var(--accent-rgb), 0.42);
    border-radius: clamp(12px, 2vw, 17px);
    background: rgba(var(--body-bg-rgb), 0.68);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    text-align: center;
    -webkit-backdrop-filter: blur(7px) saturate(1.08);
    backdrop-filter: blur(7px) saturate(1.08);
  }
  .promo-art-center .promo-copy {
    width: 100%;
  }
  .promo-copy h2,
  .promo-copy h3 {
    font-size: clamp(25px, 4.4vw, 36px);
  }
  .promo-actions {
    justify-content: center;
  }
  .app-get-panel {
    align-items: end;
    min-height: clamp(380px, 58vw, 500px);
    padding: clamp(14px, 2.4vw, 22px);
  }
  .app-get-panel::after {
    background: linear-gradient(
      180deg,
      rgba(var(--body-bg-rgb), 0.02) 0%,
      rgba(var(--body-bg-rgb), 0.06) 45%,
      rgba(var(--body-bg-rgb), 0.24) 100%
    );
  }
  .app-get-panel-copy-right .app-get-art {
    object-position: left center;
  }
  .app-get-panel-copy-left .app-get-art {
    object-position: right center;
  }
  .app-get-actions {
    width: 100%;
    margin-top: auto;
    padding: clamp(16px, 3vw, 24px);
    border: 1px solid rgba(var(--accent-rgb), 0.42);
    border-radius: clamp(12px, 2vw, 17px);
    background: rgba(var(--body-bg-rgb), 0.68);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(7px) saturate(1.08);
    backdrop-filter: blur(7px) saturate(1.08);
  }
  .app-get-panel-copy-right .app-get-actions {
    justify-self: stretch;
  }
  .app-get-panel-copy-left .app-get-actions {
    justify-self: stretch;
  }

  .side-art,
  .side-art-reverse {
    min-height: 260px;
    padding: clamp(22px, 4vw, 34px);
    background-image:
      linear-gradient(
        90deg,
        rgba(var(--body-bg-rgb), 1) 0 42%,
        rgba(var(--body-bg-rgb), 0.92) 50%,
        rgba(var(--body-bg-rgb), 0.72) 62%,
        rgba(var(--body-bg-rgb), 0.44) 74%,
        rgba(var(--body-bg-rgb), 0.18) 88%,
        rgba(var(--body-bg-rgb), 0.04) 100%
      ),
      var(--side-character-image);
    background-position:
      center,
      right center;
    background-size:
      cover,
      auto 100%;
  }
  .side-art-reverse {
    background-image:
      linear-gradient(
        270deg,
        rgba(var(--body-bg-rgb), 1) 0 42%,
        rgba(var(--body-bg-rgb), 0.92) 50%,
        rgba(var(--body-bg-rgb), 0.72) 62%,
        rgba(var(--body-bg-rgb), 0.44) 74%,
        rgba(var(--body-bg-rgb), 0.18) 88%,
        rgba(var(--body-bg-rgb), 0.04) 100%
      ),
      var(--side-character-image);
    background-position:
      center,
      left center;
    background-size:
      cover,
      auto 100%;
  }
  .side-art > * {
    max-width: 100%;
  }
  .side-art-reverse > * {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .copy-panel > .feature-points,
  .copy-panel > ol.feature-points:nth-of-type(even),
  .copy-panel > ul.feature-points:nth-of-type(even) {
    min-height: 0;
    padding: clamp(14px, 2.8vw, 20px);
    background-image:
      linear-gradient(
        90deg,
        rgba(var(--body-bg-rgb), 0.66),
        rgba(var(--body-bg-rgb), 0.78)
      ),
      url("../img/fiery/generated/casino-hero.webp");
    background-position: center, center;
    background-size: cover;
  }

  .ui-list-story-panel,
  .ui-list-story-panel-reverse {
    min-height: 260px;
    padding: clamp(14px, 2.8vw, 20px);
    background-image:
      linear-gradient(
        90deg,
        rgba(var(--body-bg-rgb), 1) 0 42%,
        rgba(var(--body-bg-rgb), 0.92) 50%,
        rgba(var(--body-bg-rgb), 0.72) 62%,
        rgba(var(--body-bg-rgb), 0.44) 74%,
        rgba(var(--body-bg-rgb), 0.18) 88%,
        rgba(var(--body-bg-rgb), 0.04) 100%
      ),
      var(--list-panel-image);
    background-position:
      center,
      right center;
    background-size:
      cover,
      auto 100%;
  }
  .ui-list-story-panel-reverse {
    background-image:
      linear-gradient(
        270deg,
        rgba(var(--body-bg-rgb), 1) 0 42%,
        rgba(var(--body-bg-rgb), 0.92) 50%,
        rgba(var(--body-bg-rgb), 0.72) 62%,
        rgba(var(--body-bg-rgb), 0.44) 74%,
        rgba(var(--body-bg-rgb), 0.18) 88%,
        rgba(var(--body-bg-rgb), 0.04) 100%
      ),
      var(--list-panel-image);
    background-position:
      center,
      left center;
    background-size:
      cover,
      auto 100%;
  }
  .ui-list-story-panel > * {
    max-width: 100%;
  }
  .ui-list-story-panel-reverse > * {
    margin-right: 0;
    margin-left: 0;
  }
  .ui-list-story-panel > :first-child,
  .ui-list-story-panel > .feature-points {
    max-width: 100%;
  }
  .ui-list-story-panel-reverse > :first-child,
  .ui-list-story-panel-reverse > .feature-points {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .mob-review {
    min-height: 0;
    padding: clamp(20px, 3.8vw, 28px);
  }
  .mob-review::before {
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(var(--body-bg-rgb), 0.9),
      rgba(var(--body-bg-rgb), 0.64)
    );
  }
  .mob-review-character {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.3;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }
  .site-bar {
    height: var(--header-height);
  }
  .brand-mark {
    width: 104px;
    height: 50px;
    object-fit: contain;
    object-position: left center;
  }
  .mob-wheel-button {
    min-width: 0;
  }
  .page-nav-links {
    grid-template-columns: 1fr;
  }
  .page-hero {
    min-height: 510px;
    border-radius: 14px;
  }
  .ui-hero-copy {
    width: calc(100% - 24px);
    margin: 12px;
    padding: 19px 16px;
  }
  .hero-crumbs {
    margin-bottom: 10px;
  }
  .hero-score,
  .error-label {
    margin-bottom: 12px;
  }
  .page-hero p {
    margin-top: 12px;
    line-height: 1.48;
  }
  .ui-hero-actions {
    margin-top: 18px;
  }
  .copy-panel,
  .copy-section {
    margin-top: 0;
    padding: 20px 17px;
    border-radius: 14px;
  }
  .story-body > * + * {
    margin-top: 0;
  }
  .story-body {
    gap: 12px;
  }
  .story-body > .campaign-break {
    margin-top: 0;
    margin-bottom: 0;
  }
  .campaign-gap-sm {
    --campaign-gap-before: 28px;
    --campaign-gap-after: 18px;
  }
  .campaign-gap-md {
    --campaign-gap-before: 40px;
    --campaign-gap-after: 24px;
  }
  .campaign-gap-lg {
    --campaign-gap-before: 54px;
    --campaign-gap-after: 30px;
  }
  .campaign-gap-xl {
    --campaign-gap-before: 70px;
    --campaign-gap-after: 38px;
  }
  .campaign-gap-xxl {
    --campaign-gap-before: 84px;
    --campaign-gap-after: 46px;
  }
  .promo-card {
    min-height: 430px;
    padding: 12px;
    border-radius: 14px;
    background-position: var(--mobile-offer-position, 75%) center !important;
    background-size: cover !important;
  }
  .app-get-panel {
    min-height: 430px;
    padding: 12px;
    border-radius: 14px;
  }
  .promo-stack-single {
    padding: 15px 17px 18px;
  }
  .promo-copy {
    width: 100%;
    padding: 17px 13px;
    text-align: center;
  }
  .promo-art-center .promo-copy {
    width: 100%;
  }
  .promo-copy h2,
  .promo-copy h3 {
    font-size: clamp(24px, 7.2vw, 31px);
  }
  .promo-kicker {
    margin-bottom: 9px;
  }
  .promo-actions {
    justify-content: center;
    margin-top: 17px;
  }
  .promo-card .ui-action-button {
    width: auto;
    min-width: 184px;
    padding-inline: 24px;
  }
  .app-get-actions {
    grid-template-columns: minmax(0, 222px);
    justify-content: center;
    width: 100%;
  }
  .app-get-panel-copy-right .app-get-actions {
    justify-self: stretch;
  }
  .app-get-panel-copy-left .app-get-actions {
    justify-self: stretch;
  }
  .expert-focus {
    min-height: 560px;
    padding: 28px 20px;
    background-image:
      linear-gradient(
        90deg,
        rgba(5, 7, 26, 0.88) 0%,
        rgba(5, 7, 26, 0.76) 58%,
        rgba(5, 7, 26, 0.42) 100%
      ),
      var(--author-art);
    background-position:
      center,
      right center;
    background-size:
      cover,
      auto 100%;
    background-repeat: no-repeat;
  }
  .expert-focus > * {
    width: 100%;
  }
  .expert-card {
    gap: 15px;
    margin-top: 22px;
  }
  .copy-panel > .feature-points,
  .copy-panel > ol.feature-points:nth-of-type(even),
  .copy-panel > ul.feature-points:nth-of-type(even) {
    min-height: 0;
    padding: 14px 0;
    background-image:
      linear-gradient(
        rgba(var(--body-bg-rgb), 0.58),
        rgba(var(--body-bg-rgb), 0.76)
      ),
      url("../img/fiery/generated/casino-hero.webp");
    background-position: center, center;
  }
  .ui-list-story-panel,
  .ui-list-story-panel-reverse {
    min-height: 260px;
    padding: 14px;
    background-image:
      linear-gradient(
        90deg,
        rgba(var(--body-bg-rgb), 0.88),
        rgba(var(--body-bg-rgb), 0.68)
      ),
      var(--list-panel-image);
    background-position:
      center,
      right center;
    background-size:
      cover,
      auto 100%;
  }
  .ui-list-story-panel-reverse {
    background-image:
      linear-gradient(
        270deg,
        rgba(var(--body-bg-rgb), 0.88),
        rgba(var(--body-bg-rgb), 0.68)
      ),
      var(--list-panel-image);
    background-position:
      center,
      left center;
    background-size:
      cover,
      auto 100%;
  }
  .ui-list-story-panel > * {
    max-width: 100%;
  }
  .ui-list-story-panel > :first-child,
  .ui-list-story-panel > .feature-points {
    max-width: 100%;
  }
  .ui-list-story-panel-reverse > :first-child,
  .ui-list-story-panel-reverse > .feature-points {
    max-width: 100%;
  }
  .side-art,
  .side-art-reverse {
    min-height: 280px;
    padding: 20px 17px;
    background-image:
      linear-gradient(
        90deg,
        rgba(var(--body-bg-rgb), 0.9),
        rgba(var(--body-bg-rgb), 0.68)
      ),
      var(--side-character-image);
    background-position:
      center,
      right center;
    background-size:
      cover,
      auto 100%;
  }
  .side-art-reverse {
    background-image:
      linear-gradient(
        270deg,
        rgba(var(--body-bg-rgb), 0.9),
        rgba(var(--body-bg-rgb), 0.68)
      ),
      var(--side-character-image);
    background-position:
      center,
      left center;
    background-size:
      cover,
      auto 100%;
  }
  .side-art > * {
    max-width: 100%;
  }
  .side-art-reverse > * {
    max-width: 100%;
    margin-left: 0;
  }
  .side-art > h2:first-child,
  .side-art > h3:first-child {
    max-width: 100%;
    min-height: 0;
  }
  .side-art-reverse > h2:first-child,
  .side-art-reverse > h3:first-child {
    max-width: 100%;
    margin-right: 0;
    margin-left: auto;
  }
  .mob-review {
    min-height: 0;
    padding: 18px;
  }
  .mob-review::before {
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(var(--body-bg-rgb), 0.93),
      rgba(var(--body-bg-rgb), 0.76)
    );
  }
  .mob-review-character {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.28;
  }
  th,
  td {
    padding: 10px 12px;
    font-size: 12px;
  }
  .cookie-note,
  .cookie-container {
    right: 10px;
    bottom: 10px;
    grid-template-columns: 46px 1fr;
    width: calc(100vw - 20px);
    padding: 12px;
    border-radius: 14px;
  }
  .cookie-character {
    width: 46px;
  }
  #cookieOk {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 370px) {
  .game-strip {
    --games-visible: 1;
  }
  .main-nav {
    gap: 5px;
    padding-inline: 8px;
  }
  .brand-mark {
    width: 82px;
  }
  .mob-wheel-button {
    flex-basis: 112px;
    width: 112px;
  }
  .mob-locale,
  .mob-burger {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .mob-wheel-button {
    grid-template-columns: 30px 1fr 14px;
    gap: 1px;
  }
  .mob-wheel-icon {
    width: 30px;
    height: 30px;
  }
  .mob-wheel-button strong {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .prize-wheel-wheel.state-idle {
    animation: none;
  }
}

/* Mobile wheel prizes: readable labels outside the hub, including short screens. */
@media (max-width: 680px) {
  .prize-wheel-modal-overlay {
    overflow-y: auto;
    overscroll-behavior: contain;
    align-items: safe center;
  }
  .prize-wheel-modal:not(.is-win):not(.state-win) {
    min-height: calc(min(96vw, 420px) + 270px);
  }
  .prize-wheel-stage {
    width: min(96vw, 420px);
  }
  .prize-wheel-sector,
  .prize-wheel-sector:first-child {
    height: 50%;
    font-size: clamp(13px, 4.2vw, 18px);
    line-height: 1.15;
  }
  .prize-wheel-sector b {
    top: 34%;
    font-size: inherit;
    line-height: inherit;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .prize-wheel-sector i {
    display: none;
  }
  .prize-wheel-modal [class$="-footer"] {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 8px;
  }
  .prize-wheel-modal [class$="-spins"],
  .prize-wheel-modal [class$="-details"] {
    min-width: 0;
    white-space: normal;
    overflow-wrap: break-word;
  }
}

/* Mobile app downloads: buttons without a shared panel, spaced from instructions. */
@media (max-width: 900px) {
  .app-get-actions {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    margin-block: 16px;
  }
  .app-get-panel .app-get-actions {
    margin-block: auto 0;
  }
}

/* Mobile banner download buttons remain centered for every desktop alignment. */
@media (max-width: 900px) {
  .app-get-panel .app-get-actions {
    width: 100%;
    margin-inline: auto;
    justify-content: center;
    justify-items: center;
  }
}

/* Uniform content-card insets on desktop and mobile. */
:is(.copy-panel, .copy-section) {
  padding: 20px !important;
}
:is(.copy-panel, .copy-section) > :is(h2, h3, p):first-child {
  margin-top: 0 !important;
}
:is(.copy-panel, .copy-section) :is(h2, h3, p, a) {
  overflow-wrap: anywhere;
}
:is(.copy-panel, .copy-section) > p:last-child {
  margin-bottom: 0;
}
/* Keep the text beside decorative side artwork without enlarging card padding. */
@media (min-width: 901px) {
  :is(.copy-panel, .copy-section)[style*="--side-character-image"] > * {
    max-width: 55%;
  }
  :is(.copy-panel, .copy-section)[style*="--side-character-image"][class*="reverse"] > * {
    margin-left: auto;
  }
}
