:root {
  --page: #171717;
  --surface: #22262a;
  --surface-alt: #262626;
  --surface-soft: #323232;
  --text: #ffffff;
  --muted: #e5e5e5;
  --brand: #e37629;
  --brand-hover: #a95316;
  --brand-active: #b25817;
  --brand-warm: #fbcb00;
  --ink: #171717;
  --border: rgba(82, 82, 82, 0.86);
  --border-strong: rgba(227, 118, 41, 0.72);
  --link: #7cd8fd;
  --focus: #7cd8fd;
  --success: #adfa1d;
  --danger: #ff8e9c;
  --header-height: 76px;
  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--page);
  font-family: Poppins, Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--brand);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

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

.qa-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(34, 38, 42, 0.96);
  border-bottom: 1px solid #525252;
  backdrop-filter: blur(16px);
}

.header-row {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  width: 188px;
  align-items: center;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.primary-nav > ul,
.mobile-nav ul,
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.primary-nav li {
  position: relative;
}

.nav-parent {
  display: flex;
  align-items: center;
}

.primary-nav a,
.nav-caret-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: var(--text);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.nav-caret-button:hover,
.nav-caret-button:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--brand);
}

.nav-caret-button {
  display: inline-grid;
  width: 28px;
  padding: 0;
  place-items: center;
}

.nav-caret-button::after,
.mobile-submenu-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.primary-nav .nav-submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 110;
  display: none;
  min-width: 230px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.primary-nav .nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.primary-nav .has-submenu:hover > .nav-submenu,
.primary-nav .has-submenu:focus-within > .nav-submenu {
  display: grid;
}

.primary-nav .nav-submenu a {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}

.primary-nav .nav-submenu a:hover,
.primary-nav .nav-submenu a:focus-visible {
  background: rgba(227, 118, 41, 0.14);
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  color: var(--ink);
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

.link-pill {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.link-pill:hover {
  color: var(--ink);
  background: var(--brand);
  border-color: var(--brand);
}

.btn:active {
  background: var(--brand-active);
  border-color: var(--brand-active);
}

.btn:focus-visible,
.icon-button:focus-visible,
summary:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn--outline {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.btn--outline:hover {
  color: var(--brand);
  background: rgba(227, 118, 41, 0.12);
  border-color: var(--brand);
}

.btn--lg {
  min-height: 58px;
  min-width: 270px;
  padding: 15px 34px;
  font-size: 18px;
}

.motion-button {
  animation: btn-float 2.2s ease-in-out infinite;
}

.icon-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
  margin: auto;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-drawer {
  display: none;
}

.split-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height) - 18px);
  padding: 14px 0 10px;
  background: var(--page);
}

.split-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 1px;
  background: rgba(227, 118, 41, 0.44);
}

.split-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 36px;
  min-height: calc(100svh - var(--header-height) - 42px);
}

.split-hero__content {
  max-width: 760px;
  padding: 12px 0;
  text-align: center;
}

.split-hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
}

.split-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.split-hero__actions .btn {
  width: min(100%, 470px);
}

.offer-panel {
  position: relative;
  isolation: isolate;
  max-width: 620px;
  margin: 34px auto 0;
  padding: 34px 30px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow), inset 0 0 30px rgba(227, 118, 41, 0.035);
}

.offer-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background: linear-gradient(135deg, var(--brand), transparent, var(--brand));
  opacity: 0.18;
  filter: blur(18px);
  animation: offer-glow 6s linear infinite;
}

.offer-panel__label,
.offer-panel__value {
  position: relative;
  z-index: 1;
}

.offer-panel__label {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-panel__value {
  display: block;
  color: var(--text);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  animation: offer-float 4s ease-in-out infinite;
}

.split-hero__media {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  margin: 0;
}

.split-hero__media::before {
  content: "";
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(227, 118, 41, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(227, 118, 41, 0.12);
}

.split-hero__media img {
  position: relative;
  width: min(100%, 500px);
  max-height: 580px;
  object-fit: contain;
  animation: hero-float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.42));
}

.trust-strip {
  padding: 18px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 18px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.trust-point__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--text);
  background: var(--brand);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.trust-point__title,
.trust-point > span:not(.trust-point__icon),
.trust-point > span:not(.trust-point__icon) span {
  display: block;
}

.trust-point > span:not(.trust-point__icon) span {
  color: var(--muted);
  font-size: 12px;
}

.trust-point .trust-point__title {
  color: var(--text);
  font-size: 14px;
}

.trust-strip__cta {
  justify-self: end;
  min-height: 42px;
  padding-inline: 20px;
  white-space: nowrap;
}

.page-hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 18px 0 30px;
  background: var(--page);
  border-bottom: 1px solid var(--border);
}

.page-hero__grid {
  min-height: calc(100svh - var(--header-height) - 48px);
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 60px;
}

.page-hero__media {
  min-height: 580px;
  display: grid;
  place-items: center;
  margin: 0;
}

.page-hero__media img {
  width: min(90%, 430px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.5));
  animation: hero-float 6s ease-in-out infinite;
}

.page-hero__content {
  width: 100%;
  max-width: 680px;
  justify-self: end;
  text-align: center;
}

.page-hero h1 {
  max-width: 680px;
  font-size: 60px;
}

.page-hero__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.page-hero__actions .btn {
  width: min(100%, 470px);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 54px 0 70px;
}

.content-panel {
  min-width: 0;
}

.content-panel > :first-child {
  margin-top: 0;
}

.content-panel h2 {
  margin: 46px 0 16px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.22;
}

.content-panel h3 {
  margin: 32px 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.content-panel p,
.content-panel ul,
.content-panel ol {
  color: #d7d7d2;
}

.content-panel a:not(.btn) {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-panel li + li {
  margin-top: 8px;
}

.page-illustration {
  width: min(100%, 600px);
  margin: 18px auto 26px;
  overflow: hidden;
  border: 1px solid rgba(227, 118, 41, 0.34);
  border-radius: var(--radius-md);
  background: #202020;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.page-illustration img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.content-cta,
.table-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.content-cta .btn,
.table-cta .btn {
  width: min(100%, 420px);
}

.table-wrap {
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.table-wrap table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
}

.table-wrap th,
.table-wrap td {
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  color: var(--ink);
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.table-wrap th:last-child,
.table-wrap td:last-child {
  border-right: 0;
}

.table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.table-wrap tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.035);
}

.review-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--surface);
}

.review-table th,
.review-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.review-table th {
  color: var(--ink);
  background: var(--brand);
  font-size: 14px;
}

.review-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.035);
}

.review-table tbody tr:hover {
  background: rgba(124, 216, 253, 0.08);
}

.review-table tr:last-child td {
  border-bottom: 0;
}

.toc {
  margin: 22px 0 30px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.toc__title {
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 800;
}

.toc ul {
  margin: 0;
  padding-left: 20px;
}

.toc a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-grid,
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.feature-card,
.promo-card,
.auth-panel {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.feature-card:hover,
.promo-card:hover {
  border-color: var(--border-strong);
}

.feature-card__number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--brand);
  border-radius: 50%;
  font-weight: 900;
}

.feature-card h3,
.promo-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.feature-card p,
.promo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.promo-card .btn {
  width: 100%;
  margin-top: 18px;
}

.home-story {
  padding: 8px 0 96px;
}

.home-promo-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.home-promo-row--reverse {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.08fr);
}

.home-promo-row--reverse .home-promo-row__copy {
  grid-column: 2;
}

.home-promo-row--reverse .promo-visual {
  grid-column: 1;
  grid-row: 1;
}

.home-promo-row__copy {
  min-width: 0;
  padding: 12px 0 80px;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-promo-row__copy h2,
.home-wide-cta h2,
.home-faq h2 {
  letter-spacing: 0;
}

.home-promo-row__copy h2 {
  max-width: 690px;
  margin: 0 0 24px;
  font-size: 42px;
  line-height: 1.15;
}

.home-promo-row__copy p,
.home-promo-row__copy li {
  color: var(--muted);
}

.home-promo-row__copy p {
  margin: 0 0 22px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--brand);
  border-bottom: 3px solid var(--brand);
  transform: rotate(-45deg);
}

.promo-visual {
  position: sticky;
  top: 20vh;
  isolation: isolate;
  align-self: start;
  width: 100%;
  overflow: hidden;
  color: var(--text);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(227, 118, 41, 0.34);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.promo-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(23, 23, 23, 0.26), rgba(23, 23, 23, 0.7));
}

.promo-visual h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.promo-visual__lead {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.promo-visual__button {
  width: 100%;
  margin-top: 28px;
}

.promo-visual__button--compact {
  width: min(100%, 310px);
}

.promo-visual--timer {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background-image: url("/assets/images/home-promos/square.avif");
}

.promo-timer {
  margin-top: 2px;
}

.promo-timer__digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.promo-timer__digits span {
  display: grid;
  width: 44px;
  height: 64px;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.promo-timer__separator {
  margin: 0 3px;
  font-size: 30px;
  line-height: 1;
}

.promo-timer__labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.promo-visual--spins {
  min-height: 310px;
  display: flex;
  align-items: center;
  padding: 42px 34px;
  background-image: url("/assets/images/home-promos/rectangle.avif");
}

.promo-visual--spins::before {
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.78), rgba(23, 23, 23, 0.18));
}

.promo-visual__content {
  max-width: 420px;
}

.promo-visual__content p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.promo-visual--prize {
  max-width: 420px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  padding: 38px;
  background-image: url("/assets/images/home-promos/jackpot.avif");
}

.promo-visual--prize::before {
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.16), rgba(23, 23, 23, 0.72));
}

.promo-prize__value {
  display: block;
  color: var(--brand-warm);
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 900;
  line-height: 1;
}

.home-wide-cta {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  margin: 86px 0 20px;
  padding: 54px 64px;
  overflow: hidden;
  background: #262626;
  border: 1px solid rgba(227, 118, 41, 0.34);
  border-radius: 24px;
}

.home-wide-cta__pattern {
  position: absolute;
  inset: -34px -20px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.14);
  font-size: 98px;
  font-weight: 400;
  line-height: 1.8;
  word-spacing: 46px;
  transform: rotate(-7deg);
  pointer-events: none;
}

.home-wide-cta__copy {
  max-width: 720px;
}

.home-wide-cta h2 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.16;
}

.home-wide-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.home-wide-cta__button {
  min-width: 250px;
  background: #f7f7f4;
}

.home-wide-cta__button:hover,
.home-wide-cta__button:focus-visible {
  background: var(--brand);
}

.home-faq {
  margin-top: 84px;
}

.tech-page .content-layout {
  padding-top: 72px;
}

.tech-page-title {
  margin: 0 0 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  font-size: 52px;
  line-height: 1.1;
}


.slot-showcase {
  margin: 0 0 58px;
}

.slot-showcase__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.slot-showcase__header h2 {
  min-width: 0;
  flex: 0 1 auto;
  margin: 0;
  font-size: 32px;
}

.slot-showcase__line {
  height: 3px;
  flex: 1;
  background: linear-gradient(90deg, rgba(227, 118, 41, 0.72), rgba(227, 118, 41, 0));
}

.slot-showcase__all {
  min-width: 132px;
  flex-shrink: 0;
}

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

.slot-showcase__card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  color: var(--text);
  background: var(--surface);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.slot-showcase__card:hover,
.slot-showcase__card:focus-visible {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.slot-showcase__card:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.slot-showcase__image {
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
  will-change: transform;
}

.slot-showcase__image[data-flip="true"] {
  transform: rotateY(180deg);
}

.slot-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 180ms ease, transform 180ms ease;
}

.slot-showcase__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(227, 118, 41, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.slot-showcase__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ink);
}

.slot-showcase__card:hover .slot-showcase__image img,
.slot-showcase__card:focus-visible .slot-showcase__image img {
  filter: brightness(0.68) blur(1px);
  transform: scale(1.03);
}

.slot-showcase__card:hover .slot-showcase__play,
.slot-showcase__card:focus-visible .slot-showcase__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.auth-panel {
  position: relative;
  max-width: 680px;
  margin: 30px auto;
  padding: 30px;
  overflow: hidden;
  background: #22262a;
  border-color: rgba(227, 118, 41, 0.34);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.auth-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--brand);
}

.auth-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.auth-panel__eyebrow,
.auth-panel__status {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-panel__eyebrow {
  color: var(--brand);
}

.auth-panel__status {
  color: var(--muted);
}

.auth-panel h3 {
  margin: 0 0 22px;
  font-size: 26px;
}

.auth-panel__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.auth-panel__visual-fields {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
  pointer-events: none;
}

.visual-field {
  min-width: 0;
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 11px 14px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: inset 3px 0 0 rgba(227, 118, 41, 0.72);
}

.visual-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-field__value {
  min-width: 0;
  color: var(--text);
  overflow-wrap: anywhere;
  font-size: 15px;
}

.auth-panel .btn {
  width: 100%;
}

.promo-code-panel {
  max-width: 760px;
  padding: 36px;
  border-color: rgba(227, 118, 41, 0.46);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

.promo-code-panel__header {
  margin-bottom: 26px;
}

.promo-code-panel__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-code-panel h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.promo-code-panel__header p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.promo-code-field {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.promo-code-field > span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.promo-code-display {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 60px;
  padding: 0 18px;
  color: var(--text);
  background: var(--surface-alt);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.promo-code-display__value {
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.promo-code-panel__action {
  margin-top: 4px;
}

.faq-block {
  margin-top: 46px;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.faq-item summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] {
  background: var(--surface-alt);
  border-color: var(--border-strong);
}

.faq-item[open] summary::after {
  content: "−";
}

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

.faq-answer p {
  margin: 0;
}

.site-footer {
  padding: 64px 0 24px;
  background: var(--page);
}

.footer-shell {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.65fr) minmax(420px, 1.45fr);
  gap: 54px;
  align-items: start;
  padding: 52px 54px 40px;
}

.footer-brand .brand-logo {
  width: 170px;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--brand);
}

.footer-payment-note {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 10px;
}

.payment-mark {
  display: flex;
  min-width: 0;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.payment-mark:nth-child(n + 5) {
  background: #202024;
  border-color: rgba(255, 255, 255, 0.2);
}

.payment-mark img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 38px;
}

.footer-bottom {
  display: block;
  margin-top: 0;
  padding: 24px 54px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 13px;
  text-align: center;
}

.not-found {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 70px 0;
  text-align: center;
}

.not-found__code {
  display: block;
  color: var(--brand);
  font-size: 180px;
  line-height: 0.85;
}

.not-found h1 {
  margin: 30px 0 12px;
}

.visit-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
}

.visit-page__panel {
  max-width: 560px;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

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

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

@keyframes offer-glow {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(0) scale(1); }
  25% { transform: translateY(-8px) rotate(-1deg) scale(1.01); }
  50% { transform: translateY(-14px) rotate(1deg) scale(1.02); }
  75% { transform: translateY(-8px) rotate(-1deg) scale(1.01); }
}

@media (max-width: 1080px) {
  .header-row {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand-logo {
    width: 168px;
  }

  .primary-nav > ul {
    gap: 15px;
  }

  .split-hero__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
  }

  .split-hero__media {
    min-height: 540px;
  }

  .page-hero__grid {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 24px;
  }

  .page-hero__media {
    min-height: 520px;
  }

  .page-hero h1 {
    font-size: 50px;
  }

  .home-promo-row,
  .home-promo-row--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 42px;
  }

  .home-promo-row--reverse {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  }

  .promo-visual--timer {
    padding: 26px;
  }

  .promo-timer__digits span {
    width: 39px;
    height: 58px;
    font-size: 34px;
  }

  .footer-grid {
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(120px, 0.7fr));
    gap: 32px;
    padding-inline: 40px;
  }

}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

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

  .primary-nav {
    display: none;
  }

  .header-actions .login-link {
    display: none;
  }

  .split-hero h1 {
    font-size: 54px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .page-hero {
    min-height: 0;
    padding: 36px 0 24px;
  }

  .page-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-hero__content {
    order: -1;
    max-width: 680px;
    justify-self: center;
  }

  .page-hero__media {
    min-height: 420px;
  }

  .page-hero__media img {
    width: min(70%, 340px);
    max-height: 460px;
  }

  .offer-panel__value {
    font-size: 38px;
  }

  .not-found__code {
    font-size: 130px;
  }

  .icon-button {
    display: inline-grid;
    place-items: center;
  }

  .mobile-drawer {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 90;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .mobile-drawer.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav {
    width: min(90vw, 390px);
    height: 100%;
    padding: 24px;
    overflow-y: auto;
    background: var(--surface);
    border-right: 1px solid var(--border);
    transform: translateX(-102%);
    transition: transform 220ms ease;
  }

  .mobile-drawer.is-open .mobile-nav {
    transform: translateX(0);
  }

  .mobile-nav a,
  .mobile-submenu-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    color: var(--text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    font-weight: 800;
    text-align: left;
    text-decoration: none;
  }

  .mobile-nav-parent {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
  }

  .mobile-nav-parent > a,
  .mobile-nav-parent > .mobile-submenu-toggle {
    border-bottom: 0;
  }

  .mobile-nav-parent > .mobile-submenu-toggle {
    width: 48px;
    padding: 0;
    justify-content: center;
  }

  .mobile-submenu-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .mobile-nav .nav-submenu {
    display: none;
    padding: 4px 0 8px 16px;
  }

  .mobile-nav .nav-submenu.is-open {
    display: grid;
  }

  .mobile-nav .nav-submenu a {
    min-height: 42px;
    color: var(--muted);
    font-weight: 700;
  }

  .mobile-nav__cta {
    margin-top: 24px;
  }

  .mobile-nav__cta .btn {
    width: 100%;
  }

  .split-hero {
    min-height: 0;
    padding-top: 20px;
  }

  .split-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
  }

  .split-hero__content {
    max-width: none;
    padding-bottom: 8px;
    text-align: center;
  }

  .offer-panel {
    margin-inline: auto;
  }

  .split-hero__media {
    min-height: 440px;
  }

  .split-hero__media img {
    width: min(78%, 360px);
    max-height: 480px;
  }

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

  .trust-strip__cta {
    grid-column: 1 / -1;
  }

  .home-promo-row,
  .home-promo-row--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 70px 0;
  }

  .home-promo-row__copy,
  .home-promo-row--reverse .home-promo-row__copy {
    grid-column: 1;
    grid-row: auto;
    padding-bottom: 0;
  }

  .home-promo-row .promo-visual,
  .home-promo-row--reverse .promo-visual {
    position: relative;
    top: auto;
    grid-column: 1;
    grid-row: auto;
  }

  .promo-visual--spins {
    min-height: 310px;
  }

  .promo-visual--prize {
    justify-self: stretch;
    max-width: none;
    min-height: 430px;
  }

  .home-wide-cta {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px;
  }

  .home-wide-cta__button {
    width: min(100%, 320px);
  }

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

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

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

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .promo-code-panel {
    padding: 28px 20px 22px;
  }

  .promo-code-panel__header {
    margin-bottom: 22px;
  }

  .promo-code-panel h3 {
    font-size: 26px;
  }

  .promo-code-display {
    min-height: 56px;
    padding-inline: 15px;
  }

  .promo-code-panel__action {
    min-width: 0;
    padding-inline: 18px;
  }

  .brand-logo {
    width: 150px;
  }

  .header-actions .btn,
  .header-actions .link-pill {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .table-wrap table {
    min-width: 100%;
    table-layout: fixed;
  }

  .table-wrap th,
  .table-wrap td {
    padding: 11px 8px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .split-hero h1 {
    font-size: 42px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero__actions {
    display: grid;
    margin-top: 26px;
  }

  .page-hero__actions .btn {
    width: 100%;
  }

  .split-hero__actions {
    display: grid;
    margin-top: 26px;
  }

  .split-hero__actions .btn {
    width: 100%;
  }

  .offer-panel {
    margin-top: 26px;
    padding: 28px 20px;
    text-align: center;
  }

  .offer-panel__value {
    font-size: 30px;
  }

  .not-found__code {
    font-size: 96px;
  }

  .split-hero__media {
    min-height: 370px;
  }

  .trust-strip__inner,
  .feature-grid,
  .promo-grid,
  .auth-panel__row {
    grid-template-columns: 1fr;
  }

  .trust-strip__cta {
    width: 100%;
  }

  .home-story {
    padding-bottom: 64px;
  }

  .home-promo-row,
  .home-promo-row--reverse {
    padding: 52px 0;
  }

  .home-promo-row__copy h2 {
    font-size: 32px;
  }

  .promo-visual {
    border-radius: 16px;
  }

  .promo-visual h3 {
    font-size: 31px;
  }

  .promo-visual--timer {
    min-height: 390px;
    padding: 24px 18px;
  }

  .promo-timer__digits {
    gap: 3px;
  }

  .promo-timer__digits span {
    width: 36px;
    height: 54px;
    border-radius: 9px;
    font-size: 31px;
  }

  .promo-timer__separator {
    margin: 0 1px;
    font-size: 24px;
  }

  .promo-timer__labels {
    gap: 10px;
    font-size: 12px;
  }

  .promo-visual--spins {
    min-height: 320px;
    padding: 32px 20px;
    background-position: 62% center;
  }

  .promo-visual--prize {
    min-height: 410px;
    padding: 30px 22px;
  }

  .promo-prize__value {
    font-size: 58px;
  }

  .home-wide-cta {
    margin-top: 58px;
    padding: 34px 22px;
    border-radius: 16px;
  }

  .home-wide-cta h2 {
    font-size: 31px;
  }

  .home-wide-cta p {
    font-size: 16px;
  }

  .home-wide-cta__button {
    width: 100%;
  }

  .home-faq {
    margin-top: 58px;
  }

  .tech-page .content-layout {
    padding-top: 48px;
  }

  .tech-page-title {
    margin-bottom: 34px;
    padding-bottom: 22px;
    font-size: 38px;
  }

  .slot-showcase__header {
    gap: 10px;
    margin-bottom: 16px;
  }

  .slot-showcase__header h2 {
    font-size: 27px;
  }

  .slot-showcase__all {
    min-width: 96px;
    min-height: 42px;
    padding-inline: 16px;
    font-size: 14px;
  }

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

  .slot-showcase__play {
    width: 48px;
    height: 48px;
  }

  .page-hero__media {
    min-height: 370px;
  }

  .page-hero__media img {
    width: min(78%, 300px);
    max-height: 400px;
  }

  .content-layout {
    padding: 36px 0 54px;
  }

  .content-panel h2 {
    margin-top: 38px;
    font-size: 27px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-shell {
    border-radius: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 24px 30px;
  }

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

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

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom {
    padding: 20px 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;
  }
}
