@charset "UTF-8";
:root {
  --color-bg: #101c30;
  --color-bg-dark: #0a1322;
  --color-night: #0d1728;
  --color-surface: #1a2b47;
  --color-surface-2: #16253d;
  --color-white: #f7faff;
  --color-text: #d8e3f4;
  --color-muted: #94a7c4;
  --color-dark: #0a1322;
  --color-gold: #f0b429;
  --color-amber: #e08b00;
  --color-ice: #bcd8ff;
  --color-red: #d7263d;
  --color-red-soft: #ff5566;
  --color-blue: #2f6fd0;
  --color-live: #ff5566;
  --grad-cta: linear-gradient(180deg, #d92b3f 0%, #a3101c 100%);
  --grad-cta-hover: linear-gradient(180deg, #a3101c 0%, #d92b3f 100%);
  --grad-card: linear-gradient(180deg, #1a2b47 0%, #111e33 100%);
  --grad-gold: linear-gradient(180deg, #ffd257 0%, #e08b00 100%);
  --grad-bar: linear-gradient(90deg, #f0b429 0%, #d7263d 100%);
  --color-line: rgba(188, 216, 255, 0.14);
  --color-line-strong: rgba(240, 180, 41, 0.45);
  --radius: 3px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --primary-transition: 0.22s ease;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
select {
  font: inherit;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Poppins-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Poppins-600-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Poppins-700-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Poppins-800-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Darumadrop One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/DarumadropOne-400-latin.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: radial-gradient(52% 38% at 12% 4%, rgba(47, 111, 208, 0.1) 0%, transparent 100%), radial-gradient(44% 32% at 90% 18%, rgba(240, 180, 41, 0.06) 0%, transparent 100%), linear-gradient(180deg, #16253d 0%, var(--color-bg, #101c30) 46%, #08111e 100%), var(--color-night, #101c30);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-white);
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
  hyphens: none;
  overflow-wrap: break-word;
}

p {
  margin-top: 20px;
  width: 100%;
}
p:first-child {
  margin-top: 0;
}

.title + p {
  margin-top: 0;
}

ul,
ol {
  text-align: left;
  width: 100%;
}

.card,
.cover {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.card {
  display: flex;
  padding: 20px;
  margin-top: 20px;
  border-radius: var(--radius, 4px);
  background: var(--grad-card, linear-gradient(180deg, #1a2b47 0%, #111e33 100%));
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.12));
}
@media (max-width: 850px) {
  .card {
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .card {
    padding: 10px;
  }
}

.card-bg > .layer + * {
  margin-top: 0;
}
.card-bg p {
  color: var(--color-white, #f7faff);
}

.cover {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1580px) {
  .cover {
    padding-left: calc(50% - 790px);
    padding-right: calc(50% - 790px);
  }
}

.card > *,
.cover > * {
  display: block;
  position: relative;
}

.main__buttons {
  display: none;
}
@media (max-width: 650px) {
  .main__buttons {
    background: rgba(10, 19, 34, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 15px;
  }
}
@media (max-width: 450px) {
  .main__buttons {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.main {
  position: relative;
  margin: 0 auto;
  display: flex;
}
.main__wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 10px 48px;
}
.main__content {
  position: relative;
  flex: 1 1 calc(100% - 20px - 248px);
  min-width: 0;
  overflow: hidden;
  padding-bottom: 0;
}
@media (max-width: 1050px) {
  .main__content {
    flex: 1 1 100%;
  }
}
@media (max-width: 650px) {
  .main__buttons .button {
    width: calc(50% - 4px);
    padding-left: 12px;
    padding-right: 12px;
    margin: 0;
    min-width: 0;
  }
}

@media (max-width: 850px) {
  .main,
  .topbar,
  .foot {
    padding-left: 0;
    padding-right: 0;
  }
}
.lawbox > h1,
.err404 > h1,
h2,
h3,
h4 {
  display: block;
  color: var(--color-ice, #bcd8ff);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  position: relative;
  width: 100%;
  word-break: break-word;
}

p {
  color: var(--color-text, #d8e3f4);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.lawbox > h1,
.err404 > h1,
h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0 0 12px 38px;
  margin: 0 0 20px;
  width: 100%;
}
.lawbox > h1::before,
.err404 > h1::before,
h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 1.9 22.1 12 12 22.1 1.9 12Z' stroke='%23f0b429' stroke-width='1.6' stroke-linejoin='round'/%3E%3Cpath d='M12 7.1 16.9 12 12 16.9 7.1 12Z' fill='%23d7263d'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.lawbox > h1::after,
.err404 > h1::after,
h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold, #f0b429) 0%, var(--color-red, #d7263d) 34%, rgba(215, 38, 61, 0.35) 62%, transparent 100%);
}
@media (max-width: 850px) {
  .lawbox > h1,
  .err404 > h1,
  h2 {
    font-size: 24px;
    padding-left: 34px;
  }
  .lawbox > h1::before,
  .err404 > h1::before,
  h2::before {
    width: 23px;
    height: 23px;
  }
}
@media (max-width: 650px) {
  .lawbox > h1,
  .err404 > h1,
  h2 {
    font-size: 22px;
    padding-left: 30px;
  }
  .lawbox > h1::before,
  .err404 > h1::before,
  h2::before {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 450px) {
  .lawbox > h1,
  .err404 > h1,
  h2 {
    font-size: 20px;
  }
}

h3 {
  color: var(--color-gold, #f0b429);
  font-weight: 700;
  font-size: 20px;
  text-transform: none;
  padding: 0 0 0 16px;
  margin-top: 24px;
  margin-bottom: 14px;
}
h3:first-child {
  margin-top: 0;
}
h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 4px;
  border-radius: 2px;
  background: var(--color-red, #d7263d);
}
@media (max-width: 850px) {
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  h3 {
    font-size: 17px;
    padding-left: 12px;
  }
}

h3 + p {
  margin-top: 0;
}

h4 {
  color: var(--color-gold, #f0b429);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 8px;
}

h4 + p {
  margin-top: 0;
}

h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
}

.card h2 + p,
.card h2 + .split,
.card h2 + .marks,
.card h2 + .walk,
.card h2 + .tbl,
.card h2 + .spec,
.card h2 + .tiers,
.card h2 + .shot,
.card h2 + div:has(> table),
.card > h2 + .ph,
.card h2 + .qa__list,
.card h2 + .voices__slider,
.card h2 + .scales__cols,
.card h2 + img,
.card h3 + .split,
.card h3 + .marks,
.card h3 + .walk,
.card h3 + .tbl,
.card h3 + .spec,
.card h3 + .tiers,
.card h3 + .shot,
.card h3 + div:has(> table),
.card > h3 + .ph,
.card h3 + img {
  margin-top: 0;
}

.lawbox > h1 + p,
.err404 > h1 + p,
h2 + p {
  margin-top: 0;
}

.image img,
.layer img {
  display: block;
  position: relative;
  margin: auto;
}

.layer {
  display: block !important;
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.layer img,
.layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.js-qa-panel {
  display: none;
  overflow: hidden;
}
.js-qa-panel.expanded {
  height: 100%;
}

svg {
  display: inline-block;
  position: relative;
  vertical-align: inherit;
  fill: rgb(247, 250, 255);
  line-height: 1;
}

use {
  fill: rgb(247, 250, 255);
  fill-rule: evenodd;
  transition: all 0.5s;
}

.path {
  fill: inherit;
  stroke: inherit;
  stroke-width: inherit;
}

section[id] {
  scroll-margin-top: 0;
}

.card h2[id] {
  scroll-margin-top: 20px;
}

.card img:not(:where(.icon, .logo, .flag, .pay)) {
  width: 100%;
  height: clamp(360px, 32vw, 480px);
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-xl, 14px);
  display: block;
}
@media (max-width: 850px) {
  .card img:not(:where(.icon, .logo, .flag, .pay)) {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .card img:not(:where(.icon, .logo, .flag, .pay)) {
    height: 220px;
  }
}

.card .layer img,
.card .layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

.marks {
  margin-top: 20px;
  position: relative;
}
.marks:first-child, h3 + .marks, h2 + .marks, p + .marks {
  margin-top: 14px;
}
.marks > li {
  position: relative;
  background: rgba(10, 19, 34, 0.55);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  border-radius: var(--radius-lg, 8px);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  padding: 12px 14px 12px 42px;
  width: 100%;
}
.marks > li b,
.marks > li strong {
  color: var(--color-gold, #f0b429);
  font-weight: 700;
}
.marks > li + li {
  margin-top: 8px;
}
.marks > li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-red-soft, #ff5566);
  border-bottom: 2px solid var(--color-red-soft, #ff5566);
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .marks > li {
    transition: border-color var(--primary-transition, 0.22s ease);
  }
  .marks > li:hover {
    border-color: var(--color-line-strong, rgba(240, 180, 41, 0.45));
  }
}
@media (max-width: 650px) {
  .marks > li {
    padding: 11px 12px 11px 36px;
    font-size: 14px;
  }
  .marks > li::before {
    left: 11px;
  }
}

.split {
  display: flex;
  gap: 22px;
  width: 100%;
  margin-top: 20px;
  align-items: stretch;
}
.split > div {
  flex: 1 1 0;
  min-width: 0;
}
.split--wide-text > div:last-child {
  flex: 0 1 38%;
}
@media (max-width: 850px) {
  .split {
    flex-direction: column;
    gap: 16px;
  }
  .split--wide-text > div:last-child {
    flex: 1 1 auto;
  }
}

.split > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split > div:last-child {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 8px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  min-height: 280px;
}
.split > div:last-child::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -60px 70px -40px rgba(10, 19, 34, 0.95);
}
.split > div:last-child .ph,
.split > div:last-child img:not(:where(.icon, .logo)) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  margin: 0;
}
@media (max-width: 850px) {
  .split > div:last-child {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .split > div:last-child {
    min-height: 220px;
  }
}

.split--flip > div:first-child {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 8px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  min-height: 280px;
}
.split--flip > div:first-child img:not(:where(.icon, .logo)) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  margin: 0;
}
@media (max-width: 850px) {
  .split--flip > div:first-child {
    min-height: 260px;
    flex: 0 0 260px;
  }
}
@media (max-width: 767px) {
  .split--flip > div:first-child {
    min-height: 210px;
    flex: 0 0 210px;
  }
}

.split--flip > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  border: 0;
  min-height: auto;
}
.split--flip > div:last-child::after {
  display: none;
}
@media (max-width: 850px) {
  .split--flip > div:last-child {
    min-height: auto;
    flex: 0 0 auto;
  }
}
@media (max-width: 767px) {
  .split--flip > div:last-child {
    min-height: auto;
  }
}

.shot {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 22px;
  border-radius: var(--radius-lg, 8px);
  overflow: hidden;
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0 !important;
}

h2 + .shot,
h3 + .shot,
p + .shot {
  margin-top: 18px;
}

.ph {
  display: block;
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg, 8px);
  border: 1px dashed rgba(240, 180, 41, 0.35);
  background: repeating-linear-gradient(135deg, rgba(240, 180, 41, 0.06) 0 12px, transparent 12px 24px), rgba(10, 19, 34, 0.6);
  overflow: hidden;
}
.ph::after {
  content: attr(data-slot);
  display: block;
  padding: 10px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-muted, #94a7c4);
  word-break: break-all;
}
.ph--16x9 {
  aspect-ratio: 16/9;
}
.ph--21x9 {
  aspect-ratio: 21/9;
}
.ph--4x3 {
  aspect-ratio: 4/3;
}
.ph--3x1 {
  aspect-ratio: 3/1;
}
.ph--3x4 {
  aspect-ratio: 3/4;
}
.ph--1x1 {
  aspect-ratio: 1/1;
}
.ph--fill {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  border: 0;
}

.card > .ph {
  margin-top: 20px;
}

.card > .note {
  margin-top: 12px;
  padding-left: 12px;
  border-left: 2px solid rgba(240, 180, 41, 0.45);
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-muted, #94a7c4);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, #172740 0%, #08111e 100%);
  border-bottom: 1px solid rgba(240, 180, 41, 0.35);
}
.topbar__wrap {
  display: flex;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 10px;
  min-height: 64px;
  gap: 20px;
}
.topbar__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 238px;
}
.topbar__logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 1050px) {
  .topbar__logo {
    width: auto;
  }
}
.topbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.topbar__nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--radius-lg, 10px);
  color: var(--color-white, #f7faff);
  font-weight: 600;
  font-size: 15px;
}
.topbar__nav a svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.topbar__nav a {
  transition: color var(--primary-transition), background var(--primary-transition);
}
.topbar__nav a.is-active {
  color: var(--color-gold, #f0b429);
  box-shadow: inset 0 -2px 0 0 var(--color-red, #d7263d);
  border-radius: 0;
}
@media (hover: hover) {
  .topbar__nav a:hover {
    color: var(--color-gold, #f0b429);
    background: rgba(188, 216, 255, 0.06);
  }
}
.topbar__nav a + a {
  position: relative;
  margin-left: 15px;
}
.topbar__nav a + a::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: rgba(188, 216, 255, 0.22);
}
@media (max-width: 900px) {
  .topbar__nav {
    display: none;
  }
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex: 0 0 auto;
}
.topbar__clock {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text, #d8e3f4);
  font-variant-numeric: tabular-nums;
}
.topbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white, #f7faff);
}
.topbar__lang .flag {
  font-size: 22px;
  line-height: 1;
}
.topbar__lang img {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  object-fit: cover;
  display: block;
}
.topbar__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .topbar__buttons {
    display: none;
  }
}
.topbar__burger {
  display: none;
  border: 2px solid var(--color-gold, #f0b429);
  padding: 10px;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}
.topbar__burger svg {
  display: block;
  margin: auto;
  width: 16px;
  height: 16px;
  fill: none;
}
.topbar__burger svg rect {
  transform-origin: 50% 50%;
  transition: all 0.5s;
  fill: var(--color-gold, #f0b429);
}
.topbar__burger.is-open svg rect:nth-child(1) {
  x: -2px;
  y: 6px;
  width: 20px;
  transform: rotate(225deg);
}
.topbar__burger.is-open svg rect:nth-child(2) {
  transform: scale(0, 2);
}
.topbar__burger.is-open svg rect:nth-child(3) {
  x: -2px;
  y: 6px;
  width: 20px;
  transform: rotate(135deg);
}
@media (max-width: 900px) {
  .topbar__burger {
    display: block;
  }
}

.readline {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 48;
  height: 3px;
  background: rgba(240, 180, 41, 0.12);
  pointer-events: none;
}
.readline span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f0b429 0%, #c07c0a 100%);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 8px rgba(240, 180, 41, 0.55);
  transition: width 0.12s linear;
}

.slidemenu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 49;
  background: #16253d;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0 25px;
  transition: max-height 0.5s ease, visibility 0.5s ease, padding 0.5s ease;
}
.slidemenu.is-open {
  max-height: calc(100vh - 64px);
  max-height: calc(100dvh - 64px);
  overflow: auto;
  visibility: visible;
  padding: 25px;
}
.slidemenu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slidemenu__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--color-white, #f7faff);
  transition: color var(--primary-transition);
}
.slidemenu__links a svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slidemenu__links a.is-active {
  font-weight: 700;
  color: var(--color-gold, #f0b429);
}
.slidemenu__links a:hover {
  color: var(--color-gold, #f0b429);
}
.slidemenu__links a:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 37px;
}
.slidemenu__links a:not(:last-child)::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='12' viewBox='0 0 30 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.4' y='6' width='8' height='1' fill='url(%23paint0_linear_3530_3408)'/%3E%3Crect opacity='0.4' x='22' y='6' width='8' height='1' fill='url(%23paint1_linear_3530_3408)'/%3E%3Crect x='15' y='0.707107' width='6.99997' height='7.00001' transform='rotate(45 15 0.707107)' stroke='%23f0b429'/%3E%3Crect x='15' y='4.24264' width='1.99998' height='2.00002' transform='rotate(45 15 4.24264)' fill='%23f0b429'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3530_3408' x1='0' y1='6.5' x2='8' y2='6.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23f7faff'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_3530_3408' x1='30' y1='6.5' x2='22' y2='6.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23f7faff'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 12px;
  width: 30px;
}
.slidemenu__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

body.no-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

@keyframes cz-pulse-red {
  0%, 100% {
    box-shadow: 0 0 10px rgba(179, 18, 31, 0.45), 0 6px 18px -6px rgba(179, 18, 31, 0.55);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 120, 132, 0.85), 0 6px 22px -6px rgba(179, 18, 31, 0.7);
  }
}
@keyframes cz-pulse-gold {
  0%, 100% {
    box-shadow: 0 0 10px rgba(240, 180, 41, 0.4), 0 8px 20px -8px rgba(240, 180, 41, 0.55);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 224, 90, 0.75), 0 8px 24px -8px rgba(240, 180, 41, 0.7);
  }
}
.topbar__login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 41px;
  padding: 0 18px;
  border-radius: var(--radius-lg, 10px);
  border: 1px solid rgba(240, 180, 41, 0.6);
  background: transparent;
  color: var(--color-white, #f7faff);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--primary-transition), border-color var(--primary-transition), color var(--primary-transition);
}
@media (hover: hover) {
  .topbar__login:hover {
    background: rgba(240, 180, 41, 0.12);
    border-color: var(--color-gold, #f0b429);
    color: var(--color-gold, #f0b429);
  }
}
.topbar__login:focus-visible {
  outline: 2px solid var(--color-gold, #f0b429);
  outline-offset: 2px;
}

.topbar__signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  padding: 0 24px;
  border-radius: var(--radius-lg, 10px);
  background: var(--grad-cta, linear-gradient(180deg, #d92b3f 0%, #a3101c 100%));
  color: var(--color-white, #f7faff);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px -6px rgba(179, 18, 31, 0.55);
  animation: cz-pulse-red 2.8s ease-in-out infinite;
  transition: filter var(--primary-transition), transform var(--primary-transition);
}
@media (hover: hover) {
  .topbar__signup:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -8px rgba(179, 18, 31, 0.7);
  }
}
.topbar__signup:focus-visible {
  outline: 2px solid var(--color-gold, #f0b429);
  outline-offset: 2px;
}

.act-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  margin-top: 20px;
  border-radius: var(--radius-lg, 10px);
  background: var(--grad-cta, linear-gradient(180deg, #d92b3f 0%, #a3101c 100%));
  color: var(--color-white, #f7faff);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  box-shadow: 0 10px 26px -10px rgba(179, 18, 31, 0.65);
  animation: cz-pulse-red 2.8s ease-in-out infinite;
  transition: filter var(--primary-transition), transform var(--primary-transition);
}
.act-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: cz-cta-sheen 4.8s ease-in-out infinite;
  pointer-events: none;
}
@media (hover: hover) {
  .act-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(179, 18, 31, 0.8);
  }
}
.act-btn:focus-visible {
  outline: 2px solid var(--color-gold, #f0b429);
  outline-offset: 2px;
}

@keyframes cz-cta-sheen {
  0%, 62% {
    left: -60%;
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  86%, 100% {
    left: 130%;
    opacity: 0;
  }
}
.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 268px;
  max-width: 100%;
  height: 56px;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: var(--radius-lg, 10px);
  background: linear-gradient(180deg, #ffd257 0%, #d8a01f 100%);
  color: var(--color-dark, #0a1322);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(240, 180, 41, 0.55);
  animation: cz-pulse-gold 3.4s ease-in-out infinite;
  transition: filter var(--primary-transition), transform var(--primary-transition);
}
.store-btn svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  fill: var(--color-dark, #0a1322);
}
@media (hover: hover) {
  .store-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
  }
}
.store-btn:focus-visible {
  outline: 2px solid var(--color-white, #f7faff);
  outline-offset: 2px;
}

.card > .act-btn,
.card > .store-btn {
  align-self: flex-start;
}

.card > .store-btn {
  display: inline-flex;
  width: 268px;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.stores .store-btn {
  margin: 20px 14px 0 0;
}

.rail {
  flex: 0 0 248px;
  width: 248px;
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 12px;
  border-radius: var(--radius-xl, 14px);
  background: linear-gradient(180deg, #1a2b47 0%, #111e33 100%);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.12));
}
.rail::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1050px) {
  .rail {
    display: none;
  }
}

.rail__promos {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rail__feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 52px;
  padding: 0 12px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #060d18;
  background: linear-gradient(180deg, #ffd257 0%, #f0b429 48%, #d9930c 100%);
  border: 1px solid rgba(255, 232, 170, 0.6);
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 7px 18px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rail__feature::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: -55%;
  bottom: -55%;
  left: -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: skewX(-20deg);
  transition: left 0.42s ease;
}
@media (hover: hover) {
  .rail__feature:hover {
    filter: brightness(1.1) saturate(1.08);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 77, 94, 0.42);
  }
  .rail__feature:hover::after {
    left: 125%;
  }
  .rail__feature:hover .spinwheel__wheel {
    animation-duration: 1.25s;
    filter: brightness(1.08) drop-shadow(0 2px 4px rgba(8, 17, 30, 0.5));
  }
  .rail__feature:hover .coffer {
    transform: translateY(-2px) scale(1.04);
  }
}
.rail__feature:active {
  transform: translateY(1px) scale(0.99);
}

.spinwheel {
  position: relative;
  width: 58px;
  height: 52px;
  display: block;
  align-self: stretch;
  flex: 0 0 auto;
}
.spinwheel img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
}
.spinwheel__wheel {
  width: 44px;
  height: 44px;
  animation: cz-wheel-spin 3.2s linear infinite;
  filter: drop-shadow(0 2px 3px rgba(8, 17, 30, 0.42));
}
.spinwheel__frame {
  z-index: 2;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -49%);
  filter: drop-shadow(0 2px 3px rgba(20, 30, 50, 0.5));
}

@keyframes cz-wheel-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.coffer {
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
  margin: 0 0 0 5px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.rail__menu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(240, 180, 41, 0.75) 0%, rgba(215, 38, 61, 0.45) 46%, rgba(188, 216, 255, 0) 100%) 1;
  padding-top: 8px;
}
.rail__menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: var(--radius-lg, 10px);
  color: var(--color-text, #d8e3f4);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--primary-transition), color var(--primary-transition);
}
.rail__menu li a svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--color-gold, #f0b429);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) {
  .rail__menu li a:hover {
    background: rgba(188, 216, 255, 0.08);
    color: var(--color-white, #f7faff);
  }
}
.rail__menu .chip {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100%;
  background: var(--color-red, #d7263d);
  color: var(--color-white, #f7faff);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rail__app {
  display: block;
  background-color: #16253d;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  box-shadow: 1px 3px 0 0 #0e1a2c;
  position: relative;
  padding: 21px 75px 18px 12px;
  transition: color var(--primary-transition);
}

.rail-app__text {
  font-size: 9px;
  color: var(--color-muted, #94a7c4);
  line-height: 12px;
  transition: color var(--primary-transition);
}
.rail-app__text span {
  font-weight: 900;
  font-size: 16px;
  color: var(--color-white, #fff);
  line-height: 100%;
  display: block;
  margin-bottom: 5px;
  transition: color var(--primary-transition);
}

@media (hover: hover) {
  .rail__app:hover .rail-app__text,
  .rail__app:hover .rail-app__text span {
    color: var(--color-gold, #f0b429);
  }
}
.rail-app__img {
  max-width: 75px;
  position: absolute;
  bottom: 0;
  right: 7px;
}
.rail-app__img img {
  display: block;
}

.chapters {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(240, 180, 41, 0.75) 0%, rgba(215, 38, 61, 0.45) 46%, rgba(188, 216, 255, 0) 100%) 1;
  padding-top: 12px;
}
.chapters__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 8px;
  border-radius: var(--radius-lg, 10px);
  color: var(--color-gold, #f0b429);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--primary-transition);
}
.chapters__toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-gold, #f0b429);
  border-bottom: 2px solid var(--color-gold, #f0b429);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 4px;
}
.chapters__toggle.is-open::after {
  transform: rotate(-135deg);
}
@media (hover: hover) {
  .chapters__toggle:hover {
    background: rgba(188, 216, 255, 0.06);
  }
}
.chapters__list {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  margin-top: 0;
  scrollbar-width: none;
  transition: max-height 0.45s ease, visibility 0.45s ease, margin-top 0.45s ease;
}
.chapters__list::-webkit-scrollbar {
  display: none;
}
.chapters__list.is-open {
  max-height: 56vh;
  overflow-y: auto;
  visibility: visible;
  margin-top: 6px;
}
.chapters__list a {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--color-text, #d8e3f4);
  transition: background var(--primary-transition), color var(--primary-transition);
}
@media (hover: hover) {
  .chapters__list a:hover {
    background: rgba(188, 216, 255, 0.07);
    color: var(--color-gold, #f0b429);
  }
}

.chapters--inline {
  display: none;
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.12));
  border-radius: var(--radius-lg, 10px);
  background: linear-gradient(180deg, #1a2b47 0%, #111e33 100%);
  padding: 8px 10px;
  margin-top: 20px;
}
@media (max-width: 1050px) {
  .chapters--inline {
    display: block;
  }
}

.foot {
  padding: 40px 20px 26px;
  background: linear-gradient(180deg, #142238 0%, #0b1524 100%);
  border-top: 1px solid var(--color-line, rgba(188, 216, 255, 0.12));
}
.foot__wrap {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.foot__geo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}
.foot__geo a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 7px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.12));
  font-size: 12.5px;
  color: var(--color-text, #d8e3f4);
  transition: border-color var(--primary-transition), background var(--primary-transition), color var(--primary-transition);
}
.foot__geo a span.flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
}
@media (hover: hover) {
  .foot__geo a:hover {
    border-color: rgba(240, 180, 41, 0.5);
    background: rgba(240, 180, 41, 0.08);
    color: var(--color-gold, #f0b429);
  }
}
.foot__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(240, 180, 41, 0.45) 50%, transparent 100%);
}
.foot__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
}
.foot__links a {
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text, #d8e3f4);
  transition: color var(--primary-transition);
}
@media (hover: hover) {
  .foot__links a:hover {
    color: var(--color-gold, #f0b429);
  }
}
.foot__links a + a {
  border-left: 1px solid rgba(240, 180, 41, 0.4);
}
.foot__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.foot__pay li {
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 122px;
}
.foot__pay li img {
  display: block;
  max-height: 45px;
  width: auto;
}
.foot__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--color-line, rgba(188, 216, 255, 0.12));
  padding-top: 20px;
}
@media (max-width: 650px) {
  .foot__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.foot__disclaimer {
  max-width: 860px;
  font-size: 12.5px;
  color: var(--color-muted, #94a7c4);
}
.foot__disclaimer b {
  display: block;
  color: var(--color-text, #d8e3f4);
  margin-top: 8px;
}
.foot__age {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-gold, linear-gradient(180deg, #ffd257 0%, #e08b00 100%));
  color: var(--color-dark, #0a1322);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(255, 184, 0, 0.45);
  animation: cz-age-glow 4s ease-in-out infinite;
}

@keyframes cz-age-glow {
  0%, 100% {
    box-shadow: 0 0 14px rgba(255, 184, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 26px rgba(255, 184, 0, 0.6);
  }
}
.gotop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-cta, linear-gradient(180deg, #d92b3f 0%, #a3101c 100%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow var(--primary-transition);
  box-shadow: 0 8px 20px -8px rgba(179, 18, 31, 0.7);
}
.gotop svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-dark, #0a1322);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gotop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) {
  .gotop:hover {
    box-shadow: 0 12px 26px -8px rgba(179, 18, 31, 0.9);
  }
}
@media (max-width: 650px) {
  .gotop {
    bottom: 78px;
  }
}

.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: var(--radius-xl, 14px);
  border: 1px solid rgba(240, 180, 41, 0.4);
  background: rgba(10, 19, 34, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}
.consent.is-visible {
  display: flex;
}
.consent p {
  margin: 0;
  font-size: 12.5px;
  color: var(--color-text, #d8e3f4);
}
.consent p a {
  color: var(--color-gold, #f0b429);
  text-decoration: underline;
}
.consent__actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.consent__accept {
  padding: 9px 18px;
  border-radius: var(--radius-lg, 10px);
  background: var(--grad-cta, linear-gradient(180deg, #d92b3f 0%, #a3101c 100%));
  color: var(--color-dark, #0a1322);
  font-weight: 700;
  font-size: 13px;
  transition: filter var(--primary-transition);
}
@media (hover: hover) {
  .consent__accept:hover {
    filter: brightness(1.08);
  }
}
.consent__decline {
  padding: 9px 14px;
  border-radius: var(--radius-lg, 10px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.25));
  color: var(--color-muted, #94a7c4);
  font-weight: 600;
  font-size: 13px;
  transition: color var(--primary-transition), border-color var(--primary-transition);
}
@media (hover: hover) {
  .consent__decline:hover {
    color: var(--color-white, #f7faff);
    border-color: var(--color-white, #f7faff);
  }
}
@media (max-width: 650px) {
  .consent {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .consent__actions {
    justify-content: center;
  }
}

.cz-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24, 8, 30, 0.72) 0%, rgba(10, 19, 34, 0.85) 100%), var(--color-bg, #101c30);
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.cz-splash.is-leaving {
  opacity: 0;
  pointer-events: none;
}
.cz-splash__letters {
  position: relative;
  display: flex;
  gap: 0.06em;
  font-family: "Darumadrop One", "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(44px, 9vw, 110px);
  color: var(--color-gold, #f0b429);
  text-shadow: 0 4px 0 rgba(138, 74, 10, 0.8), 0 10px 30px rgba(0, 0, 0, 0.6);
}
.cz-splash span {
  display: inline-block;
  animation: cz-letter-fly var(--fly-dur, 1.4s) cubic-bezier(0.22, 0.85, 0.3, 1) both;
  animation-delay: var(--fly-delay, 0s);
}
.cz-splash__geo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white, #f7faff);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: cz-geo-reveal 0.4s ease-out 1.3s forwards;
}
.cz-splash__geo .flag {
  font-size: 1.35em;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

@keyframes cz-geo-reveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cz-fade {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(46% 42% at 50% 50%, rgba(26, 43, 71, 0.9) 0%, rgba(10, 19, 34, 0.97) 100%), var(--color-bg, #101c30);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.cz-fade.is-on {
  opacity: 1;
  pointer-events: auto;
}
.cz-fade.is-off {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.cz-fade__wheel {
  position: relative;
  width: 92px;
  height: 96px;
  filter: drop-shadow(0 8px 26px rgba(240, 180, 41, 0.35));
}
.cz-fade__wheel img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
}
.cz-fade__wheel .cz-fade__disc {
  width: 72px;
  height: 72px;
  animation: cz-wheel-spin 1.1s linear infinite;
}
.cz-fade__wheel .cz-fade__frame {
  width: 88px;
  height: 92px;
  transform: translate(-50%, -49%);
}

@keyframes cz-letter-fly {
  0% {
    transform: translate(var(--fly-x, 0), var(--fly-y, 0)) rotate(var(--fly-r, 0deg)) scale(1.6);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
.lead {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px 0 0;
  padding: 0;
  border-radius: var(--radius-lg, 8px);
  background: #08111e;
}
.lead::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 17, 30, 0.15) 0%, rgba(8, 17, 30, 0.9) 92%), linear-gradient(90deg, rgba(8, 17, 30, 0.88) 0%, rgba(8, 17, 30, 0.35) 52%, transparent 78%);
  pointer-events: none;
}
.lead .layer {
  z-index: 0;
}
.lead .layer img,
.lead .layer video,
.lead .layer .ph {
  object-position: 88% top;
}
@media (max-width: 850px) {
  .lead .layer img,
  .lead .layer video,
  .lead .layer .ph {
    object-position: 80% 22%;
  }
}
.lead__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 820px;
  width: 100%;
  margin-right: auto;
  padding: 30px 34px;
  margin-left: 24px;
  background: rgba(10, 19, 34, 0.5);
  backdrop-filter: blur(3px);
  border-radius: var(--radius-lg, 8px);
}
@media (max-width: 850px) {
  .lead__wrap {
    width: auto;
    align-self: stretch;
    margin: 18px;
    padding: 22px 18px;
  }
}
@media (max-width: 650px) {
  .lead__wrap {
    align-items: center;
    text-align: center;
    margin: 12px;
    padding: 18px 14px;
  }
}
.lead__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--color-line-strong, rgba(240, 180, 41, 0.45));
  background: rgba(240, 180, 41, 0.1);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted, #94a7c4);
}
.lead__rating b {
  color: var(--color-gold, #f0b429);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}
.lead__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: auto;
  font-size: 13px;
  color: var(--color-muted, #94a7c4);
}
.lead__breadcrumbs a {
  color: var(--color-gold, #f0b429);
  transition: color var(--primary-transition);
}
@media (hover: hover) {
  .lead__breadcrumbs a:hover {
    color: var(--color-white, #f7faff);
  }
}
.lead__breadcrumbs li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--color-muted, #94a7c4);
}
@media (max-width: 650px) {
  .lead__breadcrumbs {
    justify-content: center;
  }
}
.lead h1 {
  margin-top: 14px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.22;
  color: var(--color-white, #f7faff);
}
@media (max-width: 850px) {
  .lead h1 {
    font-size: 27px;
  }
}
@media (max-width: 650px) {
  .lead h1 {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .lead h1 {
    font-size: 22px;
  }
}
.lead__text {
  margin-top: 12px;
  max-width: 640px;
  font-size: 14px;
  color: var(--color-text, #d8e3f4);
}
@media (max-width: 767px) {
  .lead {
    min-height: 400px;
  }
}

.strip {
  justify-content: center;
  align-items: flex-start;
  min-height: 425px;
  padding: 20px 20px 20px 6.2%;
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
}
.strip__bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.strip__bg img,
.strip__bg .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  margin: 0;
}
@media (max-width: 850px) {
  .strip__bg img,
  .strip__bg .ph {
    object-position: 95%;
  }
}
.strip__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px solid rgba(240, 180, 41, 0.6);
  border-radius: 12px;
  padding: 32px 20px;
  max-width: 653px;
  width: 100%;
}
.strip__title {
  display: block;
  color: var(--color-gold, #f0b429);
  font-weight: 700;
  font-size: 31px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 850px) {
  .strip__title {
    font-size: 28px;
  }
}
@media (max-width: 650px) {
  .strip__title {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .strip__title {
    font-size: 22px;
  }
}
.strip__text {
  position: relative;
  width: auto;
  margin-top: 20px;
  padding: 8px 131px;
  color: var(--color-white, #f7faff);
  font-weight: 900;
  font-size: 20px;
  line-height: 115%;
  text-transform: uppercase;
}
.strip__text::before, .strip__text::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 39px;
  width: 116px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.strip__text::before {
  background-image: url("data:image/svg+xml,%3Csvg width='116' height='39' viewBox='0 0 116 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='9' height='9' transform='matrix(1 0 0 -1 0 24)' fill='%23f0b429'/%3E%3Crect x='2.12132' width='23.9973' height='23.9973' transform='matrix(0.707107 0.707107 0.707107 -0.707107 78.0313 18)' stroke='%23f0b429' stroke-width='3'/%3E%3Crect x='0.707107' width='13.9977' height='13.9977' transform='matrix(0.707107 0.707107 0.707107 -0.707107 70.5471 19)' stroke='%23f7faff'/%3E%3Crect width='81' height='1' transform='matrix(1 0 0 -1 9 20)' fill='%23f7faff'/%3E%3C/svg%3E%0A");
  left: 0;
}
.strip__text::after {
  background-image: url("data:image/svg+xml,%3Csvg width='116' height='39' viewBox='0 0 116 39' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='116' y='24' width='9' height='9' transform='rotate(180 116 24)' fill='%23f0b429'/%3E%3Crect x='36.4686' y='19.5' width='23.9973' height='23.9973' transform='rotate(135 36.4686 19.5)' stroke='%23f0b429' stroke-width='3'/%3E%3Crect x='44.9529' y='19.5' width='13.9977' height='13.9977' transform='rotate(135 44.9529 19.5)' stroke='%23f7faff'/%3E%3Crect x='107' y='20' width='81' height='1' transform='rotate(180 107 20)' fill='%23f7faff'/%3E%3C/svg%3E%0A");
  right: 0;
}
@media (max-width: 650px) {
  .strip__text {
    font-size: 18px;
    padding: 8px 0;
  }
  .strip__text::before, .strip__text::after {
    display: none;
  }
}
.strip__button {
  min-width: 153px;
  margin-top: 20px;
}
@media (max-width: 850px) {
  .strip {
    min-height: 300px;
    padding: 20px;
    align-items: center;
  }
  .strip__wrap {
    background-color: rgba(16, 28, 48, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(240, 180, 41, 0.6);
    border-radius: 6px;
    padding: 15px;
  }
}

.card div:has(> table),
.card .tbl {
  width: 100%;
  margin-top: 20px;
  border-radius: 6px;
  font-size: 15px;
  color: var(--color-white, #f7faff);
  overflow: auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: #c07c0a rgba(255, 255, 255, 0.2);
}
.card div:has(> table)::-webkit-scrollbar,
.card .tbl::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.card div:has(> table)::-webkit-scrollbar-track,
.card .tbl::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
.card div:has(> table)::-webkit-scrollbar-thumb,
.card .tbl::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f0b429 0%, #c07c0a 100%);
  border-radius: 5px;
}
.card div:has(> table) > table,
.card .tbl > table {
  width: 100%;
  border-collapse: collapse;
}
.card div:has(> table) > table tr,
.card .tbl > table tr {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 12px 20px;
}
.card div:has(> table) > table tr + tr,
.card .tbl > table tr + tr {
  margin-top: 2px;
}
.card div:has(> table) > table tr > *,
.card .tbl > table tr > * {
  flex: 1;
  padding: 0;
  text-align: left;
}
.card div:has(> table) > table thead tr,
.card .tbl > table thead tr {
  background: linear-gradient(180deg, #f0b429 0%, #c07c0a 100%);
  line-height: 140%;
  color: var(--color-dark, #0a1322);
  text-transform: uppercase;
}
.card div:has(> table) > table th,
.card .tbl > table th {
  font-weight: 700;
}
.card div:has(> table) > table tbody tr,
.card .tbl > table tbody tr {
  background: #16253d;
  line-height: 22px;
}
.card div:has(> table) > table td a,
.card .tbl > table td a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 850px) {
  .card div:has(> table) > table,
  .card .tbl > table {
    min-width: 850px;
  }
}
.card .tbl--kv > table tbody tr:first-child {
  background: linear-gradient(180deg, #f0b429 0%, #c07c0a 100%);
}
.card .tbl--kv > table tbody tr:first-child th,
.card .tbl--kv > table tbody tr:first-child td {
  color: var(--color-dark, #0a1322);
  font-weight: 700;
  text-transform: uppercase;
}
.card .tbl--kv > table th {
  flex: 0 0 25%;
  font-weight: 700;
  color: var(--color-gold, #f0b429);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.card .tbl--kv > table td {
  flex: 1 1 auto;
}
@media (max-width: 850px) {
  .card .tbl--kv > table {
    min-width: 850px;
  }
}

.tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 0;
  counter-reset: tier;
}
.tiers > li {
  counter-increment: tier;
  position: relative;
  flex: 1 1 240px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius-lg, 8px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  background: linear-gradient(140deg, #21365a 0%, #16253d 52%, #0d1728 100%);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.tiers > li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background-image: linear-gradient(115deg, rgba(240, 180, 41, 0) 0%, rgba(240, 180, 41, 0.22) 25%, rgba(215, 38, 61, 0.26) 50%, rgba(188, 216, 255, 0.16) 75%, rgba(240, 180, 41, 0) 100%);
  background-size: 200% 100%;
  background-repeat: repeat;
  transition: opacity 0.3s ease;
}
.tiers > li::after {
  content: counter(tier);
  position: absolute;
  right: 10px;
  top: 2px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: rgba(188, 216, 255, 0.07);
  pointer-events: none;
}
.tiers > li:last-child {
  border-color: var(--color-line-strong, rgba(240, 180, 41, 0.45));
  background: linear-gradient(140deg, rgba(240, 180, 41, 0.24) 0%, rgba(215, 38, 61, 0.16) 46%, rgba(13, 23, 40, 0.95) 100%);
}
@media (hover: hover) {
  .tiers > li:hover {
    transform: translateY(-3px);
    border-color: rgba(240, 180, 41, 0.55);
    box-shadow: 0 12px 26px rgba(4, 10, 20, 0.5);
  }
  .tiers > li:hover::before {
    opacity: 1;
    animation: cz-tier-flow 2.6s linear infinite;
  }
}
.tiers > li b,
.tiers > li span,
.tiers > li p {
  position: relative;
  z-index: 1;
}
.tiers > li b,
.tiers > li span {
  padding-right: 42px;
}
.tiers > li b {
  display: block;
  color: var(--color-white, #f7faff);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}
.tiers > li span {
  display: block;
  color: var(--color-gold, #f0b429);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tiers > li p {
  margin: 0;
  color: var(--color-text, #d8e3f4);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 850px) {
  .tiers > li {
    flex: 1 1 46%;
  }
}
@media (max-width: 650px) {
  .tiers > li {
    flex: 1 1 100%;
  }
}

@keyframes cz-tier-flow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}
.walk {
  margin-top: 16px;
  position: relative;
  counter-reset: walk;
  padding-left: 0;
}
.walk > li {
  counter-increment: walk;
  position: relative;
  padding: 2px 0 20px 46px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text, #d8e3f4);
}
.walk > li b,
.walk > li strong {
  color: var(--color-gold, #f0b429);
  font-weight: 700;
}
.walk > li::before {
  content: counter(walk);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-gold, #f0b429);
  background: var(--color-bg-dark, #0a1322);
  color: var(--color-gold, #f0b429);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.walk > li::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(240, 180, 41, 0.55) 0%, rgba(240, 180, 41, 0.1) 100%);
}
.walk > li:last-child {
  padding-bottom: 0;
}
.walk > li:last-child::after {
  display: none;
}
@media (max-width: 650px) {
  .walk > li {
    padding-left: 38px;
    padding-bottom: 16px;
    font-size: 14px;
  }
  .walk > li::before {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  .walk > li::after {
    left: 12px;
    top: 26px;
  }
}

.perks .split {
  align-items: stretch;
}

.perks .marks {
  margin-top: 20px;
}

.scales__cols {
  display: flex;
  gap: 14px;
  width: 100%;
  margin-top: 16px;
}
.scales__cols > div {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  border-radius: var(--radius-lg, 8px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  background: rgba(10, 19, 34, 0.5);
  overflow: hidden;
}
.scales__cols > div h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark, #0a1322);
}
.scales__cols > div h3::before {
  content: "";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 17px 17px;
  position: static;
}
.scales__cols > div ul {
  padding: 8px 16px 16px;
}
.scales__cols > div li {
  position: relative;
  padding: 16px 0 16px 32px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text, #d8e3f4);
  border-bottom: 1px solid rgba(188, 216, 255, 0.07);
}
.scales__cols > div li:last-child {
  border-bottom: 0;
}
.scales__cols > div li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.scales__cols > div:first-child h3 {
  background-image: linear-gradient(90deg, #34c98a 0%, #8ff5c2 22%, #34c98a 42%, #5adfa4 68%, #34c98a 100%);
  background-size: 250% 100%;
  animation: cz-scale-flow 3.4s linear infinite;
}
.scales__cols > div:first-child h3::before {
  background-color: #0b6b3f;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M5 12h14M12 5v14'/%3E%3C/svg%3E");
}
.scales__cols > div:first-child li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ad991' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8 12.4 2.7 2.7L16.2 9.6'/%3E%3C/svg%3E");
}
.scales__cols > div:last-child h3 {
  background-image: linear-gradient(90deg, #8e0d18 0%, #d42639 22%, #8e0d18 42%, #b31a2b 68%, #8e0d18 100%);
  background-size: 250% 100%;
  animation: cz-scale-flow 3.4s linear infinite;
  color: var(--color-white, #f7faff);
}
.scales__cols > div:last-child h3::before {
  background-color: #7d0c16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.scales__cols > div:last-child li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5566' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m9.2 9.2 5.6 5.6M14.8 9.2l-5.6 5.6'/%3E%3C/svg%3E");
}
@media (max-width: 850px) {
  .scales__cols {
    flex-direction: column;
  }
}

@keyframes cz-scale-flow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 250% 50%;
  }
}
.signup .split {
  align-items: stretch;
}

.signup .walk {
  margin-top: 12px;
}

.pocket .split > div:last-child .ph,
.pocket .split > div:last-child img:not(:where(.icon, .logo)) {
  object-position: center;
}

.view-app .pocket {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 10px);
  padding: 60px;
}
.view-app .pocket > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 19, 34, 0.78);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg, 8px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  padding: 22px;
}
@media (max-width: 850px) {
  .view-app .pocket {
    padding: 40px 20px;
  }
  .view-app .pocket > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .view-app .pocket {
    padding: 20px 12px;
  }
  .view-app .pocket > div:not(.layer) {
    padding: 15px;
  }
}

.card.appbar {
  height: 350px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 180, 41, 0.3);
}
@media (max-width: 850px) {
  .card.appbar {
    height: auto;
    min-height: 280px;
    padding: 40px 20px;
  }
}
@media (max-width: 450px) {
  .card.appbar {
    padding: 30px 10px;
  }
}

.appbar__bg {
  z-index: 0;
}
.appbar__bg img,
.appbar__bg .ph {
  object-position: center;
}
.appbar__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 72% at 50% 50%, rgba(10, 19, 34, 0.72) 0%, rgba(10, 19, 34, 0.38) 62%, rgba(10, 19, 34, 0) 100%);
}
.appbar__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 15vw, 320px);
  width: 100%;
}
@media (max-width: 850px) {
  .appbar__actions {
    flex-direction: column;
    gap: 18px;
  }
}
.appbar__button {
  white-space: normal;
  line-height: 1.2;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 268px;
  min-width: 0;
  max-width: 100%;
  height: 56px;
  min-height: 0;
  padding: 12px 24px;
  margin: 0;
}
.appbar__button svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.view-main .club .layer img {
  object-position: center 22%;
}
@media (max-width: 850px) {
  .view-main .club .layer img {
    object-position: 62% 18%;
  }
}

.view-main .club {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 8px);
  padding: 56px 48px;
}
.view-main .club > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 19, 34, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  border-radius: var(--radius-lg, 8px);
  padding: 22px;
}
.view-main .club > div:not(.layer) > .act-btn {
  margin-top: 20px;
}
@media (max-width: 850px) {
  .view-main .club {
    padding: 32px 18px;
  }
  .view-main .club > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .view-main .club {
    padding: 16px 10px;
  }
  .view-main .club > div:not(.layer) {
    padding: 15px;
  }
}

.tabletop .tbl > table tr > *:nth-child(2) {
  flex: 2;
}

.livedesk .split {
  margin-top: 0;
  align-items: stretch;
}

@media (max-width: 850px) {
  .livedesk .split > div:first-child {
    min-height: 240px;
  }
}

.legalbox {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 8px);
  padding: 56px 48px;
}
.legalbox > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 19, 34, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  border-right: 3px solid var(--color-red, #d7263d);
  border-radius: var(--radius-lg, 8px) 0 0 var(--radius-lg, 8px);
  padding: 22px;
}
@media (max-width: 850px) {
  .legalbox {
    padding: 32px 18px;
  }
  .legalbox > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .legalbox {
    padding: 16px 10px;
  }
  .legalbox > div:not(.layer) {
    padding: 15px;
  }
}

.helpline .split {
  align-items: stretch;
}

.helpline .marks {
  margin-top: 0;
}

.qa__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.qa__item {
  border: 1px solid var(--color-gold, #f0b429);
  border-radius: var(--radius-xl, 14px);
  overflow: hidden;
  background: var(--color-surface, #1a2b47);
  transition: border-color var(--primary-transition);
}
.qa__item:has(.qa-item__title.active) {
  border-color: transparent;
}

.qa-item__title {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px 46px 14px 16px;
  background: var(--color-night, #101c30);
  color: var(--color-white, #f7faff);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  text-transform: none;
  transition: filter var(--primary-transition);
}
.qa-item__title::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -8px;
  border-right: 2px solid var(--color-white, #f7faff);
  border-bottom: 2px solid var(--color-white, #f7faff);
  transform: rotate(45deg);
  transition: transform 0.3s ease, margin-top 0.3s ease;
}
.qa-item__title.active::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}
@media (hover: hover) {
  .qa-item__title:hover {
    filter: brightness(1.05);
  }
}
@media (max-width: 850px) {
  .qa-item__title {
    font-size: 14px;
  }
}

.qa-item__desc {
  border-top: 1px solid var(--color-gold, #f0b429);
  padding: 0 16px;
}
.qa-item__desc p {
  padding: 14px 0;
  margin: 0;
}

.voices__carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 14px;
}

.voices__track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.voices__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(180deg, #1a2b47 0%, #111e33 100%);
  border: 2px solid rgba(240, 180, 41, 0.6);
  box-shadow: 0 0 14px rgba(240, 180, 41, 0.25);
  color: var(--color-gold, #f0b429);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
}
.voices__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.voices__card {
  flex: none;
  width: 416px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-xl, 14px);
  border: 1px solid rgba(240, 180, 41, 0.35);
  background: linear-gradient(180deg, rgba(26, 43, 71, 0.9) 0%, rgba(13, 23, 40, 0.9) 100%);
  box-shadow: 0 8px 24px -12px rgba(240, 180, 41, 0.25);
}
@media (max-width: 767px) {
  .voices__card {
    width: 320px;
  }
}
@media (max-width: 450px) {
  .voices__card {
    width: 260px;
  }
}
.voices__card .rate {
  display: flex;
  gap: 4px;
  width: auto;
}
.voices__card .rate svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold, #f0b429);
}
.voices__card .rate svg.is-off {
  fill: rgba(188, 216, 255, 0.25);
}
.voices__card h3 {
  margin: 0;
  padding: 0;
  background: none;
  color: var(--color-gold, #f0b429);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.voices__card h3::before {
  display: none;
}
.voices__card p {
  margin: 0;
  font-size: 13.5px;
  text-align: center;
  color: var(--color-text, #d8e3f4);
}

.voices__nav {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.voices__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white, #f7faff);
  transition: transform var(--primary-transition), box-shadow var(--primary-transition);
}
.voices__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--color-dark, #0a1322);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (hover: hover) {
  .voices__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -8px rgba(247, 250, 255, 0.6);
  }
}

.scores table tbody td:nth-child(2) {
  white-space: nowrap;
  font-weight: 800;
  color: var(--color-gold, #f0b429);
}

.scores .tbl tr > *:nth-child(1) {
  flex: 0 0 160px;
}

.scores .tbl tr > *:nth-child(2) {
  flex: 0 0 70px;
}

.scores .tbl tr > *:nth-child(3) {
  flex: 1 1 auto;
}

.expert__row {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  margin-top: 0;
}

.expert__photo {
  flex: 0 0 170px;
}
.expert__photo img,
.expert__photo .ph {
  width: 170px;
  height: 170px !important;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 2px solid var(--color-line-strong, rgba(240, 180, 41, 0.45));
  margin: 0;
}

.expert__body {
  flex: 1 1 0;
  min-width: 0;
}
.expert__body h3 {
  margin-top: 0;
}
.expert__body p + p {
  margin-top: 20px;
}
.expert__body .act-btn {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .expert__row {
    flex-direction: column;
    align-items: center;
  }
  .expert__photo {
    flex: 0 0 auto;
  }
  .expert__body {
    width: 100%;
    text-align: center;
  }
  .expert__body h3 {
    padding: 0;
  }
  .expert__body h3::before {
    display: none;
  }
  .expert__body .act-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.opening {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 10px);
  padding: 60px;
}
.opening > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 19, 34, 0.78);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg, 8px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  padding: 22px;
}
@media (max-width: 850px) {
  .opening {
    padding: 40px 20px;
  }
  .opening > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .opening {
    padding: 20px 12px;
  }
  .opening > div:not(.layer) {
    padding: 15px;
  }
}

.freespins .split--flip > div:first-child {
  flex: 0 0 min(46%, 520px);
  min-height: 0;
  aspect-ratio: 4/3;
  align-self: flex-start;
}
.freespins .split--flip > div:first-child img:not(:where(.icon, .logo)) {
  object-fit: cover;
  object-position: center;
}
@media (max-width: 850px) {
  .freespins .split--flip > div:first-child {
    flex: none;
    width: 100%;
    aspect-ratio: 16/10;
  }
}

.refund .split--flip > div:first-child {
  flex: 0 0 min(46%, 520px);
  align-self: stretch;
  min-height: 0;
}
.refund .split--flip > div:first-child img:not(:where(.icon, .logo)) {
  object-fit: cover;
  object-position: center;
}
@media (max-width: 850px) {
  .refund .split--flip > div:first-child {
    flex: 0 0 260px;
    width: 100%;
    min-height: 260px;
  }
}
@media (max-width: 767px) {
  .refund .split--flip > div:first-child {
    flex: 0 0 210px;
    min-height: 210px;
  }
}

.view-app .safeplay {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 10px);
  padding: 60px;
}
.view-app .safeplay > div:not(.layer) {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(10, 19, 34, 0.78);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg, 8px);
  border: 1px solid var(--color-line, rgba(188, 216, 255, 0.14));
  padding: 22px;
}
@media (max-width: 850px) {
  .view-app .safeplay {
    padding: 40px 20px;
  }
  .view-app .safeplay > div:not(.layer) {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .view-app .safeplay {
    padding: 20px 12px;
  }
  .view-app .safeplay > div:not(.layer) {
    padding: 15px;
  }
}

.setup .split {
  align-items: stretch;
}

.setup .walk {
  margin-top: 12px;
}

.specs .split--flip > div:first-child {
  flex: 0 0 min(46%, 520px);
  align-self: stretch;
  min-height: 0;
}
@media (max-width: 850px) {
  .specs .split--flip > div:first-child {
    flex: 0 0 260px;
    width: 100%;
    min-height: 260px;
  }
}
@media (max-width: 767px) {
  .specs .split--flip > div:first-child {
    flex: 0 0 210px;
    min-height: 210px;
  }
}
.specs .split--flip > div:last-child .tbl {
  margin-top: 0;
}
.specs .tbl > table tr {
  gap: 18px;
  padding: 12px 16px;
}
.specs .tbl > table tbody th {
  flex: 0 0 34%;
  color: var(--color-gold, #f0b429);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.specs .tbl > table thead th:first-child {
  flex: 0 0 34%;
}
@media (max-width: 850px) {
  .specs .tbl > table {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .specs .tbl > table {
    width: auto;
    min-width: 460px;
  }
  .specs .tbl > table tr {
    gap: 12px;
    padding: 11px 12px;
  }
  .specs .tbl > table tbody th {
    flex: 0 0 38%;
  }
  .specs .tbl > table thead th:first-child {
    flex: 0 0 38%;
  }
}

.card.err404 {
  min-height: 560px;
  padding: clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 80px);
  text-align: center;
}
.card.err404::before {
  content: "";
  position: absolute;
  inset: auto 4% 0 auto;
  width: min(42vw, 520px);
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 208, 0.2), transparent 68%);
  pointer-events: none;
}

.err404__copy {
  flex: 1 1 620px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.err404__copy p {
  max-width: 620px;
}
.err404__character {
  position: relative;
  flex: 0 1 390px;
  align-self: stretch;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.err404__speech {
  position: absolute;
  top: auto;
  bottom: 445px;
  left: 0;
  z-index: 2;
  width: max-content;
  max-width: 240px;
  margin: 0;
  padding: 13px 20px;
  border: 2px solid var(--color-gold, #f0b429);
  border-radius: 22px;
  background: var(--color-white, #f7faff);
  color: var(--color-dark, #0a1322);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  transform: rotate(-3deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.err404__speech strong {
  color: #2f6fd0;
}
.err404__speech::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -15px;
  width: 25px;
  height: 25px;
  background: var(--color-white, #f7faff);
  border-right: 2px solid var(--color-gold, #f0b429);
  border-bottom: 2px solid var(--color-gold, #f0b429);
  transform: skew(18deg) rotate(38deg);
}
.card .err404__owl, .err404__owl {
  width: min(100%, 360px);
  height: 470px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.42));
}

@media (max-width: 767px) {
  .card.err404 {
    min-height: 0;
    flex-direction: column;
    gap: 12px;
  }
  .err404__copy {
    display: contents;
  }
  .err404__copy h2 {
    order: 1;
  }
  .err404__copy p {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  .err404__character {
    order: 3;
    width: 100%;
    min-height: 350px;
    align-self: auto;
  }
  .err404__copy .act-btn {
    order: 4;
  }
  .err404__speech {
    top: auto;
    bottom: 330px;
    left: 50%;
    transform: translateX(-85%) rotate(-3deg);
    font-size: 16px;
  }
  .card .err404__owl, .err404__owl {
    width: min(100%, 280px);
    height: 350px;
  }
}
@media (max-width: 450px) {
  .err404__speech {
    left: 8px;
    transform: rotate(-3deg);
  }
}
.ticket-dock {
  --shift: 118px;
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 45;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  translate: var(--shift) 0;
  transition: translate 0.45s cubic-bezier(0.3, 1.25, 0.4, 1);
}
.ticket-dock.is-open {
  translate: 0 0;
}

.ticket-dock__toggle {
  flex: 0 0 auto;
  width: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px 0 0 10px;
  background: var(--grad-gold, linear-gradient(180deg, #ffd257 0%, #e08b00 100%));
  color: #0a1322;
  cursor: pointer;
  box-shadow: -4px 0 14px rgba(240, 180, 41, 0.35);
}
.ticket-dock__toggle svg {
  fill: none;
  transition: transform 0.3s ease;
  animation: cz-arrow-nudge 1.5s ease-in-out infinite;
}
@media (hover: hover) {
  .ticket-dock__toggle:hover {
    filter: brightness(1.08);
  }
}

.ticket-dock.is-open .ticket-dock__toggle svg {
  transform: rotate(180deg);
  animation: none;
}

@keyframes cz-arrow-nudge {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}
.ticket-launcher {
  position: relative;
  flex: 0 0 auto;
  width: 100px;
  aspect-ratio: 16/9;
  margin: 0 10px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.48));
  cursor: pointer;
  isolation: isolate;
  animation: cz-ticket-float 3.2s ease-in-out infinite;
}
.ticket-launcher img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ticket-launcher span {
  position: absolute;
  inset: 30% 20% 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  color: #ffe3a3;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.75);
}
@media (hover: hover) {
  .ticket-launcher:hover {
    animation-play-state: paused;
    filter: drop-shadow(0 12px 24px rgba(240, 180, 41, 0.42));
    transform: rotate(1deg) scale(1.06);
  }
}

@keyframes cz-ticket-float {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: translateY(-7px) rotate(1deg);
  }
}
.ticket {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24, 7, 36, 0.78);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ticket.is-on {
  opacity: 1;
}

.ticket__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(94vw, 760px);
  padding: 62px 88px 48px;
  background: url("../images/stiraci.webp") center/100% 100% no-repeat;
  text-align: center;
  transform: rotate(-3deg);
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 20px rgba(240, 180, 41, 0.35));
  animation: cz-ticket-glow 2.6s ease-in-out infinite;
}

@keyframes cz-ticket-glow {
  0%, 100% {
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 16px rgba(240, 180, 41, 0.3));
  }
  50% {
    filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 36px rgba(240, 180, 41, 0.6));
  }
}
.ticket__brand {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1d3556;
  margin: 0 0 6px;
}

.ticket__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #1d3556;
  margin-top: 14px;
}

.ticket__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 19, 34, 0.7);
  color: var(--color-muted, #94a7c4);
  font-size: 22px;
  line-height: 1;
  transition: color var(--primary-transition), background var(--primary-transition);
}
@media (hover: hover) {
  .ticket__close:hover {
    color: var(--color-white, #f7faff);
    background: rgb(10, 19, 34);
  }
}

.ticket__title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #12203a;
  margin: 0;
}

.ticket__sub {
  font-size: 13px;
  color: #24406b;
  margin-top: 4px;
}

.ticket__zone {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  margin-top: 16px;
  border-radius: var(--radius-lg, 10px);
  overflow: hidden;
}

.ticket__prize {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: radial-gradient(60% 80% at 50% 0%, rgba(240, 180, 41, 0.15) 0%, transparent 100%), var(--color-bg-dark, #0a1322);
  color: var(--color-white, #f7faff);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.ticket__prize b {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-gold, #f0b429);
}
.ticket__prize span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text, #d8e3f4);
}

.ticket__foil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: none;
  transition: opacity 0.6s ease;
}
.ticket__foil.is-cleared {
  opacity: 0;
  pointer-events: none;
}

.ticket__coin {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 45%;
  background: linear-gradient(90deg, #7a4c05 0%, #c9820c 12%, #ffe3a3 42%, #a56807 70%, #613c04 100%);
  border: 2px solid #5e3a04;
  box-shadow: inset 3px 0 4px rgba(255, 255, 255, 0.55), inset -3px 0 4px rgba(60, 40, 4, 0.55), 5px 8px 12px rgba(0, 0, 0, 0.48);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-18deg);
  transition: opacity 0.15s ease;
  z-index: 2;
}
.ticket__coin.is-visible {
  opacity: 1;
}
.ticket__coin.is-rubbing {
  animation: cz-coin-rub 0.35s ease-in-out infinite;
}

.ticket__win {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  padding: 8px 22px;
  border: 3px solid var(--color-gold, #f0b429);
  border-radius: 10px;
  background: rgba(10, 19, 34, 0.78);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(20px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-gold, #f0b429);
  text-shadow: 0 2px 0 rgba(124, 74, 0, 0.8), 0 6px 18px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-7deg) scale(2.4);
}

.ticket__card.is-won .ticket__win {
  animation: cz-win-stamp 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) 0.25s forwards;
}

@keyframes cz-win-stamp {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-7deg) scale(2.4);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-7deg) scale(1);
  }
}
.ticket__flake {
  position: absolute;
  z-index: 1;
  border-radius: 2px;
  background: linear-gradient(135deg, #ffe3a3 0%, #f0b429 55%, #c07c0a 100%);
  box-shadow: 0 0 4px rgba(240, 180, 41, 0.4);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: cz-flake-fall var(--dur, 0.7s) ease-in forwards;
}

@keyframes cz-flake-fall {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--fx, 0px)), calc(-50% + var(--fy, 60px))) rotate(var(--rot, 180deg));
  }
}
@keyframes cz-coin-rub {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-25deg) scale(0.96);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-10deg) scale(1);
  }
}
.ticket__cta.act-btn {
  margin-top: 20px;
  opacity: 0.45;
  filter: saturate(0.5);
  pointer-events: none;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.ticket__card.is-won .ticket__cta.act-btn {
  opacity: 1;
  filter: none;
  pointer-events: auto;
}
.ticket__card.is-won .ticket__prize b {
  animation: cz-prize-pop 0.6s ease;
}

@keyframes cz-prize-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 450px) {
  .ticket-dock {
    --shift: 92px;
    top: auto;
    bottom: 150px;
    transform: none;
  }
  .ticket-dock__toggle {
    width: 26px;
    height: 50px;
  }
  .ticket-launcher {
    width: 78px;
    margin: 0 6px;
  }
  .ticket-launcher span {
    font-size: 7px;
  }
  .ticket {
    padding: 10px;
  }
  .ticket__card {
    padding: 34px 20px 26px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    transform: rotate(-2deg);
  }
  .ticket__prize b {
    font-size: 36px;
  }
  .ticket__prize {
    font-size: 15px;
  }
}
:focus-visible {
  outline: 2px solid var(--color-gold, #f0b429);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
