:root {
  --black: #030407;
  --ink: #080b12;
  --panel: #10141f;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #a4a8b4;
  --text: #ffffff;
  --green: #8f35ff;
  --green-dark: #4a159f;
  --gold: #c27cff;
  --orange: #ff4b0b;
  --coin: #f2b84b;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  color: var(--text);
  font-family:
    "Quicksand", "Quicksand Fallback", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(180deg, rgba(3, 4, 7, 0.5), rgba(3, 4, 7, 0.92)),
    radial-gradient(circle at 12% 0%, rgba(143, 53, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 0%, rgba(255, 122, 26, 0.14), transparent 24rem),
    url("assets/body.png") center top / cover fixed,
    var(--black);
  overflow-x: hidden;
}

.site-main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

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

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

[hidden] {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  overflow-x: clip;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(143, 53, 255, 0.12), transparent 18%, transparent 82%, rgba(255, 75, 11, 0.1)),
    rgba(3, 4, 8, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(130%);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.topbar::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), transparent);
  content: "";
  opacity: 0.82;
}

.topbar.is-scrolled {
  background: rgba(3, 4, 8, 0.97);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
}

.topbar__inner {
  display: grid;
  grid-template-columns: minmax(178px, auto) 1fr auto;
  align-items: center;
  min-width: 0;
  min-height: 68px;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  min-width: 0;
}

.brand-badge {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid rgba(143, 53, 255, 0.58);
  border-radius: 9px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(143, 53, 255, 0.58), transparent 42%),
    #10120f;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.32),
    0 0 22px rgba(143, 53, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -1px;
  overflow: hidden;
  transform: skewX(-10deg);
}

.brand-badge::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  background: linear-gradient(180deg, #b771ff, var(--green-dark));
  content: "";
}

.brand-badge::after {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 75, 11, 0.82);
  content: "";
}

.brand-badge span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: skewX(10deg);
}

.brand-badge span:first-child {
  color: #08150c;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
  padding: 4px 0;
  line-height: 1;
}

.brand-title {
  display: inline-flex;
  align-items: center;
  gap: 0.04em;
  color: #ffffff;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  font-weight: 1000;
  letter-spacing: -0.45px;
  text-transform: uppercase;
  transform: skewX(-10deg);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.brand-main {
  color: #ffffff;
}

.brand-rise {
  margin-left: 0.08em;
  color: var(--green);
}

.brand-copy small {
  color: #8c93a3;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(24px, 3.6vw, 54px);
  min-height: 44px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  color: #aeb2bf;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    color 160ms ease,
    text-shadow 160ms ease,
    transform 160ms ease;
}

.desktop-nav a::before {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(143, 53, 255, 0.78);
  content: "";
  opacity: 0;
  transform: translateX(-50%) scale(0.35);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(143, 53, 255, 0.42);
  transform: translateY(-1px);
}

.desktop-nav a:hover::before,
.desktop-nav a.is-active::before,
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  opacity: 1;
}

.desktop-nav a:hover::before,
.desktop-nav a.is-active::before {
  transform: translateX(-50%) scale(1);
}

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

.topbar-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.balance-chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 7px 15px 7px 8px;
  border: 1px solid rgba(242, 184, 75, 0.3);
  border-radius: 999px;
  color: #ffe28f;
  background:
    radial-gradient(circle at 18% 50%, rgba(242, 184, 75, 0.22), transparent 3.7rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(12, 16, 26, 0.78);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 24px rgba(242, 184, 75, 0.08);
  font-size: 0.8rem;
  font-weight: 1000;
  white-space: nowrap;
}

.balance-chip img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(242, 184, 75, 0.34));
}

.daily-header-button {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.daily-header-button::after {
  position: absolute;
  top: 2px;
  right: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #070912;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 75, 11, 0.82);
  content: "";
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.daily-header-button[data-ready="true"]::after {
  opacity: 1;
  transform: scale(1);
}

.daily-header-button img {
  display: block;
  width: 58px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 12px rgba(242, 184, 75, 0.16));
}

.daily-header-button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.age-chip,
.user-chip {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #dfe4ee;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.user-chip {
  max-width: 210px;
  overflow: hidden;
  padding: 0 14px;
  color: #eaffef;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.login-link,
.logout-link,
.forgot-link {
  color: #d7d8de;
  background: transparent;
  cursor: pointer;
  font-weight: 750;
  white-space: nowrap;
}

.login-link:hover,
.logout-link:hover,
.forgot-link:hover {
  color: #fff;
}

.signup-pill,
.auth-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  color: #041207;
  background: linear-gradient(180deg, #d7a7ff 0%, var(--green) 50%, var(--green-dark) 100%);
  box-shadow:
    0 12px 30px rgba(143, 53, 255, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    filter 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.signup-pill {
  padding: 0 28px;
}

.signup-pill:hover,
.auth-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    0 16px 38px rgba(143, 53, 255, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 74px;
  left: 16px;
  right: 16px;
  z-index: 25;
  display: none;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0, rgba(143, 53, 255, 0.12), transparent 14rem),
    rgba(8, 10, 17, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

body.menu-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dedfe7;
  font-weight: 800;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
}

.mobile-menu__actions .user-chip {
  grid-column: 1 / -1;
  justify-self: stretch;
}

.site-main {
  position: relative;
  min-height: 0;
}

.home-hero {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(96px, 10vw, 132px) 0 clamp(28px, 4vw, 44px);
}

.hero-card {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  min-height: clamp(390px, 42vw, 460px);
  overflow: visible;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(143, 53, 255, 0.28), transparent 28%),
    linear-gradient(68deg, rgba(3, 4, 8, 0.98) 0%, rgba(14, 9, 29, 0.96) 42%, rgba(71, 30, 38, 0.88) 100%);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-card::before {
  display: none;
}

.hero-card::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 610px;
  padding: clamp(28px, 4.2vw, 52px);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 20px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8f35ff;
  box-shadow: 0 0 10px rgba(143, 53, 255, 0.95);
  animation: hero-badge-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-badge-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: clamp(4.4rem, 8.2vw, 8rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
  -webkit-text-stroke: 4px #fff;
  text-shadow:
    0 0 40px rgba(143, 53, 255, 0.22),
    0 18px 42px rgba(0, 0, 0, 0.42);
}

.hero-copy p {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  font-weight: 760;
  line-height: 1.72;
}

.hero-sub-short {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  padding-bottom: 10px;
  overflow: visible;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
  transition:
    filter 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.hero-primary,
.provider-promo__button {
  position: relative;
  z-index: 0;
  isolation: isolate;
  border: 1px solid rgba(255, 214, 130, 0.55);
  color: #1a0c02;
  background: linear-gradient(180deg, #fff0b8 0%, #ffc84a 38%, #ff9a1a 68%, #e05a00 100%);
  box-shadow:
    0 16px 26px -6px rgba(255, 95, 15, 0.62),
    0 26px 40px -10px rgba(255, 55, 0, 0.38),
    0 12px 24px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-primary {
  padding: 0 30px;
}

.hero-primary::before,
.hero-primary::after,
.provider-promo__button::before,
.provider-promo__button::after {
  position: absolute;
  z-index: -1;
  left: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-primary::before,
.provider-promo__button::before {
  bottom: -12px;
  width: 86%;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    rgba(255, 155, 45, 0.9) 0%,
    rgba(255, 85, 10, 0.55) 42%,
    transparent 72%
  );
  filter: blur(5px);
}

.hero-primary::after,
.provider-promo__button::after {
  bottom: -20px;
  width: 68%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    rgba(255, 70, 0, 0.7) 0%,
    rgba(255, 35, 0, 0.32) 48%,
    transparent 76%
  );
  filter: blur(9px);
}

.hero-secondary {
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #f6edff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-primary:hover,
.provider-promo__button:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.hero-secondary:hover {
  border-color: rgba(194, 124, 255, 0.5);
  box-shadow: 0 16px 34px rgba(143, 53, 255, 0.18);
  filter: brightness(1.07);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: stretch;
  width: min(48%, 520px);
  min-height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hero-visual::before {
  position: absolute;
  top: -28px;
  right: clamp(22px, 4vw, 50px);
  bottom: 34px;
  z-index: 0;
  width: min(72%, 360px);
  border: 1px solid rgba(194, 124, 255, 0.26);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(143, 53, 255, 0.28), rgba(255, 75, 11, 0.08)),
    rgba(8, 10, 18, 0.42);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  content: "";
  transform: rotate(5deg);
}

.hero-side-figure {
  position: absolute;
  top: clamp(-24px, 0.5vw, 10px);
  left: clamp(-180px, -8vw, -110px);
  bottom: auto;
  z-index: 2;
  width: auto;
  height: calc(100% + 96px);
  max-width: none;
  opacity: 0.92;
  filter:
    drop-shadow(0 32px 44px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 30px rgba(242, 184, 75, 0.14));
  transform: scale(1.3) translateY(18px);
  transform-origin: 18% 92%;
  pointer-events: none;
}

.hero-figure {
  position: absolute;
  top: -52px;
  right: clamp(-58px, -2.8vw, -18px);
  bottom: auto;
  z-index: 3;
  width: auto;
  height: calc(100% + 62px);
  max-width: none;
  filter:
    drop-shadow(0 34px 48px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 34px rgba(143, 53, 255, 0.22));
  pointer-events: none;
}

.provider-promo {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 12px auto 10px;
  overflow: visible;
  padding: 16px 18px 24px;
  border: 1px solid transparent;
  border-radius: 24px;
  cursor: pointer;
  background:
    radial-gradient(circle at 0 50%, rgba(3, 4, 8, 0.92) 0 17px, transparent 18px),
    radial-gradient(circle at 100% 50%, rgba(3, 4, 8, 0.92) 0 17px, transparent 18px),
    radial-gradient(circle at 8% 50%, rgba(255, 220, 119, 0.46), transparent 9rem),
    radial-gradient(circle at 82% 52%, rgba(143, 53, 255, 0.32), transparent 15rem),
    linear-gradient(90deg, rgba(26, 14, 8, 0.96), rgba(25, 13, 35, 0.96) 48%, rgba(58, 24, 29, 0.94));
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.36),
    0 22px 38px -12px rgba(255, 85, 10, 0.32),
    0 0 44px rgba(242, 184, 75, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(242, 184, 75, 0.18);
  backdrop-filter: blur(18px) saturate(125%);
  animation: provider-promo-pulse 5.5s ease-in-out infinite;
  transition: transform 160ms ease;
}

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

.provider-promo:focus-visible {
  outline: 2px solid rgba(255, 220, 119, 0.7);
  outline-offset: 3px;
}

.provider-promo::before {
  position: absolute;
  z-index: 0;
  inset: -1px;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255, 220, 119, 0.42) 0%,
    rgba(255, 196, 72, 0.28) 22%,
    rgba(255, 175, 55, 0.78) 50%,
    rgba(255, 196, 72, 0.28) 78%,
    rgba(255, 220, 119, 0.42) 100%
  );
  background-size: 220% 220%;
  content: "";
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: provider-promo-border-glow 7s ease-in-out infinite;
}

.provider-promo::after {
  position: absolute;
  z-index: 1;
  inset: 8px;
  border: 1px dashed rgba(255, 220, 119, 0.3);
  border-radius: 16px;
  background:
    linear-gradient(115deg, transparent 0 29%, rgba(255, 255, 255, 0.12) 31%, transparent 35%),
    radial-gradient(circle at 17% 18%, rgba(255, 232, 161, 0.35), transparent 2px),
    radial-gradient(circle at 27% 78%, rgba(255, 232, 161, 0.22), transparent 2px),
    radial-gradient(circle at 88% 28%, rgba(255, 232, 161, 0.26), transparent 2px),
    radial-gradient(circle at 94% 72%, rgba(255, 255, 255, 0.16), transparent 2px);
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

@keyframes provider-promo-border-glow {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.72;
  }

  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

@keyframes provider-promo-pulse {
  0%,
  100% {
    box-shadow:
      0 22px 62px rgba(0, 0, 0, 0.36),
      0 22px 38px -12px rgba(255, 85, 10, 0.26),
      0 0 38px rgba(242, 184, 75, 0.11),
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      inset 0 -1px 0 rgba(242, 184, 75, 0.16);
  }

  50% {
    box-shadow:
      0 23px 64px rgba(0, 0, 0, 0.37),
      0 23px 40px -11px rgba(255, 95, 15, 0.34),
      0 0 48px rgba(242, 184, 75, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(242, 184, 75, 0.2);
  }
}

.provider-promo__coin {
  position: relative;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 220, 119, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.32), transparent 36%),
    linear-gradient(180deg, rgba(242, 184, 75, 0.24), rgba(143, 53, 255, 0.08));
  box-shadow:
    0 0 28px rgba(242, 184, 75, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.provider-promo__coin img {
  width: 66px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(242, 184, 75, 0.3));
}

.provider-promo__copy {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: grid;
  gap: 8px;
  min-width: 0;
  text-align: center;
  justify-items: center;
}

.provider-promo__kicker {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.8rem, 2.3vw, 1rem);
  font-weight: 1000;
  letter-spacing: 1.4px;
  line-height: 1.25;
  text-transform: uppercase;
}

.provider-promo__headline {
  color: #fff;
  font-size: clamp(1.05rem, 3.3vw, 1.6rem);
  font-weight: 1000;
  letter-spacing: 0.4px;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.provider-promo__free {
  color: #45e06a;
  text-shadow: 0 0 22px rgba(69, 224, 106, 0.45);
}

.provider-promo__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.provider-promo__tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(242, 184, 75, 0.32);
  border-radius: 999px;
  color: #ffe7a6;
  background:
    linear-gradient(180deg, rgba(255, 220, 119, 0.16), rgba(143, 53, 255, 0.11)),
    rgba(3, 4, 8, 0.28);
  box-shadow:
    0 0 22px rgba(242, 184, 75, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.provider-promo__button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 1000;
  white-space: nowrap;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.provider-strip {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  overflow: hidden;
  padding: 10px 0 14px;
}

.provider-marquee {
  position: relative;
  overflow: hidden;
  contain: paint;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.provider-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 16px;
  animation: provider-marquee 38s linear infinite;
}

.provider-track img {
  display: block;
  width: 194px;
  height: 58px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(143, 53, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    border-color 160ms ease,
    filter 160ms ease,
    transform 160ms ease;
}

.provider-track img:hover {
  border-color: rgba(242, 184, 75, 0.4);
  filter: brightness(1.08) saturate(1.08);
  transform: translateY(-2px);
}

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

.lobby-intro {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto clamp(34px, 5vw, 56px);
  padding: 18px 0 8px;
  overflow: visible;
}

.lobby-intro__orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.lobby-intro__bubble {
  position: absolute;
  border-radius: 50%;
  box-shadow:
    inset 0 -8px 18px rgba(255, 220, 119, 0.18),
    inset 0 10px 16px rgba(255, 255, 255, 0.16),
    0 10px 28px rgba(0, 0, 0, 0.28);
}

.lobby-intro__bubble--1 {
  top: -8px;
  left: 7%;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.42), rgba(242, 184, 75, 0.28) 42%, rgba(143, 53, 255, 0.18) 78%, transparent);
  opacity: 0.9;
}

.lobby-intro__bubble--2 {
  top: 18%;
  right: 2%;
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.36), rgba(194, 124, 255, 0.34) 55%, transparent);
  opacity: 0.82;
}

.lobby-intro__bubble--3 {
  bottom: 14%;
  left: 2%;
  width: 44px;
  height: 44px;
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.34), rgba(255, 140, 40, 0.28) 48%, rgba(143, 53, 255, 0.16) 80%, transparent);
  opacity: 0.78;
}

.lobby-intro__bubble--4 {
  right: 10%;
  bottom: -6px;
  width: 62px;
  height: 62px;
  background: radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.4), rgba(242, 184, 75, 0.32) 45%, rgba(255, 95, 20, 0.18) 72%, transparent);
  opacity: 0.88;
}

.lobby-intro__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(34px, 4.8vw, 52px) clamp(28px, 4vw, 44px);
  border: 1px solid rgba(242, 184, 75, 0.34);
  border-radius: 3.4rem 2.2rem 3rem 2.6rem / 2.4rem 3.1rem 2.3rem 2.9rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 220, 119, 0.22), transparent 18rem),
    radial-gradient(circle at 92% 88%, rgba(143, 53, 255, 0.3), transparent 20rem),
    radial-gradient(circle at 50% 118%, rgba(255, 95, 20, 0.14), transparent 14rem),
    radial-gradient(circle at 18% 78%, rgba(194, 124, 255, 0.12), transparent 10rem),
    linear-gradient(145deg, rgba(6, 8, 14, 0.98), rgba(22, 12, 36, 0.96) 48%, rgba(52, 18, 26, 0.94));
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.5),
    0 0 56px rgba(143, 53, 255, 0.14),
    0 0 34px rgba(242, 184, 75, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -18px 42px rgba(255, 75, 11, 0.06);
}

.lobby-intro__inner::before {
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(255, 220, 119, 0.28);
  border-radius: 2.8rem 1.9rem 2.6rem 2.2rem / 2rem 2.6rem 1.8rem 2.4rem;
  content: "";
  pointer-events: none;
}

.lobby-intro__inner::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 28% at 18% 0%, rgba(255, 255, 255, 0.16), transparent 72%),
    radial-gradient(circle at 14% 16%, rgba(255, 232, 161, 0.42), transparent 2px),
    radial-gradient(circle at 86% 22%, rgba(255, 232, 161, 0.28), transparent 2px),
    radial-gradient(circle at 72% 84%, rgba(194, 124, 255, 0.35), transparent 3px);
  content: "";
  opacity: 0.62;
  pointer-events: none;
}

.lobby-intro__glare {
  position: absolute;
  top: -36%;
  left: 50%;
  z-index: 0;
  width: min(720px, 92%);
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 184, 75, 0.18), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
  transform: translateX(-50%);
}

.lobby-intro__head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lobby-intro__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(194, 124, 255, 0.34);
  border-radius: 999px;
  color: #d9b4ff;
  background: rgba(143, 53, 255, 0.12);
  box-shadow: 0 0 24px rgba(143, 53, 255, 0.16);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lobby-intro__kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coin);
  box-shadow: 0 0 16px rgba(242, 184, 75, 0.85);
  content: "";
}

.lobby-intro__head h2 {
  margin: 18px 0 14px;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  font-weight: 1000;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow:
    0 0 40px rgba(143, 53, 255, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.45);
}

.lobby-intro__head h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #fff4c8 0%, var(--coin) 48%, #d98722 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(242, 184, 75, 0.28));
}

.lobby-intro__head p {
  max-width: 58ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  font-weight: 760;
  line-height: 1.62;
}

.lobby-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 3.8vw, 38px);
}

.lobby-intro__card {
  position: relative;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 24px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 82% 12%, rgba(194, 124, 255, 0.16), transparent 38%),
    radial-gradient(circle at 12% 88%, rgba(242, 184, 75, 0.12), transparent 42%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 38%, transparent 100%),
    linear-gradient(180deg, rgba(18, 12, 28, 0.92), rgba(8, 10, 16, 0.88));
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -16px 28px rgba(143, 53, 255, 0.06);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.lobby-intro__card:nth-child(1) {
  border-radius: 2.2rem 1.4rem 1.8rem 2rem / 1.6rem 2rem 1.5rem 1.8rem;
  transform: rotate(-0.7deg);
}

.lobby-intro__card:nth-child(2) {
  border-radius: 1.5rem 2.1rem 2rem 1.4rem / 2rem 1.5rem 1.8rem 2rem;
  transform: rotate(0.55deg);
}

.lobby-intro__card:nth-child(3) {
  border-radius: 1.8rem 1.6rem 2.1rem 1.5rem / 1.7rem 1.9rem 1.6rem 2rem;
  transform: rotate(-0.35deg);
}

.lobby-intro__card::before {
  position: absolute;
  top: 10px;
  right: 18%;
  left: 18%;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(255, 255, 255, 0.22), transparent 72%);
  content: "";
  opacity: 0.85;
  pointer-events: none;
}

.lobby-intro__card::after {
  position: absolute;
  top: -18px;
  right: -12px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.28), rgba(143, 53, 255, 0.24) 52%, transparent 72%);
  box-shadow: inset 0 -6px 14px rgba(194, 124, 255, 0.18);
  content: "";
  pointer-events: none;
}

.lobby-intro__card:hover {
  border-color: rgba(242, 184, 75, 0.42);
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(242, 184, 75, 0.12),
    0 0 24px rgba(143, 53, 255, 0.14);
  transform: translateY(-4px) rotate(0deg);
}

.lobby-intro__card--hot {
  border-color: rgba(242, 184, 75, 0.38);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 180, 60, 0.2), transparent 40%),
    radial-gradient(circle at 16% 82%, rgba(255, 95, 20, 0.12), transparent 38%),
    linear-gradient(165deg, rgba(255, 220, 119, 0.14) 0%, rgba(255, 255, 255, 0.03) 40%, transparent 100%),
    linear-gradient(180deg, rgba(36, 18, 8, 0.94), rgba(12, 10, 16, 0.9));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.36),
    0 0 36px rgba(242, 184, 75, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -18px 30px rgba(255, 120, 20, 0.08);
}

.lobby-intro__chip {
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 1px;
}

.lobby-intro__icon {
  display: inline-grid;
  width: max-content;
  min-width: 58px;
  min-height: 42px;
  place-items: center;
  padding: 0 16px;
  border: 1px solid rgba(242, 184, 75, 0.45);
  border-radius: 1.4rem 1rem 1.2rem 1.1rem / 1.1rem 1.3rem 1rem 1.2rem;
  color: #ffe19a;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.34), transparent 55%),
    linear-gradient(180deg, rgba(242, 184, 75, 0.36), rgba(143, 53, 255, 0.18));
  box-shadow:
    0 0 26px rgba(242, 184, 75, 0.2),
    inset 0 8px 14px rgba(255, 255, 255, 0.1),
    inset 0 -6px 12px rgba(255, 140, 40, 0.12);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 1.3px;
}

.lobby-intro__value {
  color: #ffe7a6;
  font-size: clamp(1.35rem, 2.2vw, 1.72rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 0 22px rgba(242, 184, 75, 0.24);
}

.lobby-intro__card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(0.92rem, 1.2vw, 1.06rem);
  font-weight: 1000;
  line-height: 1.2;
  text-transform: uppercase;
}

.lobby-intro__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.52;
}

.lobby-intro__note {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  max-width: calc(100% - 12px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: clamp(22px, 3vw, 28px) auto 0;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem 1.6rem 1.8rem 1.7rem / 1.6rem 1.8rem 1.7rem 1.9rem;
  color: rgba(255, 255, 255, 0.55);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
    rgba(3, 4, 8, 0.48);
  box-shadow:
    inset 0 6px 14px rgba(255, 255, 255, 0.05),
    0 10px 24px rgba(0, 0, 0, 0.22);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: center;
}

.lobby-intro__note span {
  display: inline-grid;
  min-width: 34px;
  min-height: 28px;
  place-items: center;
  padding: 0 8px;
  border: 1px solid rgba(242, 184, 75, 0.34);
  border-radius: 999px;
  color: #ffe7a6;
  background: rgba(242, 184, 75, 0.1);
  font-size: 0.68rem;
  font-weight: 1000;
}

.olympus-perks {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto clamp(42px, 6vw, 74px);
  scroll-margin-top: 94px;
}

.olympus-perks__shell {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: clamp(32px, 4.6vw, 54px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.olympus-perks__shell::before {
  display: none;
  content: none;
}

.olympus-perks__shell::after {
  display: none;
  content: none;
}

.olympus-perks__frieze {
  display: none;
}

.olympus-perks__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.58fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  padding-top: 10px;
}

.olympus-perks__kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(255, 220, 119, 0.32);
  border-radius: 999px;
  color: #ffe6a4;
  background:
    linear-gradient(180deg, rgba(255, 220, 119, 0.16), rgba(143, 53, 255, 0.08)),
    rgba(3, 4, 8, 0.34);
  box-shadow: 0 0 26px rgba(242, 184, 75, 0.14);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.olympus-perks__kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 75, 11, 0.85);
  content: "";
}

.olympus-perks__head h2 {
  max-width: 650px;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(2.05rem, 4.4vw, 3.7rem);
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    0 0 40px rgba(143, 53, 255, 0.2),
    0 18px 42px rgba(0, 0, 0, 0.42);
}

.olympus-perks__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.96rem, 1.18vw, 1.08rem);
  font-weight: 760;
  line-height: 1.65;
}

.olympus-perks__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(14px, 2.1vw, 22px);
  align-items: end;
  margin-top: clamp(34px, 4.4vw, 54px);
}

.olympus-perks__card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 460px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 260px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px 10px 22px 14px / 14px 24px 12px 22px;
  background:
    radial-gradient(circle at 52% 18%, rgba(255, 220, 119, 0.14), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(194, 124, 255, 0.16), transparent 46%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.02) 38%, transparent 70%),
    linear-gradient(180deg, rgba(16, 11, 25, 0.94), rgba(6, 7, 12, 0.9));
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -20px 38px rgba(143, 53, 255, 0.06);
  transform: translateY(0);
  scroll-margin-top: 118px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
}

.olympus-perks__card::before {
  position: absolute;
  inset: auto 18px 18px;
  z-index: -1;
  height: 46%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent, rgba(3, 4, 8, 0.7) 34%, rgba(3, 4, 8, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(242, 184, 75, 0.16), transparent 68%);
  content: "";
  pointer-events: none;
}

.olympus-perks__card::after {
  position: absolute;
  inset: 11px;
  z-index: -1;
  border: 1px dashed rgba(255, 220, 119, 0.18);
  border-radius: 18px 7px 16px 10px / 10px 18px 8px 16px;
  content: "";
  pointer-events: none;
}

.olympus-perks__card--vip {
  min-height: 500px;
  margin-bottom: 28px;
  border-color: rgba(194, 124, 255, 0.34);
  background:
    radial-gradient(circle at 50% 22%, rgba(194, 124, 255, 0.24), transparent 42%),
    radial-gradient(circle at 20% 4%, rgba(255, 220, 119, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 42%, transparent 76%),
    linear-gradient(180deg, rgba(22, 12, 38, 0.96), rgba(7, 7, 13, 0.92));
  box-shadow:
    0 32px 66px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(143, 53, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.olympus-perks__card--support {
  margin-bottom: 10px;
}

.olympus-perks__card:hover {
  border-color: rgba(255, 220, 119, 0.46);
  box-shadow:
    0 34px 74px rgba(0, 0, 0, 0.44),
    0 0 36px rgba(242, 184, 75, 0.12),
    0 0 34px rgba(143, 53, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  filter: saturate(1.04);
  transform: translateY(-7px);
}

.olympus-perks__card--vip:hover {
  transform: translateY(-9px);
}

.olympus-perks__art-wrap {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  z-index: 0;
  display: grid;
  height: 270px;
  place-items: center;
  pointer-events: none;
}

.olympus-perks__halo {
  position: absolute;
  width: min(74%, 290px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 220, 119, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(143, 53, 255, 0.34), transparent 64%),
    radial-gradient(circle, rgba(242, 184, 75, 0.18), transparent 70%);
  filter: blur(9px);
  opacity: 0.72;
}

.olympus-perks__art {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 96%;
  max-height: 275px;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 34px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 30px rgba(242, 184, 75, 0.12));
  transform: translateY(2px) scale(1);
  transform-origin: 50% 72%;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.olympus-perks__card--rewards .olympus-perks__art {
  max-width: 108%;
  max-height: 260px;
}

.olympus-perks__card--vip .olympus-perks__art {
  max-height: 294px;
}

.olympus-perks__card:hover .olympus-perks__art {
  filter:
    drop-shadow(0 34px 38px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 36px rgba(242, 184, 75, 0.2));
  transform: translateY(-8px) scale(1.035);
}

.olympus-perks__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.olympus-perks__label {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  color: #d6b1ff;
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.olympus-perks__label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coin);
  box-shadow: 0 0 15px rgba(242, 184, 75, 0.82);
  content: "";
}

.olympus-perks__content h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 1000;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 16px 32px rgba(0, 0, 0, 0.38);
}

.olympus-perks__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.56;
}

.olympus-perks__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  margin-top: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 220, 119, 0.16);
  border-radius: 14px 7px 12px 8px / 8px 14px 7px 12px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 220, 119, 0.13), transparent 70%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.olympus-perks__metric span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.olympus-perks__metric strong {
  color: #ffe7a6;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 1000;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.olympus-perks__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 0 20px;
  border: 1px solid rgba(255, 220, 119, 0.48);
  border-radius: 999px;
  color: #1b0d03;
  background: linear-gradient(180deg, #fff2b4 0%, #ffc74a 42%, #ff9b1a 72%, #df5b00 100%);
  box-shadow:
    0 15px 30px rgba(255, 95, 15, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 1000;
  white-space: nowrap;
  transition:
    filter 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.olympus-perks__button:hover {
  filter: brightness(1.1);
  box-shadow:
    0 18px 36px rgba(255, 95, 15, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  transform: translateY(-2px);
}

.casino-feature,
.vip-club-panel,
.support-oracle {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto clamp(54px, 7vw, 96px);
  scroll-margin-top: 96px;
}

.casino-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 540px;
}

.casino-feature::before {
  position: absolute;
  inset: 8% -4% 6% auto;
  z-index: -1;
  width: min(62vw, 780px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 42%, rgba(242, 184, 75, 0.22), transparent 24%),
    radial-gradient(circle at 62% 45%, rgba(143, 53, 255, 0.38), transparent 58%);
  filter: blur(24px);
  content: "";
  opacity: 0.76;
  pointer-events: none;
}

.casino-feature__copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.casino-feature__kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(255, 220, 119, 0.34);
  border-radius: 999px;
  color: #ffe6a4;
  background:
    linear-gradient(180deg, rgba(255, 220, 119, 0.16), rgba(143, 53, 255, 0.1)),
    rgba(3, 4, 8, 0.42);
  box-shadow: 0 0 28px rgba(242, 184, 75, 0.12);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.casino-feature__kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 75, 11, 0.86);
  content: "";
}

.casino-feature h2,
.vip-club-panel h2,
.support-oracle h2 {
  margin: 16px 0 16px;
  color: #fff;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    0 0 34px rgba(143, 53, 255, 0.24),
    0 18px 42px rgba(0, 0, 0, 0.44);
}

.casino-feature__copy p,
.vip-club-panel__copy > p,
.support-oracle__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.98rem, 1.18vw, 1.1rem);
  font-weight: 760;
  line-height: 1.64;
}

.casino-feature__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.casino-feature__stats div {
  display: grid;
  gap: 6px;
  min-height: 82px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 220, 119, 0.2);
  border-radius: 16px 8px 14px 10px / 10px 16px 8px 14px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 220, 119, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.casino-feature__stats span,
.vip-club-panel__perks span,
.support-oracle__grid article span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  font-weight: 1000;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.casino-feature__stats strong {
  color: #ffe7a6;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.casino-feature__button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 28px;
  border: 1px solid rgba(255, 220, 119, 0.5);
  border-radius: 999px;
  color: #1b0d03;
  background: linear-gradient(180deg, #fff2b4 0%, #ffc74a 42%, #ff9b1a 72%, #df5b00 100%);
  box-shadow:
    0 18px 38px rgba(255, 95, 15, 0.3),
    0 0 34px rgba(242, 184, 75, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font-weight: 1000;
  white-space: nowrap;
  transition:
    filter 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.casino-feature__button:hover {
  filter: brightness(1.1);
  box-shadow:
    0 22px 44px rgba(255, 95, 15, 0.38),
    0 0 40px rgba(242, 184, 75, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  transform: translateY(-2px);
}

.casino-feature__stage {
  position: relative;
  display: grid;
  min-height: clamp(420px, 43vw, 560px);
  place-items: center;
}

.casino-feature__stage::before {
  position: absolute;
  inset: 11% 8% 12%;
  border: 1px solid rgba(255, 220, 119, 0.18);
  border-radius: 42% 58% 48% 52% / 54% 44% 56% 46%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 220, 119, 0.14), transparent 44%),
    radial-gradient(circle at 48% 54%, rgba(143, 53, 255, 0.34), transparent 68%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  content: "";
}

.casino-feature__jackpot-ring {
  position: absolute;
  width: min(88%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 12deg, rgba(255, 220, 119, 0.22) 0 6deg, transparent 6deg 13deg),
    radial-gradient(circle, transparent 58%, rgba(255, 220, 119, 0.16) 59% 60%, transparent 61%);
  filter: drop-shadow(0 0 28px rgba(242, 184, 75, 0.13));
  opacity: 0.7;
  animation: casino-ring-spin 32s linear infinite;
}

.casino-feature__main-art {
  position: relative;
  z-index: 2;
  width: min(88%, 560px);
  height: auto;
  filter:
    drop-shadow(0 36px 44px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 36px rgba(242, 184, 75, 0.14));
}

.casino-feature__coin {
  position: absolute;
  z-index: 3;
  width: clamp(74px, 9vw, 122px);
  height: auto;
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 22px rgba(242, 184, 75, 0.18));
}

.casino-feature__coin--one {
  right: 7%;
  bottom: 14%;
  transform: rotate(12deg);
}

.casino-feature__coin--two {
  left: 4%;
  top: 10%;
  transform: rotate(-10deg);
}

.casino-feature__ticket {
  position: absolute;
  right: 6%;
  top: 14%;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 154px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 220, 119, 0.34);
  border-radius: 18px 8px 16px 10px / 10px 18px 8px 16px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 220, 119, 0.16), transparent 48%),
    rgba(5, 6, 12, 0.82);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.casino-feature__ticket span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.casino-feature__ticket strong {
  color: #ffe7a6;
  font-size: 1.7rem;
  font-weight: 1000;
  line-height: 1;
}

@keyframes casino-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.vip-club-panel {
  display: grid;
  grid-template-columns: minmax(350px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.vip-club-panel::before {
  position: absolute;
  inset: 7% auto 8% -6%;
  z-index: -1;
  width: min(64vw, 840px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 42%, rgba(194, 124, 255, 0.36), transparent 58%),
    radial-gradient(circle at 42% 48%, rgba(255, 220, 119, 0.16), transparent 22%);
  filter: blur(28px);
  content: "";
  opacity: 0.78;
}

.vip-club-panel__stage {
  position: relative;
  display: grid;
  min-height: clamp(470px, 46vw, 620px);
  place-items: center;
}

.vip-club-panel__stage::before {
  position: absolute;
  inset: 7% 10% 19%;
  border: 1px solid rgba(194, 124, 255, 0.24);
  border-radius: 34px 14px 38px 16px / 16px 38px 14px 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(194, 124, 255, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 7, 13, 0.56);
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  content: "";
}

.vip-club-panel__emblem {
  position: relative;
  z-index: 2;
  width: min(88%, 520px);
  height: auto;
  filter:
    drop-shadow(0 40px 46px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 38px rgba(143, 53, 255, 0.22));
}

.vip-club-panel__tiers {
  position: absolute;
  right: 0;
  bottom: 5%;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.vip-club-panel__tiers span {
  display: grid;
  min-height: 94px;
  place-items: center;
  gap: 6px;
  padding: 10px 6px;
  border: 1px solid rgba(255, 220, 119, 0.18);
  border-radius: 16px 8px 14px 10px / 10px 16px 8px 14px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(3, 4, 8, 0.66);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.vip-club-panel__tiers img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.36));
}

.vip-club-panel__copy {
  max-width: 610px;
  justify-self: end;
}

.vip-club-panel__perks {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.vip-club-panel__perks div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(194, 124, 255, 0.2);
  border-radius: 18px 9px 16px 11px / 11px 18px 9px 16px;
  background:
    radial-gradient(circle at 12% 18%, rgba(194, 124, 255, 0.14), transparent 44%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vip-club-panel__perks span {
  grid-row: 1 / span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 220, 119, 0.3);
  border-radius: 50%;
  color: #ffe7a6;
  background: rgba(255, 220, 119, 0.1);
}

.vip-club-panel__perks strong,
.support-oracle__grid article strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 1000;
  line-height: 1.2;
  text-transform: uppercase;
}

.vip-club-panel__perks p,
.support-oracle__grid article p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.48;
}

.support-oracle {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.support-oracle__copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.support-oracle__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.9fr) minmax(0, 0.85fr);
  gap: clamp(14px, 2.2vw, 24px);
  align-items: center;
}

.support-oracle__grid article {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: end;
  gap: 10px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 220, 119, 0.18);
  border-radius: 22px 10px 20px 12px / 12px 22px 10px 20px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 220, 119, 0.14), transparent 46%),
    radial-gradient(circle at 88% 6%, rgba(143, 53, 255, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 12, 0.7);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.support-oracle__grid article::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 119, 0.16), transparent 68%);
  content: "";
}

.support-oracle__art-card {
  min-height: 380px !important;
  place-items: center;
  align-content: center !important;
  background:
    radial-gradient(circle at 50% 40%, rgba(143, 53, 255, 0.3), transparent 58%),
    radial-gradient(circle at 50% 48%, rgba(242, 184, 75, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.045) !important;
}

.support-oracle__art-card img {
  width: min(100%, 380px);
  height: auto;
  filter:
    drop-shadow(0 34px 40px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 34px rgba(143, 53, 255, 0.2));
}

.coming-soon {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto clamp(34px, 5vw, 56px);
  overflow: visible;
}

.coming-soon__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  overflow: visible;
  padding: clamp(26px, 4vw, 42px) 0;
}

.coming-soon__copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.coming-soon__copy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c99aff;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.coming-soon__copy span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 75, 11, 0.8);
  content: "";
}

.coming-soon__copy h2 {
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 1000;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow:
    0 0 34px rgba(143, 53, 255, 0.2),
    0 18px 42px rgba(0, 0, 0, 0.42);
}

.coming-soon__lead {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 800;
  line-height: 1.55;
}

.coming-soon__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.65;
}

.coming-soon__badge {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid rgba(242, 184, 75, 0.42);
  border-radius: 999px;
  color: #ffe7a6;
  background:
    linear-gradient(180deg, rgba(255, 220, 119, 0.18), rgba(143, 53, 255, 0.12)),
    rgba(3, 4, 8, 0.35);
  box-shadow: 0 0 28px rgba(242, 184, 75, 0.14);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.coming-soon__stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(420px, 50vw, 540px);
  place-items: center;
  overflow: visible;
  padding: 12px 8px;
  perspective: 1400px;
}

.coming-soon__glow {
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(143, 53, 255, 0.34), transparent 68%),
    radial-gradient(circle, rgba(242, 184, 75, 0.16), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.coming-soon__ring {
  position: relative;
  width: clamp(300px, 35vw, 400px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, -470px) scale(1.08);
}

.coming-soon__orbit {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: coming-soon-spin 30s linear infinite;
}

.coming-soon__card {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: auto;
  aspect-ratio: 9 / 16;
  transform-style: preserve-3d;
  backface-visibility: visible;
}

.coming-soon__card:nth-child(1) {
  transform: rotateY(45deg) translateX(150%);
}

.coming-soon__card:nth-child(2) {
  transform: rotateY(90deg) translateX(150%);
}

.coming-soon__card:nth-child(3) {
  transform: rotateY(135deg) translateX(150%);
}

.coming-soon__card:nth-child(4) {
  transform: rotateY(180deg) translateX(150%);
}

.coming-soon__card:nth-child(5) {
  transform: rotateY(225deg) translateX(150%);
}

.coming-soon__card:nth-child(6) {
  transform: rotateY(270deg) translateX(150%);
}

.coming-soon__card:nth-child(7) {
  transform: rotateY(315deg) translateX(150%);
}

.coming-soon__card:nth-child(8) {
  transform: rotateY(360deg) translateX(150%);
}

.coming-soon__card img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  object-fit: cover;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(143, 53, 255, 0.14);
  filter: saturate(1.05);
  transform: rotateY(90deg);
}

@keyframes coming-soon-spin {
  0% {
    transform: rotateY(-48deg) rotateX(12deg) rotateY(0deg);
  }

  100% {
    transform: rotateY(-48deg) rotateX(12deg) rotateY(-360deg);
  }
}

.game-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto clamp(56px, 7vw, 92px);
  gap: 14px;
  scroll-margin-top: 92px;
}

.game-showcase__head {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.game-showcase__head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c99aff;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.game-showcase__head span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 75, 11, 0.8);
  content: "";
}

.game-showcase__head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3.6vw, 3.2rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.game-frame-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: min(68vh, 630px);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(194, 124, 255, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(143, 53, 255, 0.2), transparent 22rem),
    radial-gradient(circle at 86% 12%, rgba(242, 184, 75, 0.12), transparent 20rem),
    rgba(5, 7, 12, 0.88);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.5),
    0 0 46px rgba(143, 53, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.game-frame-shell::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  content: "";
  pointer-events: none;
}

.game-frame-shell iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #030407;
  pointer-events: auto;
}

.legal-page {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 116px) 0 clamp(54px, 7vw, 86px);
}

.legal-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 220, 119, 0.24);
  border-radius: 30px 12px 28px 16px / 16px 30px 12px 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 220, 119, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 16%, rgba(143, 53, 255, 0.3), transparent 24rem),
    linear-gradient(140deg, rgba(9, 8, 16, 0.94), rgba(19, 10, 34, 0.88) 58%, rgba(42, 18, 30, 0.78));
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.legal-hero::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px dashed rgba(255, 220, 119, 0.18);
  border-radius: 23px 8px 21px 11px / 11px 23px 8px 21px;
  content: "";
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(255, 220, 119, 0.34);
  border-radius: 999px;
  color: #ffe6a4;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.legal-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 75, 11, 0.86);
  content: "";
}

.legal-hero h1 {
  max-width: 880px;
  margin: 18px 0 14px;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 1000;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    0 0 34px rgba(143, 53, 255, 0.2),
    0 18px 42px rgba(0, 0, 0, 0.44);
}

.legal-hero p {
  max-width: 68ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  font-weight: 760;
  line-height: 1.64;
}

.legal-shell {
  display: grid;
  max-width: 980px;
  gap: 14px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px 10px 22px 14px / 14px 24px 10px 22px;
  background:
    radial-gradient(circle at 12% 8%, rgba(194, 124, 255, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(4, 5, 10, 0.7);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-shell h2 {
  margin: 24px 0 0;
  color: #ffe7a6;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 1000;
  line-height: 1.15;
  text-transform: uppercase;
}

.legal-shell h2:first-child {
  margin-top: 0;
}

.legal-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 680;
  line-height: 1.78;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 14% 0%, rgba(143, 53, 255, 0.12), transparent 22rem),
    radial-gradient(circle at 88% 20%, rgba(255, 75, 11, 0.1), transparent 20rem),
    rgba(3, 4, 7, 0.78);
  padding: clamp(34px, 5vw, 58px) 0 34px;
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 53, 255, 0.68), rgba(255, 75, 11, 0.42), transparent);
  content: "";
}

.site-footer__inner {
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  gap: 26px;
}

.site-footer__notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(8, 10, 17, 0.74);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-footer__age {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(194, 124, 255, 0.42);
  border-radius: 16px;
  color: #eed9ff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 38%),
    rgba(143, 53, 255, 0.16);
  box-shadow: 0 0 28px rgba(143, 53, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 1000;
}

.site-footer__notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.7;
}

.site-footer__notice strong {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 950;
}

.site-footer__notice a {
  color: #d49cff;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(194, 124, 255, 0.44);
  text-underline-offset: 3px;
}

.site-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer__mark {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 26px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(143, 53, 255, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(143, 53, 255, 0.58), transparent 42%), #10120f;
  color: #fff;
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -0.8px;
  transform: skewX(-10deg);
}

.site-footer__mark::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  background: linear-gradient(180deg, #b771ff, var(--green-dark));
  content: "";
}

.site-footer__mark span {
  position: relative;
  z-index: 1;
  transform: skewX(10deg);
}

.site-footer__mark span:first-child {
  color: #08150c;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-footer__links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.solara-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(194, 124, 255, 0.18);
  background:
    radial-gradient(circle at 10% 0%, rgba(143, 53, 255, 0.22), transparent 23rem),
    radial-gradient(circle at 86% 18%, rgba(255, 75, 11, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(4, 5, 10, 0.82), rgba(3, 4, 7, 0.98));
  padding: clamp(42px, 6vw, 76px) 0 32px;
}

.solara-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 197, 74, 0.62), rgba(143, 53, 255, 0.84), transparent);
  content: "";
}

.solara-footer::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 220, 119, 0.12);
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 8deg, rgba(255, 220, 119, 0.12) 0 8deg, transparent 8deg 17deg),
    radial-gradient(circle, rgba(143, 53, 255, 0.2), transparent 62%);
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.solara-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  gap: 28px;
}

.solara-footer__brand-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.solara-footer__brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
}

.solara-footer__mark {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(194, 124, 255, 0.58);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, rgba(143, 53, 255, 0.62), transparent 42%), #10120f;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(143, 53, 255, 0.22);
  font-size: 1rem;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -1px;
  transform: skewX(-10deg);
}

.solara-footer__mark::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  background: linear-gradient(180deg, #c891ff, var(--green-dark));
  content: "";
}

.solara-footer__mark span {
  position: relative;
  z-index: 1;
  transform: skewX(10deg);
}

.solara-footer__mark span:first-child {
  color: #11051d;
}

.solara-footer__brand strong {
  display: block;
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.solara-footer__brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.solara-footer__brand-panel p,
.solara-footer__fineprint p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.64;
}

.solara-footer__cookie {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 220, 119, 0.32);
  border-radius: 999px;
  color: #ffe7a6;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 1000;
  white-space: nowrap;
}

.solara-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 54px);
}

.solara-footer__nav div {
  display: grid;
  gap: 10px;
}

.solara-footer__nav span {
  color: #ffe7a6;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.solara-footer__nav a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
  font-weight: 820;
  line-height: 1.25;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.solara-footer__nav a:hover {
  color: #fff;
  transform: translateX(3px);
}

.solara-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.solara-footer__badges span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(194, 124, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(3, 4, 8, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.solara-footer__fineprint {
  max-width: 980px;
  padding-top: 4px;
}

.cookie-modal {
  position: fixed;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 70;
  display: flex;
  justify-content: center;
  padding: 0 14px;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cookie-modal.is-open {
  opacity: 1;
}

.cookie-modal__panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  width: min(480px, calc(100vw - 28px));
  max-width: 100%;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(194, 124, 255, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 16%, rgba(143, 53, 255, 0.26), transparent 11rem),
    radial-gradient(circle at 92% 90%, rgba(255, 184, 64, 0.12), transparent 10rem),
    linear-gradient(145deg, rgba(10, 11, 19, 0.96), rgba(7, 8, 14, 0.96) 58%, rgba(20, 11, 26, 0.96));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  pointer-events: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.cookie-modal.is-open .cookie-modal__panel {
  transform: translateY(0) scale(1);
}

.cookie-modal__panel::before {
  display: none;
  content: none;
}

.cookie-modal__crest {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(255, 220, 119, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 36% 26%, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(145deg, rgba(255, 184, 64, 0.28), rgba(143, 53, 255, 0.36)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #ffe7a6;
  font-size: 0.86rem;
  font-weight: 1000;
}

.cookie-modal__crest span {
  transform: none;
}

.cookie-modal__content {
  min-width: 0;
}

.cookie-modal__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  font-weight: 1000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.cookie-modal__kicker::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 75, 11, 0.86);
  content: "";
}

.cookie-modal h2 {
  margin: 2px 0 3px;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 1000;
  line-height: 1.05;
  text-transform: uppercase;
}

.cookie-modal p {
  max-width: 40ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.cookie-modal__options {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 7px;
  margin-top: 0;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.cookie-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.cookie-toggle strong {
  display: block;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 1000;
  line-height: 1.2;
}

.cookie-toggle small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.3;
}

.cookie-toggle--locked {
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.cookie-modal__primary,
.cookie-modal__ghost {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 1000;
  white-space: nowrap;
}

.cookie-modal__actions [data-cookie-save] {
  display: none;
}

.cookie-modal__primary {
  border: 1px solid rgba(255, 220, 119, 0.52);
  color: #1b0d03;
  background: linear-gradient(180deg, #fff2b4 0%, #ffc74a 42%, #ff9b1a 72%, #df5b00 100%);
  box-shadow: 0 14px 28px rgba(255, 95, 15, 0.28);
}

.cookie-modal__ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.065);
}

.auth-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 3, 6, 0.76);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.auth-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal {
  position: relative;
  width: min(440px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0, rgba(143, 53, 255, 0.16), transparent 15rem),
    radial-gradient(circle at 90% 15%, rgba(255, 75, 11, 0.13), transparent 16rem),
    #0c1019;
  box-shadow: var(--shadow);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.auth-backdrop.is-open .auth-modal {
  transform: translateY(0) scale(1);
}

.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.close-button span {
  position: absolute;
  left: 11px;
  top: 20px;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.close-button span:first-child {
  transform: rotate(45deg);
}

.close-button span:last-child {
  transform: rotate(-45deg);
}

.auth-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 50px;
}

.auth-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 17px;
  color: #041109;
  background: linear-gradient(145deg, #fff3a4, var(--gold) 48%, var(--green));
  font-size: 1.6rem;
  font-weight: 1000;
}

.auth-heading h2 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.auth-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 22px 0 14px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.auth-tab {
  min-height: 42px;
  border-radius: 999px;
  color: #aeb0bb;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.auth-tab.is-active {
  color: #031109;
  background: var(--green);
}

.google-button {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-weight: 900;
}

.google-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: #fff;
}

.google-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #8f929e;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.auth-form {
  display: grid;
  gap: 13px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #dfe2ea;
  font-size: 0.88rem;
  font-weight: 850;
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  outline: 0;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.auth-form input:focus {
  border-color: rgba(143, 53, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(143, 53, 255, 0.12);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.remember {
  display: inline-flex !important;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px !important;
}

.remember input {
  accent-color: var(--green);
}

.forgot-link {
  padding: 0;
  color: var(--gold);
  font-size: 0.88rem;
}

.auth-message {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.32;
}

.auth-message.is-error {
  color: #ff9a9a;
}

.auth-message.is-success {
  color: #d8b9ff;
}

.auth-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  font-size: 1rem;
}

.auth-submit.is-loading {
  color: transparent;
  pointer-events: none;
}

.auth-submit.is-loading::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(2, 17, 7, 0.26);
  border-top-color: #021107;
  border-radius: 50%;
  content: "";
  animation: spin 780ms linear infinite;
}

.bonus-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(143, 53, 255, 0.2), transparent 24rem),
    rgba(2, 3, 6, 0.78);
  backdrop-filter: blur(18px) saturate(125%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.bonus-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bonus-modal {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(540px, 100%);
  min-height: 310px;
  overflow: hidden;
  padding: 34px 32px 30px;
  border: 1px solid rgba(242, 184, 75, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(242, 184, 75, 0.32), transparent 10rem),
    radial-gradient(circle at 95% 20%, rgba(143, 53, 255, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(25, 14, 9, 0.98), rgba(12, 10, 28, 0.98) 58%, rgba(57, 22, 38, 0.96));
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 0 54px rgba(242, 184, 75, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.bonus-modal::before {
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255, 220, 119, 0.28);
  border-radius: 21px;
  content: "";
  pointer-events: none;
}

.bonus-modal::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 36%, transparent 41%),
    radial-gradient(circle at 18% 82%, rgba(255, 232, 161, 0.34), transparent 2px),
    radial-gradient(circle at 84% 22%, rgba(255, 232, 161, 0.26), transparent 2px);
  content: "";
  opacity: 0.52;
  pointer-events: none;
}

.bonus-backdrop.is-open .bonus-modal {
  transform: translateY(0) scale(1);
}

.bonus-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.bonus-close span {
  position: absolute;
  left: 11px;
  top: 20px;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.bonus-close span:first-child {
  transform: rotate(45deg);
}

.bonus-close span:last-child {
  transform: rotate(-45deg);
}

.bonus-modal__art {
  position: absolute;
  top: 18px;
  right: 58px;
  z-index: 1;
  opacity: 0.98;
  pointer-events: none;
}

.bonus-modal__art img {
  width: min(44vw, 190px);
  height: auto;
  filter:
    drop-shadow(0 28px 30px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 28px rgba(242, 184, 75, 0.18));
}

.bonus-modal__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  max-width: 360px;
  min-height: 245px;
}

.bonus-kicker {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(242, 184, 75, 0.32);
  border-radius: 999px;
  color: #ffe7a6;
  background: rgba(242, 184, 75, 0.12);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.bonus-modal h2 {
  max-width: 335px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.bonus-modal p {
  max-width: 350px;
  margin: 14px 0 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.55;
}

.bonus-modal p.is-success {
  color: #ffe7a6;
}

.bonus-modal p.is-error {
  color: #ffaaa5;
}

.bonus-claim {
  position: relative;
  display: inline-flex;
  width: max-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  color: #160f05;
  background: linear-gradient(180deg, #ffe08a 0%, var(--coin) 54%, #d98b28 100%);
  box-shadow:
    0 18px 42px rgba(242, 184, 75, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  cursor: pointer;
  font-weight: 1000;
  white-space: nowrap;
}

.bonus-claim.is-loading {
  color: transparent;
  pointer-events: none;
}

.bonus-claim.is-loading::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(22, 15, 5, 0.28);
  border-top-color: #160f05;
  border-radius: 50%;
  content: "";
  animation: spin 780ms linear infinite;
}

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

@media (max-width: 1120px) {
  .topbar__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .mobile-menu {
    display: block;
  }

  .hero-card {
    grid-template-columns: 1fr;
    place-items: center;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 12px;
  }

  .hero-visual {
    width: min(52%, 480px);
  }

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

  .hero-visual {
    min-height: 360px;
  }

  .hero-figure {
    top: auto;
    right: 4%;
    bottom: -58px;
    width: clamp(360px, 52vw, 520px);
    height: auto;
  }

  .hero-visual::before {
    top: 18px;
    right: 9%;
    bottom: 58px;
    width: min(58%, 390px);
  }

  .hero-side-figure {
    display: none;
  }

  .provider-track img {
    width: 182px;
    height: 55px;
  }

  .olympus-perks__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .olympus-perks__head p {
    max-width: 720px;
  }

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

  .olympus-perks__card--vip {
    margin-bottom: 0;
  }

  .olympus-perks__card--support {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .game-frame-shell {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  .home-hero {
    width: min(var(--container), calc(100% - 28px));
    padding: 40px 0 36px;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    min-height: auto;
    border-radius: 24px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    padding: 28px 22px 0;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.15rem, 9.2vw, 3.45rem);
    line-height: 0.96;
  }

  .hero-copy p {
    max-width: 36ch;
    margin-inline: auto;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-primary,
  .hero-secondary {
    width: auto;
    min-width: 210px;
    padding-inline: 36px;
    min-height: 52px;
  }

  .hero-side-figure {
    display: none;
  }

  /* Contain decorative elements that bleed past the viewport on mobile,
     which otherwise widen the page and stretch fixed elements (cookie modal). */
  .coming-soon,
  .casino-feature {
    overflow: hidden;
  }

  .hero-visual {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 100%;
    height: clamp(230px, 58vw, 310px);
    min-height: 0;
    margin-top: 6px;
    justify-self: stretch;
    align-self: auto;
    grid-column: unset;
    grid-row: unset;
  }

  .hero-visual::before {
    top: 10px;
    right: 50%;
    bottom: 18px;
    width: min(64%, 280px);
    transform: translateX(50%) rotate(3deg);
  }

  .hero-figure {
    top: auto;
    right: 50%;
    bottom: -18px;
    width: min(76%, 320px);
    height: auto;
    max-height: 112%;
    transform: translateX(50%);
    object-fit: contain;
    object-position: bottom center;
  }

  .provider-promo {
    gap: 12px;
    margin-top: 14px;
    padding: 16px 14px 18px;
    border-radius: 20px;
  }

  .provider-promo::before {
    border-radius: 21px;
  }

  .provider-promo__coin {
    width: 60px;
    height: 56px;
    border-radius: 16px;
  }

  .provider-promo__coin img {
    width: 52px;
    height: 50px;
  }

  .provider-strip {
    margin-top: 10px;
  }

  .provider-track img {
    width: 154px;
    height: 48px;
    border-radius: 13px;
  }

  .lobby-intro {
    width: min(var(--container), calc(100% - 28px));
    margin-bottom: 40px;
  }

  .lobby-intro__bubble--1,
  .lobby-intro__bubble--4 {
    width: 42px;
    height: 42px;
  }

  .lobby-intro__bubble--2,
  .lobby-intro__bubble--3 {
    width: 30px;
    height: 30px;
  }

  .lobby-intro__inner {
    padding: 24px 18px;
    border-radius: 2.4rem 1.7rem 2.1rem 1.9rem / 1.8rem 2.2rem 1.7rem 2rem;
  }

  .lobby-intro__inner::before {
    inset: 8px;
    border-radius: 2rem 1.5rem 1.8rem 1.6rem / 1.5rem 1.8rem 1.4rem 1.7rem;
  }

  .lobby-intro__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lobby-intro__card:nth-child(n) {
    transform: none;
  }

  .lobby-intro__card:hover {
    transform: translateY(-3px);
  }

  .olympus-perks {
    width: min(var(--container), calc(100% - 28px));
    margin-bottom: 44px;
    scroll-margin-top: 72px;
  }

  .olympus-perks__shell {
    padding: 26px 18px 20px;
    border-radius: 2.2rem 1.3rem 2rem 1.5rem / 1.5rem 2rem 1.4rem 1.8rem;
  }

  .olympus-perks__shell::before {
    inset: 8px;
    border-radius: 1.9rem 1rem 1.7rem 1.2rem / 1.2rem 1.7rem 1.1rem 1.5rem;
  }

  .olympus-perks__frieze {
    right: 28px;
    left: 28px;
  }

  .olympus-perks__head {
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .olympus-perks__head h2 {
    max-width: 720px;
    font-size: clamp(1.78rem, 7.8vw, 2.7rem);
  }

  .olympus-perks__head p {
    max-width: 62ch;
    font-size: 0.94rem;
  }

  .olympus-perks__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .olympus-perks__card,
  .olympus-perks__card--vip,
  .olympus-perks__card--support {
    grid-column: auto;
    min-height: 430px;
    margin-bottom: 0;
    padding: 230px 20px 20px;
    border-radius: 20px 10px 18px 12px / 12px 20px 10px 18px;
    scroll-margin-top: 86px;
  }

  .olympus-perks__card:hover,
  .olympus-perks__card--vip:hover {
    transform: translateY(-3px);
  }

  .olympus-perks__art-wrap {
    height: 235px;
  }

  .olympus-perks__art,
  .olympus-perks__card--vip .olympus-perks__art {
    max-height: 238px;
  }

  .olympus-perks__card--rewards .olympus-perks__art {
    max-height: 220px;
  }

  .coming-soon {
    width: min(var(--container), calc(100% - 28px));
  }

  .coming-soon__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .coming-soon__copy {
    max-width: none;
    text-align: center;
  }

  .coming-soon__badge {
    margin-inline: auto;
  }

  .coming-soon__stage {
    min-height: 390px;
    padding: 10px 0;
  }

  .coming-soon__ring {
    width: min(78vw, 340px);
    transform: translate3d(0, 0, -400px) scale(1.06);
  }

  .game-showcase {
    width: min(1040px, calc(100% - 28px));
    gap: 14px;
    scroll-margin-top: 72px;
  }

  .game-showcase__head h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .game-frame-shell {
    border-radius: 18px;
    max-height: 58vh;
  }

  .game-frame-shell::before {
    inset: 6px;
    border-radius: 13px;
  }
}

@media (max-width: 760px) {
  body {
    background: var(--black);
  }

  /* Fixed backdrop pinned to the viewport so body.png is sized to the screen
     (not stretched over the full page height, which zoomed it to a dark blur). */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(3, 4, 7, 0.4), rgba(3, 4, 7, 0.8)),
      radial-gradient(circle at 12% 0%, rgba(143, 53, 255, 0.2), transparent 22rem),
      radial-gradient(circle at 86% 0%, rgba(255, 122, 26, 0.16), transparent 24rem),
      url("assets/body.png") center center / cover no-repeat;
  }

  .topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 24px);
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    width: min-content;
    max-width: 100%;
  }

  .topbar-actions {
    width: auto;
    flex: 0 0 auto;
  }

  .site-footer__inner {
    width: min(var(--container), calc(100% - 24px));
  }

  .site-footer__notice {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .legal-page {
    width: min(var(--container), calc(100% - 20px));
    padding: 34px 0 44px;
  }

  .legal-hero {
    padding: 24px 18px;
    border-radius: 22px 10px 20px 12px / 12px 22px 10px 20px;
  }

  .legal-hero::before {
    inset: 8px;
    border-radius: 16px 6px 14px 8px / 8px 16px 6px 14px;
  }

  .legal-hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
  }

  .legal-shell {
    padding: 20px 16px;
    border-radius: 18px 8px 16px 10px / 10px 18px 8px 16px;
  }

  .legal-shell p {
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .home-hero {
    width: min(var(--container), calc(100% - 20px));
    padding: 12px 0 22px;
  }

  .hero-card {
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }

  .hero-copy {
    padding: 14px 18px 0;
  }

  .hero-badge {
    display: none;
  }

  .hero-copy h1 {
    margin: 0 auto 10px;
    font-size: clamp(2.9rem, 13.5vw, 4rem);
    line-height: 0.98;
    -webkit-text-stroke: 2px #fff;
  }

  .hero-copy p {
    max-width: 30ch;
    margin-inline: auto;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  /* Single-line subtitle on mobile */
  .hero-sub-full {
    display: none;
  }

  .hero-sub-short {
    display: inline;
  }

  .hero-actions {
    gap: 11px;
    margin-top: 16px;
  }

  .hero-primary,
  .hero-secondary {
    min-height: 50px;
    font-size: 0.92rem;
  }

  /* Single CTA on mobile — hide the secondary "Log In" button */
  .hero-secondary {
    display: none;
  }

  .hero-visual {
    height: clamp(180px, 46vw, 230px);
    margin-top: 2px;
  }

  .hero-figure {
    width: min(88%, 320px);
    bottom: -8px;
  }

  .provider-promo {
    gap: 10px 12px;
    margin-top: 6px;
    padding: 12px;
    border-radius: 18px;
  }

  .provider-promo::before {
    border-radius: 19px;
  }

  .provider-promo::after {
    inset: 6px;
    border-radius: 13px;
  }

  .provider-promo__coin {
    width: 54px;
    height: 50px;
  }

  .provider-promo__coin img {
    width: 46px;
    height: 44px;
  }

  .provider-promo__kicker {
    font-size: 0.72rem;
    letter-spacing: 1.1px;
  }

  .provider-promo__headline {
    font-size: clamp(0.95rem, 4.3vw, 1.25rem);
  }

  .provider-strip {
    margin-top: 8px;
    padding: 6px 0 8px;
  }

  .provider-track {
    animation-duration: 32s;
    gap: 8px;
    padding: 0 8px;
  }

  .provider-track img {
    width: 142px;
    height: 44px;
    border-radius: 11px;
  }

  .lobby-intro {
    width: min(var(--container), calc(100% - 20px));
    margin-bottom: 32px;
  }

  .lobby-intro__inner {
    padding: 20px 14px;
    border-radius: 2rem 1.5rem 1.8rem 1.6rem / 1.6rem 1.9rem 1.5rem 1.8rem;
  }

  .lobby-intro__inner::before {
    inset: 7px;
    border-radius: 1.7rem 1.3rem 1.5rem 1.4rem / 1.3rem 1.6rem 1.2rem 1.5rem;
  }

  .lobby-intro__head h2 {
    font-size: clamp(1.55rem, 8.5vw, 2.15rem);
  }

  .lobby-intro__head p {
    font-size: 0.9rem;
  }

  .lobby-intro__card {
    padding: 16px 14px;
  }

  .lobby-intro__note {
    flex-wrap: wrap;
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .lobby-intro__value {
    font-size: 1.28rem;
  }

  .olympus-perks {
    width: min(var(--container), calc(100% - 20px));
    margin-bottom: 34px;
  }

  .olympus-perks__shell {
    padding: 22px 14px 16px;
    border-radius: 1.8rem 1rem 1.6rem 1.2rem / 1.2rem 1.6rem 1.1rem 1.45rem;
  }

  .olympus-perks__shell::before {
    inset: 7px;
    border-radius: 1.55rem 0.85rem 1.35rem 1rem / 1rem 1.35rem 0.9rem 1.2rem;
  }

  .olympus-perks__frieze {
    display: none;
  }

  .olympus-perks__kicker {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
  }

  .olympus-perks__head h2 {
    margin-top: 14px;
    font-size: clamp(1.5rem, 8.8vw, 2.18rem);
  }

  .olympus-perks__head p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .olympus-perks__grid {
    margin-top: 22px;
  }

  .olympus-perks__card,
  .olympus-perks__card--vip,
  .olympus-perks__card--support {
    min-height: 405px;
    padding: 210px 15px 15px;
    border-radius: 17px 9px 15px 11px / 11px 17px 9px 15px;
  }

  .olympus-perks__card::before {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .olympus-perks__card::after {
    inset: 8px;
    border-radius: 13px 6px 12px 8px / 8px 13px 6px 12px;
  }

  .olympus-perks__art-wrap {
    height: 215px;
  }

  .olympus-perks__art,
  .olympus-perks__card--vip .olympus-perks__art {
    max-height: 212px;
  }

  .olympus-perks__card--rewards .olympus-perks__art {
    max-height: 195px;
  }

  .olympus-perks__content {
    gap: 10px;
  }

  .olympus-perks__content h3 {
    font-size: clamp(1.22rem, 7vw, 1.62rem);
  }

  .olympus-perks__content p {
    font-size: 0.86rem;
  }

  .olympus-perks__metric {
    min-height: 48px;
    padding: 9px 10px;
  }

  .olympus-perks__button {
    width: 100%;
    min-height: 46px;
    font-size: 0.86rem;
  }

  .coming-soon {
    width: min(var(--container), calc(100% - 20px));
    margin-bottom: 32px;
  }

  .coming-soon__inner {
    padding: 20px 0;
  }

  .coming-soon__copy h2 {
    font-size: clamp(1.65rem, 8.8vw, 2.35rem);
  }

  .coming-soon__lead {
    font-size: 0.94rem;
  }

  .coming-soon__text {
    font-size: 0.88rem;
  }

  .coming-soon__stage {
    min-height: 360px;
    padding: 8px 0;
  }

  .coming-soon__ring {
    width: min(82vw, 300px);
    transform: translate3d(0, 0, -355px) scale(1.05);
  }

  .coming-soon__card img {
    border-radius: 18px;
  }

  .game-showcase {
    width: min(1000px, calc(100% - 20px));
    margin-bottom: 48px;
    gap: 12px;
    scroll-margin-top: 68px;
  }

  .game-showcase__head span {
    font-size: 0.66rem;
    letter-spacing: 1.5px;
  }

  .game-showcase__head h2 {
    font-size: clamp(1.35rem, 8vw, 1.85rem);
  }

  .game-frame-shell {
    border-radius: 16px;
    max-height: 48vh;
  }

  .game-frame-shell::before {
    display: none;
  }

  .bonus-modal {
    min-height: 0;
    padding: 26px 20px 22px;
    border-radius: 22px;
  }

  .bonus-modal__art {
    top: 16px;
    right: 38px;
    opacity: 0.42;
  }

  .bonus-modal__art img {
    width: 150px;
  }

  .bonus-modal__content {
    min-height: 260px;
  }

  .bonus-modal h2 {
    font-size: clamp(1.95rem, 11vw, 2.8rem);
  }

  .bonus-claim {
    width: 100%;
  }

  .menu-button {
    position: static;
    z-index: 45;
    display: inline-grid !important;
    background: rgba(12, 15, 24, 0.92);
  }

  .brand-badge {
    width: 34px;
    height: 31px;
    font-size: 0.8rem;
  }

  .brand-title {
    font-size: 0.92rem;
    letter-spacing: -0.2px;
  }

  .brand-copy small,
  .age-chip,
  .topbar-actions > .balance-chip,
  .topbar-actions > .daily-header-button,
  .topbar-actions > .login-link,
  .topbar-actions > .signup-pill,
  .topbar-actions > .logout-link,
  .topbar-actions > .user-chip {
    display: none !important;
  }

  .mobile-menu__actions {
    grid-template-columns: 1fr;
  }

  .mobile-menu__actions .balance-chip {
    justify-content: center;
  }

  .mobile-menu__actions .daily-header-button {
    justify-self: center;
  }

  .mobile-menu__actions .login-link,
  .mobile-menu__actions .logout-link {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 430px) {
  .provider-strip,
  .coming-soon,
  .coming-soon__inner,
  .coming-soon__stage,
  .casino-feature,
  .vip-club-panel,
  .support-oracle,
  .olympus-perks {
    max-width: 100%;
    overflow-x: clip;
  }

  .brand-title {
    gap: 0.18em;
    font-size: 0.84rem;
  }

  .brand-badge {
    display: none;
  }

  .home-hero {
    padding-top: 18px;
  }

  .hero-copy {
    padding: 22px 16px 0;
  }

  .hero-badge {
    margin-bottom: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 3.4rem);
  }

  .hero-visual {
    height: clamp(170px, 46vw, 215px);
  }

  .hero-figure {
    width: min(88%, 300px);
  }

  .provider-promo {
    gap: 8px;
    padding: 14px 12px;
  }

  .provider-promo__coin {
    width: 48px;
    height: 46px;
    border-radius: 14px;
  }

  .provider-promo__coin img {
    width: 42px;
    height: 40px;
  }

  .provider-promo__kicker {
    font-size: 0.64rem;
    letter-spacing: 1px;
  }

  .provider-promo__headline {
    font-size: clamp(0.86rem, 4.6vw, 1.1rem);
  }

  .provider-track img {
    width: 130px;
    height: 40px;
  }

  .lobby-intro__head h2 {
    font-size: clamp(1.38rem, 9vw, 1.85rem);
  }

  .lobby-intro__card h3 {
    font-size: 0.94rem;
  }

  .olympus-perks__head h2 {
    font-size: clamp(1.32rem, 9.2vw, 1.78rem);
  }

  .olympus-perks__card,
  .olympus-perks__card--vip,
  .olympus-perks__card--support {
    min-height: 390px;
    padding-top: 198px;
  }

  .olympus-perks__art-wrap {
    height: 202px;
  }

  .olympus-perks__art,
  .olympus-perks__card--vip .olympus-perks__art {
    max-height: 200px;
  }

  .olympus-perks__card--rewards .olympus-perks__art {
    max-height: 184px;
  }

  .olympus-perks__metric {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .olympus-perks__metric strong {
    text-align: left;
  }

  .coming-soon__copy h2 {
    font-size: clamp(1.45rem, 9.5vw, 1.9rem);
  }

  .coming-soon__stage {
    min-height: 330px;
  }

  .coming-soon__ring {
    width: min(88vw, 275px);
    transform: translate3d(0, 0, -325px) scale(1.04);
  }

  .game-showcase__head h2 {
    font-size: clamp(1.22rem, 8vw, 1.65rem);
  }

  .form-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1120px) {
  .casino-feature,
  .vip-club-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .casino-feature__copy,
  .vip-club-panel__copy {
    max-width: 760px;
    justify-self: start;
  }

  .casino-feature__stage {
    min-height: 460px;
  }

  .vip-club-panel__stage {
    min-height: 520px;
  }

  .support-oracle__grid {
    grid-template-columns: 1fr;
  }

  .support-oracle__art-card {
    min-height: 330px !important;
    order: -1;
  }

  .solara-footer__brand-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solara-footer__cookie {
    width: max-content;
  }

  .cookie-modal__actions {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .casino-feature,
  .vip-club-panel,
  .support-oracle {
    width: min(var(--container), calc(100% - 28px));
    margin-bottom: 48px;
    scroll-margin-top: 78px;
  }

  .casino-feature__copy,
  .vip-club-panel__copy,
  .support-oracle__copy {
    max-width: none;
    text-align: center;
  }

  .solara-footer__inner {
    width: min(var(--container), calc(100% - 28px));
  }

  .solara-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .solara-footer__nav div:last-child {
    grid-column: 1 / -1;
  }

  .cookie-modal {
    bottom: 8px;
    padding: 0 8px;
  }

  .cookie-modal__panel {
    grid-template-columns: auto minmax(0, 1fr);
    max-height: none;
    overflow: hidden;
    gap: 8px 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .cookie-modal__crest {
    width: 42px;
    height: 42px;
  }

  .cookie-modal__options {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
  }

  .cookie-modal__actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .cookie-modal__actions [data-cookie-save] {
    display: none;
  }

  .casino-feature__kicker {
    margin-inline: auto;
  }

  .casino-feature h2,
  .vip-club-panel h2,
  .support-oracle h2 {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
  }

  .casino-feature__stats {
    max-width: 680px;
    margin-inline: auto;
  }

  .casino-feature__stage {
    min-height: 420px;
  }

  .casino-feature__main-art {
    width: min(92%, 510px);
  }

  .vip-club-panel__stage {
    min-height: 470px;
  }

  .vip-club-panel__emblem {
    width: min(82%, 460px);
  }

  .vip-club-panel__perks div {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .casino-feature,
  .vip-club-panel,
  .support-oracle {
    width: min(var(--container), calc(100% - 20px));
    margin-bottom: 36px;
  }

  .casino-feature {
    min-height: 0;
  }

  .casino-feature h2,
  .vip-club-panel h2,
  .support-oracle h2 {
    font-size: clamp(1.55rem, 8.9vw, 2.25rem);
  }

  .casino-feature__copy p,
  .vip-club-panel__copy > p,
  .support-oracle__copy p {
    font-size: 0.9rem;
    line-height: 1.56;
  }

  .solara-footer {
    padding-top: 34px;
  }

  .solara-footer__inner {
    width: min(var(--container), calc(100% - 20px));
    gap: 22px;
    justify-items: center;
    text-align: center;
  }

  .solara-footer__brand-panel {
    justify-items: center;
    padding-bottom: 20px;
  }

  .solara-footer__brand {
    width: max-content;
  }

  .solara-footer__cookie {
    width: max-content;
  }

  .solara-footer__nav {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    width: 100%;
  }

  .solara-footer__nav div {
    justify-items: center;
  }

  .solara-footer__nav div:last-child {
    grid-column: auto;
  }

  .solara-footer__badges {
    justify-content: center;
  }

  .solara-footer__fineprint {
    text-align: center;
  }

  .solara-footer__badges span {
    min-height: 34px;
    font-size: 0.66rem;
  }

  .cookie-modal h2 {
    font-size: clamp(0.98rem, 5.5vw, 1.16rem);
  }

  .cookie-modal p {
    font-size: 0.74rem;
  }

  .cookie-modal__panel {
    width: min(360px, calc(100vw - 16px));
    padding: 10px;
  }

  .cookie-modal__kicker {
    display: none;
  }

  .cookie-modal__crest {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.78rem;
  }

  .cookie-modal__primary,
  .cookie-modal__ghost {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .casino-feature__stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .casino-feature__stats div {
    min-height: 64px;
    padding: 12px;
  }

  .casino-feature__button {
    width: 100%;
    min-height: 50px;
  }

  .casino-feature__stage {
    min-height: 340px;
  }

  .casino-feature__stage::before {
    inset: 10% 2% 12%;
  }

  .casino-feature__main-art {
    width: min(100%, 390px);
  }

  .casino-feature__coin {
    width: 72px;
  }

  .casino-feature__coin--one {
    right: 1%;
    bottom: 12%;
  }

  .casino-feature__coin--two {
    left: 0;
    top: 7%;
  }

  .casino-feature__ticket {
    right: 0;
    top: 5%;
    min-width: 124px;
    padding: 10px 12px;
  }

  .vip-club-panel__stage {
    min-height: 420px;
  }

  .vip-club-panel__stage::before {
    inset: 5% 2% 21%;
  }

  .vip-club-panel__emblem {
    width: min(100%, 390px);
  }

  .vip-club-panel__tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    right: 2%;
    left: 2%;
    gap: 8px;
  }

  .vip-club-panel__tiers span {
    min-height: 72px;
    font-size: 0.66rem;
  }

  .vip-club-panel__tiers img {
    width: 38px;
    height: 38px;
  }

  .vip-club-panel__perks div {
    padding: 13px;
  }

  .support-oracle__grid article {
    min-height: 190px;
    padding: 18px;
  }

  .support-oracle__art-card {
    min-height: 290px !important;
  }

  .support-oracle__art-card img {
    width: min(92%, 310px);
  }
}

@media (max-width: 430px) {
  .casino-feature h2,
  .vip-club-panel h2,
  .support-oracle h2 {
    font-size: clamp(1.35rem, 9.5vw, 1.86rem);
  }

  .casino-feature__stage {
    min-height: 300px;
  }

  .casino-feature__coin {
    width: 58px;
  }

  .casino-feature__ticket {
    min-width: 112px;
  }

  .casino-feature__ticket strong {
    font-size: 1.28rem;
  }

  .vip-club-panel__stage {
    min-height: 370px;
  }

  .vip-club-panel__tiers span {
    min-height: 66px;
  }

  .support-oracle__art-card {
    min-height: 250px !important;
  }
}

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