:root {
  --ink: #f6f9ff;
  --muted: #9daec4;
  --page: #050b16;
  --navy: #071428;
  --navy-2: #0a1d38;
  --panel: #0d213c;
  --panel-2: #102a4a;
  --line: rgba(141, 181, 225, 0.18);
  --blue: #2387ff;
  --cyan: #35d8ff;
  --lime: #d8ff55;
  --violet: #8068ff;
  --coral: #ff6b73;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 17px;
  --wrap: min(1220px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(35, 135, 255, 0.08), transparent 22rem),
    var(--page);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

::selection {
  color: #07101d;
  background: var(--lime);
}

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

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

button,
input {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
.brand,
.button,
.offer-line,
.offer-amount {
  font-family: "Arial Narrow", Inter, "Segoe UI", Arial, sans-serif;
}

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(2.65rem, 5.6vw, 5.55rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.55vw, 3.55rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.28;
}

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 22, 0.83);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.brand > span:last-child > span {
  color: var(--cyan);
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  transform: rotate(-16deg);
}

.brand-mark i {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(53, 216, 255, 0.65);
}

.brand-mark i:nth-child(1) {
  top: 0;
  left: 8px;
}

.brand-mark i:nth-child(2) {
  right: 0;
  bottom: 2px;
  background: var(--blue);
}

.brand-mark i:nth-child(3) {
  bottom: 0;
  left: 0;
  background: var(--lime);
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  position: relative;
  padding: 10px 15px;
  border-radius: 999px;
  color: #aab9cc;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.nav-menu a[aria-current="page"]::after {
  position: absolute;
  right: 12px;
  bottom: 3px;
  left: 12px;
  height: 2px;
  border-radius: 3px;
  content: "";
  background: var(--cyan);
}

.menu-toggle {
  display: none;
  border: 0;
  color: white;
  background: transparent;
}

.button {
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #07101d;
  background: linear-gradient(110deg, var(--lime), #aaf66d);
  box-shadow: 0 12px 30px rgba(181, 255, 82, 0.13);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button span {
  font-size: 1.15em;
}

.button:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 18px 38px rgba(181, 255, 82, 0.22);
}

.button-small {
  min-height: 42px;
  padding: 11px 17px;
  border-radius: 11px;
  font-size: 0.86rem;
}

.button-light {
  color: #07101d;
  background: white;
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.text-link span {
  color: var(--cyan);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.kicker {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(216, 255, 85, 0.8);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 750px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 44%, rgba(35, 135, 255, 0.26), transparent 25%),
    radial-gradient(circle at 32% 15%, rgba(128, 104, 255, 0.15), transparent 28%),
    linear-gradient(135deg, #061120 0%, #07172d 56%, #061020 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(53, 216, 255, 0.3) 0 1px, transparent 1.5px);
  background-position: 0 0, 32px 38px;
  background-size: 92px 92px, 132px 132px;
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}

.hero-grid {
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.25;
  background:
    linear-gradient(rgba(53, 216, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 216, 255, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(600px) rotateX(68deg) rotateZ(-18deg);
  mask-image: radial-gradient(circle, black 10%, transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  padding-block: 88px 118px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
}

.hero-copy {
  max-width: 730px;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-copy h1::first-line {
  color: white;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: #becde0;
  font-size: 1.08rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-points {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  gap: 18px 24px;
  flex-wrap: wrap;
  list-style: none;
  color: #aebed2;
  font-size: 0.82rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points i {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(216, 255, 85, 0.45);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--lime);
  font-style: normal;
  font-size: 0.66rem;
}

.offer-stage {
  position: relative;
  min-height: 475px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.offer-stage::before {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(53, 216, 255, 0.17);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 100px rgba(35, 135, 255, 0.25),
    inset 0 0 80px rgba(35, 135, 255, 0.06);
}

.offer-orbit {
  position: absolute;
  border: 1px solid rgba(216, 255, 85, 0.26);
  border-radius: 50%;
}

.offer-orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

.orbit-one {
  width: 470px;
  height: 270px;
  animation: orbit-drift 11s linear infinite;
}

.orbit-two {
  width: 285px;
  height: 460px;
  border-color: rgba(53, 216, 255, 0.22);
  animation: orbit-drift 14s linear infinite reverse;
}

@keyframes orbit-drift {
  to {
    transform: rotate(360deg);
  }
}

.offer-card {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  padding: 34px;
  border: 1px solid rgba(119, 180, 255, 0.33);
  border-radius: 30px 10px 30px 10px;
  background:
    linear-gradient(145deg, rgba(18, 51, 89, 0.94), rgba(8, 22, 44, 0.97));
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px rgba(255, 255, 255, 0.09);
  transform: translateZ(36px);
  backdrop-filter: blur(15px);
}

.offer-card::before {
  position: absolute;
  top: -1px;
  left: 28px;
  width: 86px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--lime), transparent);
}

.offer-label {
  margin-bottom: 18px;
  color: #a9bfd8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-line {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.offer-line span {
  padding-bottom: 14px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.offer-line b {
  font-size: clamp(4.2rem, 7vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.offer-amount {
  margin-top: 9px;
  color: var(--lime);
  font-size: 1.52rem;
  font-weight: 800;
}

.offer-spins {
  margin-block: 18px 25px;
  padding-block: 16px;
  border-block: 1px solid var(--line);
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
}

.offer-spins i {
  color: var(--cyan);
  font-style: normal;
}

.offer-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--lime);
  font-weight: 800;
}

.offer-card small {
  margin-top: 12px;
  display: block;
  color: #70869f;
  font-size: 0.68rem;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 20, 40, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-chip b {
  color: var(--cyan);
  font-size: 1.25rem;
}

.floating-chip span {
  max-width: 54px;
  color: #9fb0c5;
  font-size: 0.66rem;
  line-height: 1.25;
}

.chip-a {
  top: 30px;
  right: -12px;
  animation: float-chip 5s ease-in-out infinite;
}

.chip-b {
  bottom: 35px;
  left: -25px;
  animation: float-chip 5s 1.7s ease-in-out infinite;
}

@keyframes float-chip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  background: rgba(4, 10, 20, 0.54);
}

.hero-marquee div {
  width: max-content;
  padding-block: 15px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #6f839c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  animation: marquee 24s linear infinite;
}

.hero-marquee i {
  color: var(--blue);
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.quick-dock {
  position: relative;
  z-index: 5;
  margin-top: -45px;
  border: 1px solid rgba(148, 187, 231, 0.19);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: rgba(9, 25, 48, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-dock a {
  min-height: 112px;
  padding: 23px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  transition: background 0.2s ease;
}

.quick-dock a + a {
  border-left: 1px solid var(--line);
}

.quick-dock a:hover {
  background: rgba(35, 135, 255, 0.12);
}

.quick-dock i {
  color: var(--cyan);
  font-style: normal;
  font-size: 0.67rem;
  font-weight: 800;
}

.quick-dock span {
  display: grid;
  color: #7f93ab;
  font-size: 0.72rem;
  line-height: 1.45;
}

.quick-dock b {
  color: white;
  font-size: 0.91rem;
}

.quick-dock em {
  color: var(--lime);
  font-style: normal;
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .kicker {
  justify-content: center;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: end;
  gap: 70px;
}

.split-heading > div > h2 {
  margin-bottom: 0;
}

.split-heading > div:last-child p,
.split-heading > p {
  margin-bottom: 17px;
}

.overview-shell {
  padding-block: 135px 125px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.editorial-heading {
  position: sticky;
  top: 120px;
}

.editorial-heading h2 {
  font-size: clamp(2rem, 3.25vw, 3.2rem);
}

.fact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(17, 46, 80, 0.88), rgba(7, 19, 37, 0.9));
  box-shadow: var(--shadow);
}

.fact-panel-head {
  padding: 17px 21px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: white;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-panel-head i {
  color: var(--lime);
  font-style: normal;
  font-size: 0.63rem;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: #dbe6f5;
  font-size: 0.88rem;
}

th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

th {
  color: white;
  font-weight: 700;
}

thead th {
  color: var(--cyan);
  background: rgba(35, 135, 255, 0.09);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr {
  transition: background 0.2s ease;
}

tbody tr:hover {
  background: rgba(53, 216, 255, 0.035);
}

.fact-panel tbody th {
  width: 34%;
}

.table-note {
  margin: 0;
  padding: 15px 20px;
  border-top: 1px solid var(--line);
  color: #71879f;
  font-size: 0.72rem;
}

.game-routes {
  padding-block: 115px;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 52% 105%, rgba(35, 135, 255, 0.2), transparent 32rem),
    #081326;
}

.route-list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 17px;
}

.route {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 9px 30px 9px 30px;
  display: flex;
  flex-direction: column;
  color: white;
  background: linear-gradient(145deg, rgba(16, 42, 74, 0.76), rgba(6, 17, 33, 0.84));
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.route:hover {
  border-color: rgba(53, 216, 255, 0.45);
  background: linear-gradient(145deg, rgba(22, 59, 103, 0.9), rgba(7, 22, 43, 0.9));
  transform: translateY(-8px);
}

.route-featured {
  background:
    radial-gradient(circle at 70% 0%, rgba(216, 255, 85, 0.18), transparent 15rem),
    linear-gradient(145deg, rgba(27, 75, 124, 0.88), rgba(9, 28, 55, 0.9));
}

.route-number {
  align-self: flex-end;
  color: #60758e;
  font-size: 0.7rem;
  font-weight: 800;
}

.route-icon {
  width: 64px;
  height: 64px;
  margin-block: 24px 35px;
  border: 1px solid rgba(53, 216, 255, 0.24);
  border-radius: 20px 8px 20px 8px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(53, 216, 255, 0.08);
  font-size: 1.65rem;
}

.route p {
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route h3 {
  font-size: 1.55rem;
}

.route div > span {
  display: block;
  color: #91a4ba;
  font-size: 0.88rem;
}

.route em {
  margin-top: auto;
  padding-top: 26px;
  color: white;
  font-style: normal;
  font-weight: 700;
  font-size: 0.84rem;
}

.slots-showcase {
  padding-block: 125px 135px;
}

.slot-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.slot-card {
  min-width: 0;
  border: 1px solid rgba(141, 181, 225, 0.16);
  border-radius: 16px;
  overflow: hidden;
  color: white;
  background: #0a172a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.slot-card:hover {
  z-index: 3;
  border-color: rgba(53, 216, 255, 0.55);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36), 0 0 35px rgba(35, 135, 255, 0.12);
}

.slot-card::after {
  position: absolute;
  inset: 0;
  opacity: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.17), transparent 65%);
  transform: translateX(-100%);
  transition: opacity 0.2s ease, transform 0.65s ease;
}

.slot-card:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #0d213c;
}

.slot-card > span {
  min-height: 88px;
  padding: 13px 13px 14px;
  display: flex;
  flex-direction: column;
}

.slot-card b {
  font-size: 0.77rem;
  line-height: 1.25;
}

.slot-card small {
  margin-top: auto;
  color: #72869f;
  font-size: 0.65rem;
}

.bonus-lab {
  position: relative;
  padding-block: 130px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 50%, rgba(128, 104, 255, 0.2), transparent 26rem),
    linear-gradient(135deg, #0a1730, #071325 62%, #081a30);
}

.bonus-lab::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, transparent 49.8%, rgba(53, 216, 255, 0.22) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(53, 216, 255, 0.18) 50%, transparent 50.2%);
  background-size: 80px 80px;
}

.bonus-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.wheel-console {
  position: relative;
  min-height: 545px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wheel-halo {
  position: absolute;
  width: 510px;
  height: 510px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 135, 255, 0.25), transparent 66%);
  filter: blur(4px);
}

.css-wheel {
  position: relative;
  width: min(420px, 86vw);
  aspect-ratio: 1;
  border: 18px solid #102e54;
  border-radius: 50%;
  background:
    conic-gradient(
      var(--blue) 0 60deg,
      var(--violet) 60deg 120deg,
      var(--cyan) 120deg 180deg,
      #1554aa 180deg 240deg,
      #6f57db 240deg 300deg,
      #0aa6ca 300deg 360deg
    );
  box-shadow:
    0 0 0 8px #071428,
    0 0 0 10px rgba(53, 216, 255, 0.35),
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 70px rgba(35, 135, 255, 0.22);
  transition: transform 3.3s cubic-bezier(0.15, 0.78, 0.12, 1);
}

.css-wheel::after {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  content: "";
}

.css-wheel.spinning {
  transform: rotate(1440deg);
}

.wheel-pointer {
  position: absolute;
  z-index: 6;
  top: -40px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 44px solid var(--lime);
  filter: drop-shadow(0 7px 10px rgba(216, 255, 85, 0.3));
  transform: translateX(-50%);
}

.wheel-center {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 12px solid #09203a;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  color: #07101d;
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.wheel-center b {
  font-size: 1.24rem;
}

.wheel-center small {
  font-size: 0.58rem;
}

.prize {
  position: absolute;
  z-index: 2;
  color: white;
  font-family: "Arial Narrow", Inter, "Segoe UI", Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.prize-one {
  top: 17%;
  left: 57%;
}

.prize-two {
  top: 45%;
  right: 12%;
}

.prize-three {
  right: 25%;
  bottom: 14%;
}

.prize-four {
  bottom: 17%;
  left: 30%;
}

.prize-five {
  top: 48%;
  left: 10%;
}

.prize-six {
  top: 16%;
  left: 28%;
}

.wheel-demo {
  position: relative;
  z-index: 3;
  margin-top: 36px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: white;
  background: rgba(7, 20, 40, 0.7);
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 700;
}

.wheel-console > small {
  position: relative;
  z-index: 3;
  margin-top: 9px;
  color: #657a93;
  font-size: 0.62rem;
}

.bonus-copy h2 {
  font-size: clamp(2.15rem, 3.7vw, 3.75rem);
}

.reward-ledger {
  margin-block: 32px;
  border-block: 1px solid var(--line);
}

.reward-ledger > div {
  padding-block: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 18px;
}

.reward-ledger > div + div {
  border-top: 1px solid var(--line);
}

.reward-ledger span {
  color: #71869f;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.reward-ledger b {
  color: white;
  font-size: 1.14rem;
}

.reward-ledger i {
  color: var(--cyan);
  font-style: normal;
  font-size: 0.66rem;
}

.compact-steps {
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
  counter-reset: bonus-steps;
}

.compact-steps li {
  position: relative;
  padding-left: 46px;
  display: grid;
  counter-increment: bonus-steps;
}

.compact-steps li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(53, 216, 255, 0.32);
  border-radius: 9px;
  display: grid;
  place-items: center;
  content: counter(bonus-steps);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
}

.compact-steps b {
  color: white;
  font-size: 0.88rem;
}

.compact-steps span {
  color: #899db5;
  font-size: 0.78rem;
}

.payments-section {
  padding-block: 130px;
}

.payment-logo-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0b1b32;
}

.payment-logo-grid > div {
  min-height: 116px;
  padding: 16px 10px;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.payment-logo-grid > div + div {
  border-left: 1px solid var(--line);
}

.payment-logo-grid > div:hover {
  background: rgba(53, 216, 255, 0.07);
}

.payment-logo-grid img {
  width: auto;
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}

.payment-content {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 24px;
  align-items: stretch;
}

.payment-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(9, 25, 48, 0.66);
}

.verification-note {
  padding: 28px;
  border: 1px solid rgba(216, 255, 85, 0.18);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 0, rgba(216, 255, 85, 0.11), transparent 11rem),
    #0c2039;
}

.verification-note > span {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #07101d;
  background: var(--lime);
  font-size: 1.2rem;
  font-weight: 800;
}

.verification-note p {
  font-size: 0.86rem;
}

.verification-note ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #9fb1c5;
  font-size: 0.78rem;
}

.mobile-band {
  padding-block: 120px;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 60%, rgba(53, 216, 255, 0.16), transparent 25rem),
    #081326;
}

.mobile-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.mobile-visual {
  position: relative;
  min-height: 430px;
}

.device {
  position: absolute;
  border: 1px solid rgba(141, 181, 225, 0.27);
  background: #0b1b33;
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.38);
}

.device > span {
  height: 28px;
  border-bottom: 1px solid var(--line);
  display: block;
  background:
    radial-gradient(circle at 16px 14px, var(--coral) 0 3px, transparent 4px),
    radial-gradient(circle at 29px 14px, var(--lime) 0 3px, transparent 4px),
    radial-gradient(circle at 42px 14px, var(--cyan) 0 3px, transparent 4px);
}

.desktop-device {
  top: 42px;
  left: 0;
  width: 84%;
  height: 315px;
  border-radius: 18px;
  transform: rotate(-4deg);
}

.phone-device {
  z-index: 3;
  right: 2%;
  bottom: 18px;
  width: 175px;
  height: 340px;
  border: 7px solid #0f2a4a;
  border-radius: 31px;
  transform: rotate(7deg);
}

.phone-device > span {
  border-radius: 24px 24px 0 0;
}

.screen-grid {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.screen-grid i {
  aspect-ratio: 0.75;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(53, 216, 255, 0.35), rgba(128, 104, 255, 0.1)),
    #102d50;
}

.screen-grid i:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(216, 255, 85, 0.25), rgba(35, 135, 255, 0.1)),
    #102d50;
}

.phone-device .screen-grid {
  padding: 25px 16px;
  grid-template-columns: repeat(2, 1fr);
}

.signal-ring {
  position: absolute;
  border: 1px solid rgba(53, 216, 255, 0.2);
  border-radius: 50%;
  animation: pulse-ring 3s ease-out infinite;
}

.signal-one {
  top: 0;
  right: 0;
  width: 190px;
  height: 190px;
}

.signal-two {
  right: 45px;
  bottom: 0;
  width: 250px;
  height: 250px;
  animation-delay: 1.4s;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

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

.check-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 13px;
}

.check-list i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #07101d;
  background: var(--lime);
  font-style: normal;
  font-weight: 800;
}

.check-list span {
  display: grid;
  color: #8fa2b9;
  font-size: 0.8rem;
}

.check-list b {
  color: white;
  font-size: 0.92rem;
}

.faq-section {
  padding-block: 125px 135px;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(50px, 8vw, 115px);
  align-items: start;
}

.faq-title {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: white;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(53, 216, 255, 0.28);
  border-radius: 50%;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--cyan);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary span {
  color: #07101d;
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin-bottom: 24px;
  padding-right: 50px;
  font-size: 0.9rem;
}

.closing-cta {
  position: relative;
  padding-block: 74px;
  overflow: hidden;
  color: #061020;
  background: var(--cyan);
}

.closing-cta::after {
  position: absolute;
  right: -100px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 75px solid rgba(7, 20, 40, 0.08);
  border-radius: 50%;
  content: "";
}

.closing-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.closing-layout p {
  margin-bottom: 10px;
  color: rgba(7, 20, 40, 0.65);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.closing-layout h2 {
  max-width: 800px;
  margin: 0;
  color: #061020;
  font-size: clamp(2rem, 3.7vw, 3.75rem);
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  display: inline-block;
  background: #061020;
}

.site-footer {
  padding-top: 72px;
  background: #030813;
}

.footer-top {
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1fr;
  gap: 70px;
}

.footer-brand p {
  max-width: 500px;
  margin: 22px 0 0;
  font-size: 0.8rem;
}

.footer-top h3 {
  margin-bottom: 18px;
  color: #6f849e;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-top > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-top a:not(.brand),
.footer-top span {
  color: #9caec3;
  font-size: 0.8rem;
}

.footer-top a:not(.brand):hover {
  color: var(--cyan);
}

.footer-bottom {
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #61758d;
  font-size: 0.7rem;
}

/* Internal pages */

.inner-hero {
  position: relative;
  padding-block: 90px 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 80% 25%, rgba(35, 135, 255, 0.2), transparent 26rem),
    linear-gradient(145deg, #061120, #081a31);
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(53, 216, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 216, 255, 0.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent 20%, black);
}

.inner-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: clamp(55px, 9vw, 125px);
}

.inner-hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
}

.inner-hero .hero-lead {
  margin-bottom: 30px;
}

.breadcrumb {
  margin-bottom: 28px;
  display: flex;
  gap: 10px;
  color: #6f849e;
  font-size: 0.72rem;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.access-panel {
  padding: 28px;
  border: 1px solid rgba(115, 178, 255, 0.32);
  border-radius: 10px 30px 10px 30px;
  background: rgba(8, 28, 53, 0.88);
  box-shadow: var(--shadow);
}

.access-panel-head {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.access-panel-head b {
  font-size: 0.9rem;
}

.access-panel-head span {
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.ui-field {
  margin-bottom: 13px;
}

.ui-field label {
  margin-bottom: 7px;
  display: block;
  color: #8da2ba;
  font-size: 0.68rem;
  font-weight: 700;
}

.ui-field input {
  width: 100%;
  min-height: 51px;
  padding-inline: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #8599b1;
  background: rgba(4, 13, 27, 0.52);
}

.access-panel .button {
  width: 100%;
  margin-top: 9px;
}

.ui-subline {
  margin: 16px 0 0;
  text-align: center;
  color: #6d8198;
  font-size: 0.68rem;
}

.content-section {
  padding-block: 115px;
}

.content-section.compact-top {
  padding-top: 80px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.content-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(10, 28, 52, 0.72);
}

.content-card p:last-child,
.content-card ul:last-child,
.content-card ol:last-child {
  margin-bottom: 0;
}

.timeline {
  margin: 45px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: timeline;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 75px 24px 0 0;
  border-top: 1px solid var(--line);
  counter-increment: timeline;
}

.timeline li::before {
  position: absolute;
  top: -22px;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(53, 216, 255, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  content: counter(timeline, decimal-leading-zero);
  color: var(--cyan);
  background: var(--page);
  font-size: 0.7rem;
  font-weight: 800;
}

.timeline li::after {
  position: absolute;
  top: -4px;
  left: 42px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 13px var(--lime);
}

.timeline b {
  margin-bottom: 9px;
  display: block;
  color: white;
}

.timeline span {
  color: #8398b0;
  font-size: 0.81rem;
}

.info-list {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.info-list li {
  padding-block: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: #9cafc3;
  font-size: 0.84rem;
}

.info-list li i {
  color: var(--lime);
  font-style: normal;
}

.callout {
  padding: 24px 27px;
  border: 1px solid rgba(216, 255, 85, 0.2);
  border-left: 4px solid var(--lime);
  border-radius: 12px;
  color: #a9b9cc;
  background: rgba(216, 255, 85, 0.05);
  font-size: 0.87rem;
}

.callout b {
  color: white;
}

.callout-gap {
  margin-top: 28px;
}

.actions-centered {
  justify-content: center;
}

.inner-cta {
  padding-block: 70px;
  background: linear-gradient(110deg, #0d55a7, #136be0 55%, #0aa9d1);
}

.inner-cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.inner-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.inner-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.bonus-hero .inner-hero-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.mini-wheel-wrap {
  min-height: 465px;
  display: grid;
  place-items: center;
}

.mini-wheel-wrap .css-wheel {
  width: min(380px, 80vw);
}

.prize-cards {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prize-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px 8px 22px 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #102c4d, #091b32);
}

.prize-card::after {
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(53, 216, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.prize-card > span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.prize-card b {
  margin-block: 24px 12px;
  display: block;
  font-family: "Arial Narrow", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 2.35rem;
}

.prize-card p {
  margin: 0;
  font-size: 0.82rem;
}

.terms-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: start;
}

.terms-index {
  position: sticky;
  top: 110px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0a1a31;
}

.terms-index a {
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #9cb0c6;
  font-size: 0.82rem;
}

.terms-index a:last-child {
  border-bottom: 0;
}

.terms-index a:hover {
  color: var(--cyan);
}

.prose-block + .prose-block {
  margin-top: 44px;
}

.prose-block h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.6rem);
}

.slots-hero {
  min-height: 615px;
}

.slots-hero-layout {
  min-height: 445px;
}

.slot-fan {
  position: relative;
  min-height: 450px;
  perspective: 900px;
}

.slot-fan img {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 170px;
  aspect-ratio: 2 / 3;
  border: 6px solid #0c2442;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.48);
  transform-origin: 50% 110%;
}

.slot-fan img:nth-child(1) {
  z-index: 1;
  transform: translateX(-130%) rotate(-19deg) translateY(35px);
}

.slot-fan img:nth-child(2) {
  z-index: 2;
  transform: translateX(-88%) rotate(-10deg) translateY(10px);
}

.slot-fan img:nth-child(3) {
  z-index: 5;
  transform: translateX(-50%) translateY(-8px);
}

.slot-fan img:nth-child(4) {
  z-index: 2;
  transform: translateX(-12%) rotate(10deg) translateY(10px);
}

.slot-fan img:nth-child(5) {
  z-index: 1;
  transform: translateX(30%) rotate(19deg) translateY(35px);
}

.catalogue-toolbar {
  margin: 45px 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #9db0c6;
  background: rgba(11, 30, 55, 0.7);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--cyan);
  color: #07101d;
  background: var(--cyan);
}

.catalogue-grid .slot-card.is-hidden {
  display: none;
}

.category-table {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(9, 25, 48, 0.64);
}

.not-found {
  min-height: calc(100vh - 76px);
  padding-block: 80px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(35, 135, 255, 0.28), transparent 24rem),
    #061120;
}

.not-found-code {
  margin-bottom: 10px;
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), var(--blue), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Arial Narrow", Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(7rem, 20vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.not-found p {
  max-width: 580px;
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto auto 1fr auto;
  }

  .menu-toggle {
    width: 44px;
    height: 42px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-content: center;
    gap: 4px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    background: white;
  }

  .menu-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 15, 30, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    text-align: center;
  }

  .hero-layout,
  .inner-hero-layout {
    grid-template-columns: 1fr 0.8fr;
    gap: 35px;
  }

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

  .quick-dock a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .quick-dock a:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .route-list {
    grid-template-columns: 1fr;
  }

  .route {
    min-height: 250px;
  }

  .slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .payment-logo-grid > div:nth-child(5) {
    border-left: 0;
  }

  .payment-logo-grid > div:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  :root {
    --wrap: min(100% - 28px, 680px);
  }

  h1 {
    font-size: clamp(2.55rem, 10.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav > .button {
    display: none;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-layout,
  .inner-hero-layout,
  .bonus-hero .inner-hero-layout,
  .overview-shell,
  .bonus-layout,
  .payment-content,
  .mobile-layout,
  .faq-section,
  .two-column,
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-block: 74px 130px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .offer-stage {
    min-height: 500px;
  }

  .chip-a {
    right: 0;
  }

  .chip-b {
    left: 0;
  }

  .overview-shell {
    padding-block: 105px;
    gap: 45px;
  }

  .editorial-heading,
  .faq-title,
  .terms-index {
    position: static;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .game-routes,
  .slots-showcase,
  .bonus-lab,
  .payments-section,
  .mobile-band,
  .faq-section,
  .content-section {
    padding-block: 95px;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-content {
    gap: 20px;
  }

  .mobile-layout {
    gap: 45px;
  }

  .mobile-visual {
    min-height: 390px;
  }

  .faq-section {
    gap: 40px;
  }

  .closing-layout,
  .inner-cta-layout {
    grid-template-columns: 1fr;
  }

  .closing-layout .button,
  .inner-cta-layout .button {
    justify-self: start;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

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

  .timeline {
    grid-template-columns: 1fr 1fr;
    row-gap: 55px;
  }

  .prize-cards {
    grid-template-columns: 1fr;
  }

  .slot-fan {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  :root {
    --wrap: calc(100% - 24px);
  }

  body {
    font-size: 15px;
  }

  .site-header .brand {
    font-size: 0.98rem;
  }

  .nav {
    min-height: 68px;
  }

  .hero-layout {
    padding-top: 58px;
    gap: 10px;
  }

  .hero-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-actions .text-link,
  .inline-actions .text-link {
    justify-content: center;
  }

  .hero-points {
    display: grid;
  }

  .offer-stage {
    min-height: 465px;
  }

  .offer-stage::before {
    width: 330px;
    height: 330px;
  }

  .orbit-one {
    width: 350px;
    height: 240px;
  }

  .orbit-two {
    width: 245px;
    height: 370px;
  }

  .offer-card {
    width: calc(100% - 22px);
    padding: 28px;
  }

  .offer-line b {
    font-size: 4.25rem;
  }

  .floating-chip {
    min-width: 105px;
    padding: 10px 12px;
  }

  .chip-a {
    top: 12px;
  }

  .chip-b {
    bottom: 10px;
  }

  .quick-dock {
    width: calc(100% - 24px);
    margin-top: -38px;
    grid-template-columns: 1fr;
  }

  .quick-dock a {
    min-height: 90px;
  }

  .quick-dock a + a,
  .quick-dock a:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  th,
  td {
    padding: 14px;
  }

  .route {
    min-height: 285px;
    padding: 24px;
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .slot-card > span {
    min-height: 80px;
    padding: 11px;
  }

  .css-wheel {
    border-width: 13px;
  }

  .wheel-center {
    width: 96px;
    height: 96px;
    border-width: 8px;
  }

  .reward-ledger > div {
    grid-template-columns: 1fr auto;
  }

  .reward-ledger i {
    display: none;
  }

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

  .payment-logo-grid > div:nth-child(odd) {
    border-left: 0;
  }

  .payment-logo-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .payment-logo-grid img {
    height: 80px;
  }

  .payment-content .table-wrap {
    border-radius: 14px;
  }

  .mobile-visual {
    min-height: 340px;
  }

  .desktop-device {
    width: 92%;
    height: 245px;
  }

  .phone-device {
    width: 135px;
    height: 275px;
  }

  .screen-grid {
    padding: 24px 18px;
    gap: 9px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .closing-cta {
    padding-block: 60px;
  }

  .closing-layout .button,
  .inner-cta-layout .button {
    width: 100%;
  }

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

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

  .footer-bottom {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .inner-hero {
    padding-block: 62px 70px;
  }

  .inner-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .timeline li {
    padding-top: 55px;
  }

  .slot-fan {
    min-height: 325px;
    transform: scale(0.82);
    transform-origin: top center;
  }

  .slot-fan img {
    width: 130px;
  }
}

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