:root {
  color-scheme: dark;
  --bg: #070316;
  --bg-soft: #0e0827;
  --panel: rgba(22, 13, 56, 0.78);
  --panel-strong: #140a36;
  --panel-hover: #1c0d49;
  --line: rgba(173, 119, 255, 0.2);
  --line-bright: rgba(205, 148, 255, 0.48);
  --text: #fbf9ff;
  --muted: #b8afd0;
  --pink: #ff4fc9;
  --pink-soft: #ff8ddd;
  --violet: #9747ff;
  --blue: #4a7dff;
  --cyan: #3be5ff;
  --gold: #ffd35c;
  --orange: #ff8b4c;
  --success: #65ecae;
  --danger: #ff7694;
  --shadow: 0 22px 80px rgba(2, 0, 16, 0.56);
  --glow: 0 0 36px rgba(180, 72, 255, 0.38);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 46px;
  --container: 1220px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(103, 41, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #080319 0%, #09041c 35%, #060213 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.1vw, 3.65rem);
}

p {
  color: var(--muted);
}

::selection {
  background: rgba(255, 78, 201, 0.38);
  color: #fff;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: #09041c;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #09041c;
  border-radius: 999px;
  background: linear-gradient(var(--pink), var(--violet));
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #14082d;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.95'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
}

.ambient--one {
  top: 28%;
  left: -320px;
  background: var(--pink);
}

.ambient--two {
  right: -340px;
  bottom: 13%;
  background: var(--blue);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.3) 45%, transparent 75%);
  transform: translateX(-120%);
  content: "";
  transition: transform 0.65s ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button:focus-visible,
.icon-button:focus-visible,
.filter-button:focus-visible,
.play-button:focus-visible,
.menu-toggle:focus-visible,
.faq-item button:focus-visible,
.mobile-cta a:focus-visible,
.mobile-cta button:focus-visible {
  outline: 3px solid rgba(255, 211, 92, 0.9);
  outline-offset: 3px;
}

.button--primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(115deg, #7d37ff 0%, #d839ff 44%, #ff6976 76%, #ffc55e 100%);
  box-shadow: 0 12px 32px rgba(169, 55, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  color: #fff;
}

.button--primary:hover {
  box-shadow: 0 17px 42px rgba(197, 67, 255, 0.44), 0 0 25px rgba(255, 107, 181, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button--ghost {
  border-color: rgba(199, 129, 255, 0.48);
  background: rgba(14, 6, 36, 0.66);
  color: #fff;
}

.button--ghost:hover {
  border-color: var(--pink-soft);
  background: rgba(116, 41, 180, 0.2);
}

.button--dark {
  border-color: var(--line);
  background: rgba(12, 7, 31, 0.85);
  color: #fff;
}

.button--dark:hover {
  border-color: rgba(106, 194, 255, 0.5);
  background: rgba(28, 16, 68, 0.9);
}

.button--light {
  min-height: 43px;
  background: rgba(255, 255, 255, 0.94);
  color: #271244;
  box-shadow: 0 9px 25px rgba(20, 4, 41, 0.24);
}

.button--light:hover {
  background: #fff;
}

.button--sm {
  min-height: 44px;
  padding-inline: 18px;
}

.button--xl {
  min-height: 59px;
  padding-inline: 26px;
  border-radius: 18px;
}

.button__gift {
  font-size: 1.25em;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(181, 117, 255, 0.1);
  background: rgba(7, 3, 22, 0.66);
  backdrop-filter: blur(18px) saturate(145%);
  transition: background 0.2s ease, box-shadow 0.2s ease, height 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 3, 22, 0.93);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand__mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 211, 92, 0.2);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(255, 90, 198, 0.15), rgba(96, 52, 255, 0.12));
  box-shadow: inset 0 0 18px rgba(157, 78, 255, 0.15);
}

.brand__mark svg {
  width: 31px;
  height: 31px;
  overflow: visible;
  fill: none;
  stroke: url("#brand-gradient");
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(255, 211, 92, 0.3));
}

.brand__text {
  display: grid;
  line-height: 0.9;
}

.brand__text strong {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand__text small {
  margin-top: 6px;
  background: linear-gradient(90deg, var(--pink-soft), #8f56ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  color: #d9d2e8;
  font-size: 0.93rem;
  font-weight: 720;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  transform: scaleX(0);
  transform-origin: center;
  content: "";
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(19, 10, 48, 0.8);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  max-height: calc(100dvh - var(--header-height));
  padding: 24px 20px 30px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: rgba(8, 4, 25, 0.985);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.48);
}

.mobile-menu[hidden] {
  display: none;
}

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

.mobile-menu nav a {
  padding: 15px 10px;
  border-bottom: 1px solid rgba(172, 115, 255, 0.12);
  color: #ebe6f7;
  font-size: 1.08rem;
  font-weight: 750;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
  margin-top: 22px;
}

.hero {
  min-height: 860px;
  padding-top: calc(var(--header-height) + 75px);
  padding-bottom: 55px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 1040px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 48, 255, 0.28) 0%, rgba(255, 69, 201, 0.08) 45%, transparent 70%);
  transform: translateX(-20%);
  content: "";
  filter: blur(12px);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 18%, rgba(255, 210, 89, 0.8) 0 1px, transparent 1.7px),
    radial-gradient(circle at 62% 62%, rgba(107, 189, 255, 0.7) 0 1px, transparent 1.5px),
    radial-gradient(circle at 91% 48%, rgba(255, 85, 204, 0.7) 0 1px, transparent 1.5px);
  background-size: 120px 120px, 170px 170px, 210px 210px, 250px 250px;
  content: "";
  opacity: 0.32;
  animation: stars 18s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: 28px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 8px 13px;
  border: 1px solid rgba(152, 92, 255, 0.27);
  border-radius: 999px;
  background: rgba(23, 12, 54, 0.55);
  color: #ded7ef;
  font-size: 0.82rem;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(101, 236, 174, 0.09), 0 0 14px rgba(101, 236, 174, 0.7);
  animation: dotPulse 2s ease-in-out infinite;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 25px;
  font-size: clamp(3.1rem, 6vw, 5.45rem);
  letter-spacing: -0.057em;
}

.hero h1 span {
  background: linear-gradient(98deg, #b375ff 0%, var(--pink) 48%, #ff8fbd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(195, 70, 255, 0.2));
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  font-size: clamp(1.02rem, 1.65vw, 1.22rem);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  color: #9189a6;
  font-size: 0.82rem;
}

.hero-note__badge {
  display: grid;
  flex: 0 0 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 119, 161, 0.35);
  border-radius: 50%;
  background: rgba(255, 69, 124, 0.08);
  color: #ff97b6;
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-art img {
  position: absolute;
  right: -70px;
  bottom: -42px;
  z-index: 4;
  width: min(720px, 115%);
  max-width: none;
  filter: drop-shadow(0 35px 45px rgba(2, 0, 14, 0.38));
  transform-origin: center bottom;
  animation: mascotFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

.hero-art__glow {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: 0;
  bottom: 4%;
  left: 3%;
  border-radius: 48% 52% 58% 42% / 54% 45% 55% 46%;
  background:
    radial-gradient(circle at 56% 46%, rgba(56, 142, 255, 0.28), transparent 30%),
    radial-gradient(circle at 62% 55%, rgba(255, 52, 206, 0.31), transparent 52%),
    radial-gradient(circle at 34% 70%, rgba(142, 72, 255, 0.28), transparent 58%);
  filter: blur(10px);
  box-shadow: 0 0 90px rgba(121, 56, 255, 0.18);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(126, 108, 255, 0.26);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit::before {
  position: absolute;
  inset: -3px;
  border-top: 3px solid rgba(65, 222, 255, 0.85);
  border-right: 3px solid transparent;
  border-bottom: 3px solid rgba(255, 57, 200, 0.88);
  border-left: 3px solid transparent;
  border-radius: inherit;
  content: "";
  filter: drop-shadow(0 0 8px rgba(91, 172, 255, 0.8));
  animation: orbitSpin 12s linear infinite;
}

.orbit span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px 5px rgba(255, 82, 210, 0.85);
}

.orbit--one {
  right: -2%;
  bottom: 5%;
  width: 94%;
  height: 46%;
}

.orbit--two {
  right: 7%;
  bottom: 10%;
  width: 76%;
  height: 36%;
  opacity: 0.72;
  transform: rotate(11deg);
}

.orbit--two::before {
  animation-direction: reverse;
  animation-duration: 9s;
}

.float-coin,
.float-chip {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 950;
  pointer-events: none;
}

.float-coin {
  width: 55px;
  height: 55px;
  border: 4px solid #ffec9f;
  background: radial-gradient(circle at 32% 27%, #fff4a5, #ffbd20 46%, #bb5c00 100%);
  box-shadow: 0 0 30px rgba(255, 178, 39, 0.42), inset 0 0 0 3px rgba(170, 78, 0, 0.3);
  color: #7b3600;
  text-shadow: 0 1px #fff2ad;
}

.float-chip {
  width: 62px;
  height: 62px;
  border: 8px dashed #fff;
  background: radial-gradient(circle, #1b0c4b 0 49%, #8f43ff 51% 100%);
  box-shadow: 0 0 30px rgba(154, 79, 255, 0.54);
  color: var(--gold);
}

.float-coin--one {
  top: 10%;
  right: 7%;
  animation: floatingOne 4.9s ease-in-out infinite;
}

.float-coin--two {
  right: 1%;
  bottom: 26%;
  width: 42px;
  height: 42px;
  border-width: 3px;
  animation: floatingTwo 5.5s ease-in-out infinite;
}

.float-chip--one {
  top: 34%;
  left: 1%;
  animation: floatingTwo 6s ease-in-out infinite;
}

.float-chip--two {
  top: 17%;
  left: 22%;
  width: 42px;
  height: 42px;
  border-width: 5px;
  font-size: 0.75rem;
  animation: floatingOne 4.5s ease-in-out infinite reverse;
}

.bonus-burst {
  position: absolute;
  top: 11%;
  right: -2%;
  z-index: 3;
  display: grid;
  min-width: 135px;
  padding: 19px 18px;
  border: 2px solid #ff64cf;
  border-radius: 24px 8px 24px 8px;
  background: linear-gradient(145deg, rgba(101, 30, 189, 0.9), rgba(255, 54, 192, 0.82));
  box-shadow: 0 0 30px rgba(255, 60, 202, 0.42), inset 0 0 20px rgba(255, 255, 255, 0.12);
  text-align: center;
  transform: rotate(8deg);
  animation: burstPulse 3s ease-in-out infinite;
}

.bonus-burst strong {
  color: var(--gold);
  font-size: 1.28rem;
  letter-spacing: 0.06em;
}

.bonus-burst small {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(110deg, rgba(25, 12, 60, 0.86), rgba(10, 7, 33, 0.9));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 100px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item > span {
  display: grid;
  flex: 0 0 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(161, 100, 255, 0.22);
  border-radius: 14px;
  background: rgba(150, 68, 255, 0.09);
  font-size: 1.35rem;
}

.trust-item div {
  display: grid;
}

.trust-item strong {
  font-size: 0.97rem;
}

.trust-item small {
  margin-top: 3px;
  color: #9e96b3;
  font-size: 0.76rem;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.icon-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 9, 43, 0.8);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.icon-button:hover {
  border-color: var(--pink-soft);
  background: rgba(87, 31, 144, 0.35);
  transform: translateY(-2px);
}

.bonus-track {
  display: grid;
  grid-auto-columns: minmax(330px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.bonus-track::-webkit-scrollbar {
  display: none;
}

.bonus-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  scroll-snap-align: start;
  isolation: isolate;
  box-shadow: 0 25px 60px rgba(2, 0, 15, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.bonus-card::before,
.bonus-card::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(3px);
}

.bonus-card::before {
  top: -45%;
  right: -12%;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.15);
}

.bonus-card::after {
  bottom: -55%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(11, 4, 40, 0.28);
}

.bonus-card--pink {
  background: linear-gradient(125deg, #8011a1 0%, #dc1d8c 54%, #ff5d8c 100%);
}

.bonus-card--blue {
  background: linear-gradient(125deg, #153bb7 0%, #214ccf 48%, #6740e9 100%);
}

.bonus-card--orange {
  background: linear-gradient(125deg, #8a175f 0%, #ca1f72 50%, #f66d38 100%);
}

.bonus-card__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 33px 0 33px 34px;
}

.bonus-card__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(20, 6, 40, 0.22);
  color: #fff;
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bonus-card h3 {
  margin-bottom: 13px;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
}

.bonus-card h3 strong {
  color: #ffe35d;
  font-size: 1.23em;
}

.bonus-card p {
  max-width: 260px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.bonus-card img {
  position: absolute;
  right: -12%;
  bottom: -12%;
  z-index: 2;
  width: 61%;
  height: 82%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 24px rgba(25, 1, 50, 0.28));
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bonus-card:hover img {
  transform: translateY(-7px) rotate(2deg) scale(1.045);
}

.terms-note {
  margin: 18px 0 0;
  color: #7f778f;
  font-size: 0.76rem;
  text-align: center;
}

.games-section::before {
  position: absolute;
  inset: 7% 0 auto;
  z-index: -1;
  height: 620px;
  background: linear-gradient(180deg, rgba(92, 40, 185, 0.08), transparent);
  content: "";
  pointer-events: none;
}

.section-heading--games {
  align-items: center;
}

.game-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 9, 43, 0.7);
  color: #aaa1bb;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: rgba(255, 113, 218, 0.46);
  background: linear-gradient(100deg, rgba(137, 62, 255, 0.33), rgba(255, 72, 195, 0.26));
  color: #fff;
  transform: translateY(-1px);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.game-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: #1b0b48;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.game-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.16), transparent 30%);
  content: "";
}

.game-card:hover {
  border-color: rgba(238, 133, 255, 0.42);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.42), 0 0 28px rgba(129, 68, 255, 0.12);
  transform: translateY(-8px);
}

.game-card[hidden] {
  display: none;
}

.game-card--violet { background: linear-gradient(145deg, #160a42, #4e1379 56%, #111134); }
.game-card--gold { background: linear-gradient(145deg, #30140c, #744414 52%, #1b0b36); }
.game-card--rose { background: linear-gradient(145deg, #2f0a2d, #751342 54%, #1b0d38); }
.game-card--cyan { background: linear-gradient(145deg, #091a3b, #0c526e 50%, #1f0f55); }
.game-card--blue { background: linear-gradient(145deg, #081d4f, #164bad 50%, #21105b); }
.game-card--magenta { background: linear-gradient(145deg, #260b4a, #911755 52%, #24105e); }

.game-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 82%;
  object-fit: contain;
  object-position: center 18%;
  filter: drop-shadow(0 16px 22px rgba(6, 0, 24, 0.35));
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.game-card:hover img {
  transform: scale(1.055) translateY(-5px);
}

.game-card:nth-child(3) img {
  height: 86%;
  object-position: center 5%;
}

.game-card:nth-child(6) img {
  width: 83%;
  height: 91%;
  right: -4%;
  left: auto;
  object-position: center 9%;
}

.game-card__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 31%, rgba(9, 3, 28, 0.18) 54%, rgba(8, 3, 25, 0.95) 84%);
}

.game-card__badges {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 7px;
}

.game-card__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(10, 5, 31, 0.48);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.game-card__badges span:first-child {
  background: linear-gradient(100deg, rgba(255, 71, 174, 0.88), rgba(133, 53, 255, 0.86));
}

.game-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  padding: 26px 24px 23px;
}

.game-card__body p {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-card__body h3 {
  margin-bottom: 17px;
  font-size: 1.5rem;
}

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 41px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(3px);
}

.play-button span {
  color: var(--gold);
  font-size: 0.72rem;
}

.tournament {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(205, 136, 255, 0.25);
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 75, 207, 0.22), transparent 26%),
    radial-gradient(circle at 60% 85%, rgba(44, 157, 255, 0.2), transparent 34%),
    linear-gradient(120deg, #14083a 0%, #241064 46%, #4a126b 100%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tournament::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, transparent 15%, #000 55%, #000);
}

.tournament__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 54px;
}

.tournament__copy h2 {
  margin-bottom: 18px;
}

.tournament__copy p {
  max-width: 530px;
  margin-bottom: 25px;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.countdown > div {
  display: grid;
  min-width: 74px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 4, 30, 0.36);
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown strong {
  font-size: 1.35rem;
  line-height: 1;
}

.countdown span {
  margin-top: 5px;
  color: #aaa1c1;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.tournament__prize {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 40px;
  text-align: center;
}

.tournament__prize::before {
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 211, 92, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 92, 0.18), rgba(255, 65, 202, 0.08) 47%, transparent 68%);
  box-shadow: 0 0 70px rgba(255, 72, 211, 0.2);
  content: "";
  animation: prizePulse 4s ease-in-out infinite;
}

.tournament__prize > span {
  color: #d6ceeb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tournament__prize strong {
  margin: 8px 0;
  background: linear-gradient(90deg, #fff0a0, #ffb734, #fff4b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-shadow: 0 0 34px rgba(255, 199, 61, 0.2);
}

.tournament__prize small {
  color: #b8afd0;
}

.trophy {
  margin-top: 23px;
  font-size: 4.8rem;
  filter: drop-shadow(0 15px 18px rgba(5, 0, 24, 0.45));
  animation: trophyFloat 4.6s ease-in-out infinite;
}

.tournament__beam {
  position: absolute;
  z-index: 1;
  top: -60%;
  right: 8%;
  width: 160px;
  height: 900px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(22deg);
  animation: beam 7s linear infinite;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 225px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(25, 13, 60, 0.78), rgba(12, 7, 34, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card::after {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 80, 255, 0.22), transparent 70%);
  content: "";
}

.feature-card:hover {
  border-color: rgba(226, 137, 255, 0.36);
  background: linear-gradient(145deg, rgba(39, 19, 89, 0.92), rgba(16, 8, 43, 0.96));
  transform: translateY(-5px);
}

.feature-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(180, 101, 255, 0.24);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(151, 71, 255, 0.19), rgba(255, 79, 201, 0.08));
  box-shadow: 0 0 25px rgba(143, 65, 255, 0.12);
  font-size: 1.6rem;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
}

.mobile-showcase {
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(56, 22, 121, 0.08), transparent);
}

.mobile-showcase__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
}

.phone-stage::before {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 73, 255, 0.24), rgba(53, 141, 255, 0.11) 45%, transparent 70%);
  content: "";
  filter: blur(7px);
}

.phone {
  position: relative;
  z-index: 3;
  width: 328px;
  height: 650px;
  padding: 11px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 52px;
  background: linear-gradient(145deg, #3a2460, #0b071d 38%, #29114e);
  box-shadow: 0 45px 90px rgba(2, 0, 16, 0.56), 0 0 60px rgba(126, 56, 255, 0.25), inset 0 0 0 2px rgba(0, 0, 0, 0.45);
  transform: rotate(-4deg);
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone::before,
.phone::after {
  position: absolute;
  left: -5px;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: #684492;
  content: "";
}

.phone::before {
  top: 116px;
  height: 55px;
}

.phone::after {
  top: 188px;
  height: 82px;
}

.phone__speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 5;
  width: 100px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #070512;
  transform: translateX(-50%);
}

.phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 70% 13%, rgba(122, 66, 255, 0.25), transparent 25%),
    linear-gradient(180deg, #09051c, #110629 100%);
}

.mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 18px 12px;
  color: #a69cb9;
  font-size: 0.62rem;
}

.mini-logo {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  font-weight: 950;
}

.mini-hero {
  position: relative;
  display: flex;
  min-height: 180px;
  margin: 4px 13px 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 21px;
  background: linear-gradient(135deg, #411776, #b61d89 52%, #ff7b58);
}

.mini-hero div {
  position: relative;
  z-index: 3;
  width: 58%;
  padding: 26px 0 20px 18px;
}

.mini-hero small {
  display: block;
  margin-bottom: 8px;
  color: #ffe76d;
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-hero strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.mini-hero img {
  position: absolute;
  right: -26px;
  bottom: -40px;
  width: 65%;
  max-width: none;
}

.mini-title {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 10px;
  font-size: 0.66rem;
}

.mini-title span {
  color: #a69bb7;
}

.mini-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 0 13px;
}

.mini-games div {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: linear-gradient(145deg, #29105a, #5c177d);
  font-size: 2rem;
}

.mini-games div:nth-child(2) {
  background: linear-gradient(145deg, #3b1e08, #8c561a);
}

.mini-games div:nth-child(3) {
  background: linear-gradient(145deg, #0a254d, #19588b);
}

.mini-nav {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 60px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background: rgba(19, 8, 47, 0.94);
  color: #8d83a3;
  text-align: center;
  backdrop-filter: blur(10px);
}

.mini-nav__main {
  display: grid;
  width: 44px;
  height: 44px;
  margin: -19px auto 0;
  place-items: center;
  border: 4px solid #100727;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 0 20px rgba(205, 64, 255, 0.4);
}

.phone-orb {
  position: absolute;
  z-index: 4;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7ae, #ffbc28 47%, #9d3b00);
  box-shadow: 0 0 30px rgba(255, 185, 40, 0.4);
}

.phone-orb--one {
  top: 14%;
  right: 8%;
  width: 44px;
  height: 44px;
  animation: floatingOne 5s ease-in-out infinite;
}

.phone-orb--two {
  bottom: 17%;
  left: 4%;
  width: 31px;
  height: 31px;
  animation: floatingTwo 4.7s ease-in-out infinite;
}

.mobile-showcase__copy h2 {
  max-width: 680px;
  margin-bottom: 22px;
}

.mobile-showcase__copy > p {
  max-width: 700px;
  margin-bottom: 25px;
  font-size: 1.03rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #ded7ed;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(101, 236, 174, 0.32);
  border-radius: 50%;
  background: rgba(101, 236, 174, 0.08);
  color: var(--success);
  font-size: 0.73rem;
  font-weight: 900;
  content: "✓";
}

.payments {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(24, 12, 57, 0.82), rgba(10, 6, 30, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.payments__heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.payment-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(75px, 1fr));
  gap: 10px;
}

.payment-row > span {
  display: grid;
  min-height: 98px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(164, 105, 255, 0.17);
  border-radius: 17px;
  background: rgba(32, 17, 72, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.payment-row > span:hover {
  border-color: rgba(232, 143, 255, 0.36);
  background: rgba(48, 23, 101, 0.86);
  transform: translateY(-4px);
}

.payment-row b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 190, 52, 0.24), rgba(133, 63, 255, 0.25));
  color: #fff;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.payment-row small {
  margin-top: 8px;
  color: #a99fba;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(40px, 7vw, 95px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.faq-intro h2 {
  margin-bottom: 19px;
}

.faq-intro p {
  margin-bottom: 25px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(18, 9, 44, 0.72);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(223, 134, 255, 0.34);
  background: rgba(27, 12, 61, 0.88);
}

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #f8f6fc;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item > button i {
  display: grid;
  flex: 0 0 33px;
  height: 33px;
  place-items: center;
  border: 1px solid rgba(179, 113, 255, 0.25);
  border-radius: 50%;
  background: rgba(135, 57, 255, 0.08);
  color: var(--pink-soft);
  font-style: normal;
  font-size: 1.3rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.is-open > button i {
  background: rgba(255, 79, 201, 0.12);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 21px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.responsible {
  padding: 24px 0 70px;
}

.responsible__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 25px 28px;
  border: 1px solid rgba(255, 114, 148, 0.22);
  border-radius: 24px;
  background: linear-gradient(110deg, rgba(77, 17, 48, 0.38), rgba(20, 8, 45, 0.72));
}

.responsible__inner > strong {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 2px solid rgba(255, 120, 157, 0.48);
  border-radius: 50%;
  color: #ff8dab;
  font-size: 1.45rem;
}

.responsible h2 {
  margin-bottom: 5px;
  font-size: 1.35rem;
}

.responsible p {
  margin: 0;
  font-size: 0.84rem;
}

.responsible a {
  color: #ffc0d1;
  font-size: 0.84rem;
  font-weight: 800;
}

.site-footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(6, 3, 18, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 34px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: 0.82rem;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid h3 {
  margin-bottom: 5px;
  font-size: 0.89rem;
  letter-spacing: 0;
}

.footer-grid a,
.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8f879f;
  font-size: 0.78rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-grid a:hover,
.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(160, 105, 255, 0.11);
  color: #6e687b;
  font-size: 0.72rem;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 900;
  display: none;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(190, 118, 255, 0.25);
  border-radius: 19px;
  background: rgba(12, 6, 31, 0.92);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
}

.mobile-cta a,
.mobile-cta button {
  display: grid;
  min-height: 47px;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #b5acc6;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
}

.mobile-cta button {
  background: linear-gradient(110deg, var(--violet), var(--pink));
  color: #fff;
  box-shadow: 0 0 22px rgba(189, 61, 255, 0.3);
}

.action-modal {
  width: min(92vw, 480px);
  max-width: none;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(223, 141, 255, 0.35);
  border-radius: 28px;
  background: transparent;
  color: #fff;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.7), 0 0 50px rgba(145, 62, 255, 0.22);
}

.action-modal::backdrop {
  background: rgba(3, 1, 11, 0.78);
  backdrop-filter: blur(10px);
}

.modal-shell {
  position: relative;
  display: grid;
  padding: 36px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 80% 5%, rgba(255, 77, 205, 0.18), transparent 32%),
    linear-gradient(145deg, #1c0d46, #0d071f 70%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.modal-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 21px;
  place-items: center;
  border: 1px solid rgba(255, 210, 90, 0.23);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 204, 84, 0.14), rgba(148, 65, 255, 0.15));
  font-size: 2rem;
}

.modal-shell h2 {
  margin-bottom: 10px;
  font-size: 2.15rem;
}

.modal-shell > p {
  margin-bottom: 22px;
  font-size: 0.88rem;
}

.modal-shell label:not(.modal-check) {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #dcd5e8;
  font-size: 0.78rem;
  font-weight: 750;
}

.modal-shell input[type="email"],
.modal-shell input[type="password"] {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(181, 117, 255, 0.2);
  border-radius: 13px;
  outline: none;
  background: rgba(7, 3, 20, 0.66);
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-shell input:focus {
  border-color: rgba(255, 105, 213, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 85, 207, 0.08);
}

.modal-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 20px;
  color: #a9a0b8;
  font-size: 0.8rem;
}

.modal-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
}

.modal-status {
  min-height: 18px;
  margin-top: 12px;
  color: var(--success);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes stars {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 120px 120px, -170px 170px, 210px -210px, -250px -250px; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes mascotFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -13px, 0) rotate(0.7deg); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes floatingOne {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  50% { transform: translate3d(10px, -18px, 0) rotate(12deg); }
}

@keyframes floatingTwo {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); }
  50% { transform: translate3d(-12px, 16px, 0) rotate(-12deg); }
}

@keyframes burstPulse {
  0%, 100% { transform: rotate(8deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.04); }
}

@keyframes prizePulse {
  0%, 100% { transform: scale(0.97); opacity: 0.75; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes trophyFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes beam {
  from { transform: translateX(-480px) rotate(22deg); }
  to { transform: translateX(600px) rotate(22deg); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-14px); }
}

@media (max-width: 1120px) {
  :root {
    --container: 1030px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-actions .button--ghost {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.94fr 1.06fr;
  }

  .hero-art {
    min-height: 570px;
  }

  .hero-art img {
    right: -80px;
    width: 690px;
  }

  .bonus-card {
    min-height: 340px;
  }

  .bonus-card__copy {
    padding-left: 27px;
  }

  .payments {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 74px 0;
  }

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

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

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 55px);
  }

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

  .hero-copy {
    max-width: 760px;
    margin-inline: auto;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-art {
    min-height: 610px;
    margin-top: -40px;
  }

  .hero-art img {
    right: 50%;
    bottom: -35px;
    width: 650px;
    transform: translateX(50%);
    animation-name: mascotFloatCentered;
  }

  .hero-art__glow {
    right: 12%;
    left: 12%;
  }

  .bonus-burst {
    right: 8%;
  }

  .float-coin--one {
    right: 14%;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .bonus-track {
    grid-auto-columns: minmax(520px, 78vw);
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tournament {
    grid-template-columns: 1fr;
  }

  .tournament__copy {
    padding-bottom: 20px;
    text-align: center;
  }

  .tournament__copy p,
  .countdown {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .tournament__prize {
    min-height: 330px;
    padding-top: 0;
  }

  .mobile-showcase__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .phone-stage {
    min-height: 640px;
    order: 2;
  }

  .mobile-showcase__copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .check-list {
    display: inline-grid;
    text-align: left;
  }

  .payment-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 0.7fr);
  }

  @keyframes mascotFloatCentered {
    0%, 100% { transform: translateX(50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(50%) translateY(-13px) rotate(0.7deg); }
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 62px 0;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand__text strong {
    font-size: 0.98rem;
  }

  .brand__text small {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 35px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-art {
    min-height: 500px;
    margin-top: -20px;
  }

  .hero-art img {
    bottom: -22px;
    width: 540px;
  }

  .orbit--one {
    right: -10%;
    width: 120%;
  }

  .orbit--two {
    right: 0;
    width: 100%;
  }

  .bonus-burst {
    top: 11%;
    right: 1%;
    min-width: 112px;
    padding: 13px;
  }

  .bonus-burst strong {
    font-size: 1rem;
  }

  .float-chip--one {
    left: -3%;
  }

  .float-coin--one {
    right: 7%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .section-heading--games {
    display: grid;
    align-items: start;
  }

  .slider-controls {
    display: none;
  }

  .game-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .game-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .bonus-track {
    grid-auto-columns: 88vw;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 6px;
  }

  .bonus-card {
    grid-template-columns: 1fr;
    min-height: 430px;
  }

  .bonus-card__copy {
    justify-content: flex-start;
    padding: 28px 24px 0;
  }

  .bonus-card img {
    right: -4%;
    bottom: -10%;
    width: 70%;
    height: 62%;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 430px;
  }

  .game-card img {
    height: 84%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .tournament__copy {
    padding: 37px 24px 12px;
  }

  .countdown > div {
    min-width: 67px;
    flex: 1 1 64px;
  }

  .tournament__prize {
    min-height: 300px;
    padding: 30px 20px 50px;
  }

  .tournament__prize::before {
    width: 250px;
    height: 250px;
  }

  .phone-stage {
    min-height: 590px;
    transform: scale(0.92);
    margin: -15px 0 -30px;
  }

  .payments {
    padding: 25px;
  }

  .payment-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .responsible__inner {
    grid-template-columns: auto 1fr;
  }

  .responsible__inner a {
    grid-column: 1 / -1;
    padding-left: 92px;
  }

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

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

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 440px) {
  .hero-art {
    min-height: 440px;
  }

  .hero-art img {
    width: 470px;
  }

  .bonus-burst {
    top: 5%;
    right: -3%;
    transform: scale(0.86) rotate(8deg);
  }

  .float-chip--two,
  .float-coin--two {
    display: none;
  }

  .bonus-card {
    min-height: 440px;
  }

  .bonus-card img {
    width: 78%;
  }

  .game-card {
    min-height: 390px;
  }

  .phone-stage {
    min-height: 525px;
    transform: scale(0.8);
    margin: -55px 0 -60px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .responsible__inner {
    padding: 22px;
  }

  .responsible__inner > strong {
    width: 58px;
    height: 58px;
  }

  .responsible__inner a {
    padding-left: 0;
  }

  .modal-shell {
    padding: 30px 22px 24px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Desktop hero framing: keep the mascot's face below the fixed header. */
@media (min-width: 921px) {
  .hero-art {
    min-height: 700px;
  }

  .hero-art img {
    top: -48px;
    right: -38px;
    bottom: auto;
    width: 620px;
  }
}
