﻿@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Extrabld.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #fff7e6;
  --color-bg-soft: #fffaf0;
  --color-card: #ffffff;
  --color-navy: #0b1b3f;
  --color-blue: #174ea6;
  --color-red: #d9293f;
  --color-gold: #ffc94a;
  --color-gold-dark: #d99a00;
  --color-text: #13213a;
  --color-muted: #5d6678;
  --color-border: rgba(19, 33, 58, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(19, 33, 58, 0.08);
  --shadow-md: 0 18px 45px rgba(19, 33, 58, 0.14);
  --shadow-gold: 0 10px 24px rgba(217, 154, 0, 0.35);
  --section-padding-desktop: 72px;
  --section-padding-mobile: 44px;
  --container-width: 1180px;
  --header-height: 72px;
  --cream: #fff2c7;
  --success: #168a55;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

img,
iframe,
table,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--color-blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--color-red);
}

p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--color-navy);
  font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.024em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 4.7vw, 4.45rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

ul,
ol {
  margin-top: 0;
}

button,
summary {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 201, 74, 0.9);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 48px), var(--container-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-navy);
  padding: 0.65rem 1rem;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section,
.section-large,
.section-compact {
  padding-block: var(--section-padding-desktop);
}

.section-large {
  padding-block: 54px 64px;
}

.hero.section-large {
  padding-block: 44px 76px;
}

.section-compact {
  padding-block: 34px;
}

.section-soft,
.section-gold {
  background:
    radial-gradient(circle at 14% 0, rgba(255, 201, 74, 0.22), transparent 18rem),
    var(--color-bg-soft);
}

.section-blue {
  background:
    radial-gradient(circle at 80% 0, rgba(255, 201, 74, 0.16), transparent 18rem),
    linear-gradient(135deg, #101733 0%, #0d275b 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0.8rem;
  color: var(--color-red);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid var(--color-gold);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(217, 41, 63, 0.45);
}

.button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 0.86rem 1.45rem;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button-primary {
  background: linear-gradient(180deg, #fff94f 0%, #ffc928 52%, #f0a400 100%);
  border-color: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-gold), inset 0 2px 0 rgba(255, 255, 255, 0.48);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -75%;
  z-index: -1;
  width: 52%;
  transform: skewX(-18deg);
  background: rgba(255, 255, 255, 0.42);
  transition: left 420ms ease;
}

.button-primary:hover::after {
  left: 125%;
}

.button-real-cta,
[data-casino-link].button-primary,
.button-real {
  animation: realCtaGlow 3.8s ease-in-out infinite;
}

.button-real-cta:hover,
[data-casino-link].button-primary:hover {
  box-shadow: 0 14px 34px rgba(217, 154, 0, 0.42), inset 0 2px 0 rgba(255, 255, 255, 0.58);
}

.button-real-cta::before {
  content: "\2605";
  display: inline-grid;
  place-items: center;
  margin-right: 0.7rem;
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1;
}

.button-secondary {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08), 0 10px 28px rgba(15, 23, 42, 0.08);
}

.button-real {
  background: linear-gradient(180deg, #ff4b5f 0%, #e9293d 100%);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(217, 41, 63, 0.28), inset 0 2px 0 rgba(255, 255, 255, 0.32);
}

.button-real:hover {
  color: #ffffff;
}

.button:hover {
  transform: translateY(-2px);
  color: var(--color-navy);
}

@keyframes realCtaGlow {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.14) brightness(1.04);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background:
    radial-gradient(circle at 7% 50%, rgba(95, 32, 111, 0.42), transparent 18rem),
    linear-gradient(90deg, #080a2c 0%, #070c37 42%, #0e2f86 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(2, 5, 22, 0.42);
}

@media (min-width: 1024px) {
  .site-header,
  .header-inner {
    height: 82px;
  }

  html {
    scroll-padding-top: 102px;
  }
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
  color: #ffffff;
  text-decoration: none;
}

.logo-mark {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(55, 145, 255, 0.65))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.36));
}

.logo-wordmark {
  display: grid;
  gap: 1px;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: none;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
}

.logo-main,
.logo-sub {
  display: block;
  font-family: "Proxima Nova", system-ui, sans-serif;
  font-weight: 950;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.78),
    0 0 14px rgba(255, 201, 74, 0.24);
}

.logo-main {
  color: #ffffff;
  font-size: 1.18rem;
}

.logo-sub {
  color: #ffd84d;
  font-size: 1.1rem;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.82),
    0 0 12px rgba(255, 221, 78, 0.45),
    0 0 24px rgba(255, 201, 74, 0.24);
}

.desktop-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 22px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[href="#review"] {
  color: var(--color-gold);
}

.desktop-nav a[href="#review"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--color-gold);
  box-shadow: 0 0 18px rgba(255, 201, 74, 0.65);
}

.header-cta {
  min-width: 190px;
  min-height: 54px;
  border-radius: 14px;
  font-size: 1rem;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18), 0 12px 30px rgba(255, 201, 74, 0.32), inset 0 2px 0 rgba(255, 255, 255, 0.52);
}

.mobile-menu {
  display: none;
}

.mobile-menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: none;
  min-height: 56px;
  margin: 0;
  padding: 0 max(24px, calc((100vw - var(--container-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 0%, rgba(111, 66, 255, 0.35), transparent 18rem),
    linear-gradient(90deg, #070b2d 0%, #0b1040 55%, #15117a 100%);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: #ffffff;
}

.breadcrumbs a::before {
  content: "\2302";
  margin-right: 0.55rem;
  color: #ffffff;
}

.breadcrumbs span:last-child {
  color: var(--color-gold);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  background:
    radial-gradient(circle at 82% 14%, rgba(97, 42, 255, 0.55), transparent 26rem),
    radial-gradient(circle at 4% 90%, rgba(255, 41, 133, 0.36), transparent 22rem),
    radial-gradient(circle at 52% 48%, rgba(23, 78, 166, 0.24), transparent 30rem),
    linear-gradient(115deg, #08091f 0%, #090d38 45%, #10105b 73%, #1d1284 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px) 30px 26px / 100px 100px,
    radial-gradient(circle, rgba(255, 201, 74, 0.58) 0 1.5px, transparent 3px) 88px 82px / 146px 146px;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -24%;
  width: 48%;
  height: 42%;
  pointer-events: none;
  opacity: 0.75;
  background:
    linear-gradient(18deg, transparent 32%, rgba(255, 201, 74, 0.75) 33%, transparent 34%),
    linear-gradient(24deg, transparent 43%, rgba(255, 41, 133, 0.5) 44%, transparent 45%),
    radial-gradient(ellipse at 0 100%, rgba(255, 201, 74, 0.34), transparent 62%);
  filter: blur(0.2px);
}

.hero-sparkle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 201, 74, 0.75);
  pointer-events: none;
  animation: sparkleFloat 6s ease-in-out infinite;
}

.sparkle-one {
  width: 12px;
  height: 12px;
  left: 9%;
  top: 33%;
}

.sparkle-two {
  width: 16px;
  height: 16px;
  right: 13%;
  top: 18%;
  animation-delay: 1.4s;
}

.sparkle-three {
  width: 16px;
  height: 16px;
  right: 27%;
  bottom: 16%;
  animation-delay: 2.2s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: start;
}

.hero-character {
  display: none;
}

.hero-copy-block {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  color: #ffffff;
  padding: clamp(18px, 2.2vw, 28px) 0;
}

.hero-copy-block .eyebrow {
  display: inline-flex;
  align-self: flex-start;
  min-height: 36px;
  border-radius: 999px;
  background: rgba(7, 12, 48, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 201, 74, 0.24);
  color: var(--color-gold);
  margin-bottom: 18px;
  padding: 0.42rem 0.82rem;
  letter-spacing: 0.02em;
}

.hero-copy-block .eyebrow::before {
  content: "\2605";
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-gold);
  font-size: 0.95rem;
}

.hero-copy-block h1 {
  max-width: 650px;
  color: #ffffff;
  margin-bottom: 0.35rem;
  font-size: clamp(3.8rem, 5.15vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

.hero-copy-block h1 span:last-child {
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(180deg, #fffbd0 0%, #ffdf35 50%, #f0a400 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: none;
}

.hero-copy-block h1 span:last-child::after {
  content: "";
  display: block;
  width: 86%;
  height: 7px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0a400, transparent);
  transform: rotate(-3deg);
}

.hero-copy-block h1 span {
  display: block;
}

.hero-copy {
  max-width: 630px;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.43;
  font-weight: 500;
  text-shadow: none;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 210px;
  gap: 16px;
  max-width: 560px;
  margin-top: 18px;
}

.hero-actions .button {
  width: 100%;
  min-height: 58px;
  border-radius: 13px;
  font-size: 1.05rem;
}

.hero-actions .button-secondary {
  border-color: rgba(86, 113, 255, 0.7);
  background: rgba(8, 13, 52, 0.46);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hero-actions .button-secondary::before {
  content: "\25B6";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 0.7rem;
  border: 2px solid var(--color-gold);
  border-radius: 999px;
  color: var(--color-gold);
  font-size: 0.68rem;
}

.hero-actions .button-secondary:hover {
  color: #ffffff;
  border-color: var(--color-gold);
}

.hero-preview {
  order: 2;
  position: relative;
  display: block;
  min-width: 0;
  min-height: 500px;
  height: auto;
  align-self: start;
  margin-top: 34px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 31, 97, 0.96), rgba(9, 12, 48, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 2px;
  background:
    linear-gradient(135deg, rgba(40, 132, 255, 0.95), rgba(255, 201, 74, 0.18) 42%, rgba(255, 64, 174, 0.9));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.hero-preview::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 201, 74, 0.28), transparent 14rem),
    radial-gradient(circle at 88% 8%, rgba(255, 41, 133, 0.18), transparent 14rem);
}

.hero-demo-player {
  padding: 0;
}

.hero-demo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-demo-frame::before {
  content: none;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  color: #ffffff;
  text-align: center;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.hero-demo-overlay {
  display: grid;
  place-items: center;
  padding: 0;
}

.demo-preview-card {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 24px 28px 26px;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 86% 18%, rgba(55, 127, 255, 0.22), transparent 18rem),
    linear-gradient(180deg, #0c1450 0%, #090d31 100%);
}

.demo-preview-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  border-radius: 20px;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  padding: 0.55rem 0.85rem 0.55rem 4.2rem;
  font-size: 1.08rem;
  font-weight: 900;
}

.demo-preview-topbar::before {
  content: "\2605";
  position: absolute;
  left: 0.2rem;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-gold);
  border-radius: 999px;
  transform: translateY(-50%);
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 201, 74, 0.22);
}

.hero-demo-frame .demo-fullscreen {
  top: 22px;
  left: 22px;
}

.demo-preview-topbar span:last-child {
  border-radius: 999px;
  background: rgba(8, 13, 52, 0.62);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  padding: 0.48rem 1rem;
  font-size: 0.86rem;
  white-space: nowrap;
}

.demo-preview-media {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  align-self: center;
  min-height: 0;
}

.demo-preview-card img,
.demo-launch-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-preview-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1226 / 818;
  max-height: 295px;
  border: 1px solid rgba(139, 165, 255, 0.68);
  border-radius: 20px;
  object-fit: cover;
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.03),
    0 24px 54px rgba(0, 0, 0, 0.32);
}

.demo-preview-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 201, 74, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(3, 9, 32, 0.02), rgba(3, 9, 32, 0.18));
}

.slot-card {
  border: 10px solid #ffd748;
  border-radius: 26px;
  background: linear-gradient(180deg, #fffdf0 0%, #fff7ce 52%, #123f88 53%, #071a45 100%);
  box-shadow:
    0 30px 70px rgba(38, 17, 112, 0.35),
    0 0 0 14px rgba(255, 255, 255, 0.18),
    inset 0 0 0 4px rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.slot-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #e22c48 0%, #b7092b 100%);
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 900;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 24px 18px 18px;
}

.reel-symbol {
  position: relative;
  aspect-ratio: 1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: inset 0 -8px 0 rgba(11, 27, 63, 0.08), 0 16px 30px rgba(11, 27, 63, 0.14);
}

.star-symbol::before,
.coin-symbol::before,
.flag-symbol::before {
  content: "";
  position: absolute;
  inset: 24%;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 70%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
}

.coin-symbol::before {
  inset: 20%;
  border-radius: 999px;
  clip-path: none;
  background: radial-gradient(circle, #fff8bc 0 18%, var(--color-gold) 20% 64%, #c37b00 66%);
}

.flag-symbol::before {
  inset: 22% 18%;
  border-radius: 8px;
  clip-path: none;
  background: linear-gradient(180deg, var(--color-red) 0 33%, #fff 33% 66%, var(--color-blue) 66%);
}

.slot-title {
  padding: 0 18px 18px;
  text-align: center;
}

.slot-title strong {
  display: block;
  color: #071a45;
  font-size: 1.45rem;
  line-height: 1.05;
}

.slot-title span {
  color: rgba(255, 255, 255, 0.46);
  font-weight: 900;
}

.slot-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 16px;
}

.slot-stats span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  padding: 0.42rem 0.5rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.preview-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  border: 0;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #ff2db7 0%, #ff4e89 52%, #ff7d32 100%);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(255, 47, 139, 0.36), inset 0 2px 0 rgba(255, 255, 255, 0.28);
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.preview-real-link {
  position: static;
  z-index: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff4f8b 0%, #ef1f63 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(217, 41, 63, 0.3);
  padding: 0.82rem 1.55rem;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.preview-real-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.demo-preview-actions {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(139, 165, 255, 0.22);
  padding: 12px 22px;
}

.demo-preview-actions span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.demo-preview-actions span::before {
  content: "\25C7";
  margin-right: 0.8rem;
  color: rgba(255, 255, 255, 0.56);
}

.preview-play-button span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-size: 0.74rem;
}

.preview-play-button:hover {
  transform: translate(-50%, -53%);
  box-shadow: 0 20px 44px rgba(122, 0, 231, 0.42), inset 0 2px 0 rgba(255, 255, 255, 0.32);
}

.demo-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: #ffffff;
}

.demo-frame iframe[hidden] {
  display: none;
}

.demo-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.demo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-navy);
  box-shadow: 0 10px 28px rgba(11, 27, 63, 0.24);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.demo-fullscreen {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 11;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-navy);
  box-shadow: 0 10px 28px rgba(11, 27, 63, 0.24);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.demo-fullscreen:hover,
.demo-close:hover {
  transform: translateY(-2px);
}

.demo-close[hidden] {
  display: none;
}

.quick-facts {
  margin-top: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 52, 0.04), transparent 28px),
    var(--color-bg);
}

.quick-facts.section-compact {
  padding-block: 18px 30px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(19, 33, 58, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: none;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.quick-grid article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 18px;
  border-right: 1px solid rgba(19, 33, 58, 0.1);
}

.quick-grid article:last-child {
  border-right: 0;
}

.quick-grid img {
  width: 26px;
  height: 26px;
}

.quick-grid strong {
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.quick-grid span {
  display: none;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head.align-left {
  margin-inline: 0;
  text-align: left;
}

.content-card,
.verification-card,
.game-facts-card,
.feature-card,
.step-card,
.method-card,
.check-card,
.comparison-card,
.similar-card,
.author-box,
.pros-card,
.cons-card,
.status-grid article,
.overview-copy,
.stat-panel,
.legal-card {
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.content-card,
.game-facts-card,
.overview-copy,
.legal-card {
  padding: 30px;
}

.prose p,
.section-head p,
.content-card p,
.faq-answer p,
.info-list li,
.comparison-card p,
.check-card li,
.legal-card p,
.legal-card li {
  color: #243451;
  font-weight: 400;
}

.text-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.verification-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  padding: 30px;
}

.verification-icon,
.mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, #ffffff 0 18%, transparent 20%),
    linear-gradient(135deg, var(--color-gold), var(--color-red) 54%, var(--color-blue));
  box-shadow: var(--shadow-sm);
}

.check-list {
  display: grid;
  gap: 8px;
  padding-left: 1.1rem;
  color: var(--color-text);
  font-weight: 650;
}

.card-actions,
.internal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.internal-links {
  margin-top: 22px;
}

.internal-links span {
  color: var(--color-navy);
  font-weight: 900;
}

.internal-links a {
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  color: var(--color-navy);
  padding: 0.44rem 0.72rem;
  font-weight: 850;
  text-decoration: none;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.overview-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: end;
  gap: 20px 26px;
}

.overview-copy > .eyebrow,
.overview-copy > h2,
.overview-copy > p,
.overview-copy > .last-checked {
  grid-column: 1;
}

.overview-key-facts {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  border-radius: 14px;
  background: #f7f8fd;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  padding: 18px;
}

.fact-card span {
  color: #4c4376;
  font-size: 0.86rem;
  font-weight: 900;
}

.fact-card strong {
  color: var(--color-navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.last-checked,
.source-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  background: rgba(255, 201, 74, 0.24);
  color: var(--color-navy);
  padding: 0.36rem 0.8rem;
  font-weight: 900;
}

.facts-table,
.sources-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
}

.facts-table th,
.facts-table td,
.sources-table th,
.sources-table td {
  border: 1px solid rgba(23, 78, 166, 0.22);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.facts-table th,
.sources-table th {
  width: 34%;
  background: #f7f8ff;
  color: #4c4376;
  font-weight: 900;
}

.facts-table td,
.sources-table td {
  background: #fffefa;
  color: #122142;
}

.mobile-details {
  display: none;
}

.callout {
  margin-top: 14px;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--color-navy);
  font-weight: 850;
  line-height: 1.5;
}

.callout-warning {
  border: 1px solid rgba(217, 154, 0, 0.28);
  background: rgba(255, 201, 74, 0.22);
}

.callout-info {
  border: 1px solid rgba(23, 78, 166, 0.18);
  background: rgba(23, 78, 166, 0.08);
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #112a59 0%, #081b3f 100%) padding-box,
    linear-gradient(135deg, rgba(255, 201, 74, 0.92), rgba(217, 41, 63, 0.54), rgba(23, 78, 166, 0.82)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 26px 76px rgba(11, 27, 63, 0.28);
  padding: 12px;
}

.demo-shell.is-playing {
  grid-template-columns: minmax(0, 1fr);
}

.demo-shell.is-playing .demo-info-card {
  display: none;
}

.demo-shell.is-playing .demo-frame {
  min-height: min(650px, 56vw);
}

.demo-shell .demo-frame {
  position: relative;
  min-height: 560px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 12, 32, 0.72), rgba(5, 12, 32, 0.34), rgba(5, 12, 32, 0.72)),
    url("../img/trump-it-bonanza-demo_play.webp") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), inset 0 0 0 8px rgba(255, 255, 255, 0.06);
}

.demo-shell .demo-frame::before {
  content: none;
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 14px;
  pointer-events: none;
  opacity: 0.3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 54px 54px;
}

.demo-overlay-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(560px, calc(100% - 32px));
  margin-top: 0;
}

.demo-launch-card {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-items: center;
  gap: 14px;
  width: min(470px, calc(100% - 34px));
  height: auto;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 90px rgba(5, 12, 32, 0.38);
  padding: clamp(22px, 4vw, 46px);
  backdrop-filter: blur(10px);
}

.demo-launch-card img {
  position: relative;
  z-index: 1;
  width: min(440px, 58%);
  height: auto;
  aspect-ratio: 1226 / 818;
  border: 7px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.12) contrast(1.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.demo-launch-card::before {
  content: none;
}

.demo-launch-card > * {
  position: relative;
  z-index: 1;
}

.demo-launch-card p {
  max-width: 520px;
  margin: 0;
  color: #263a61;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: none;
}

.demo-badge {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy);
  box-shadow: 0 14px 34px rgba(5, 12, 32, 0.24);
  padding: 0.52rem 0.9rem;
  font-weight: 900;
}

.demo-message {
  max-width: 520px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  padding: 0.72rem 0.9rem;
  font-weight: 900;
}

.demo-info-card {
  display: none;
  align-self: stretch;
  border-radius: 16px;
  background: #f8f9ff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  padding: 22px;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 1.1rem;
}

.demo-info-mobile {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.demo-info-mobile span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  font-weight: 900;
}

.gameplay-proof {
  width: min(920px, 100%);
  margin: 26px auto 0;
  border: 10px solid #0d234f;
  border-radius: 24px;
  background: #0d234f;
  box-shadow: 0 24px 60px rgba(11, 27, 63, 0.22);
  overflow: hidden;
}

.gameplay-proof img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.gameplay-proof figcaption {
  margin: 0;
  background: #ffffff;
  color: #263a61;
  padding: 12px 16px;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 600;
}

.rtp-layout,
.mobile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: center;
}

.attention-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.status-grid,
.steps-grid,
.feature-grid,
.method-grid,
.pros-cons-grid,
.comparison-grid,
.checklist-grid,
.similar-grid,
.paytable-summary {
  display: grid;
  gap: 18px;
}

.status-grid {
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
}

.steps-grid,
.method-grid,
.similar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checklist-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comparison-grid,
.pros-cons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.step-card,
.method-card,
.check-card,
.comparison-card,
.similar-card,
.pros-card,
.cons-card,
.status-grid article {
  padding: 22px;
}

.status-grid article {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.status-grid article span {
  color: #4c5570;
  text-align: right;
  line-height: 1.35;
}

.feature-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.feature-brief {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 201, 74, 0.3), transparent 12rem),
    radial-gradient(circle at 88% 16%, rgba(255, 41, 133, 0.22), transparent 14rem),
    linear-gradient(145deg, #0b123f 0%, #102b67 100%);
  box-shadow: 0 22px 58px rgba(11, 27, 63, 0.18);
  color: #ffffff;
  padding: 24px;
}

.feature-brief .eyebrow {
  color: var(--color-gold);
}

.feature-brief h3 {
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.feature-brief p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.5;
}

.feature-brief img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 14px 0;
  border: 1px solid rgba(139, 165, 255, 0.46);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

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

.feature-brief li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.4;
}

.feature-brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 12px;
  height: 12px;
  border: 3px solid var(--color-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.step-card,
.method-card,
.check-card,
.similar-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.step-card:hover,
.method-card:hover,
.check-card:hover,
.similar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: start;
  column-gap: 14px;
  row-gap: 6px;
  min-height: 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 201, 74, 0.16), transparent 38%),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(19, 33, 58, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(90deg, rgba(255, 201, 74, 0.22), transparent 42%),
    #ffffff;
  box-shadow: 0 16px 34px rgba(19, 33, 58, 0.1);
}

.feature-card img,
.method-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}

.feature-card img {
  grid-row: 1 / span 3;
  width: 34px;
  height: 34px;
  margin: 2px 0 0;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.18;
}

.feature-card p {
  margin: 0;
  color: #4f5b74;
  font-size: 0.95rem;
  line-height: 1.48;
}

.feature-card span,
.similar-card .badge,
.comparison-card span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 201, 74, 0.22);
  color: var(--color-navy);
  padding: 0.32rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card span {
  margin-top: 6px;
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
}

.step-card > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 900;
}

.stat-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 201, 74, 0.16), transparent 12rem),
    linear-gradient(135deg, #111942, #173f87);
}

.stat-panel article {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  color: #ffffff;
}

.stat-panel span,
.stat-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.stat-panel strong {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.volatility-meter {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.volatility-meter span {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-gold), var(--color-red));
}

.paytable-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 0.35fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.source-badge {
  justify-self: end;
}

.below-note {
  max-width: 880px;
  margin: 22px auto 0;
  text-align: center;
}

.section-blue .content-card {
  background: #ffffff;
}

.phone-mockup {
  position: relative;
  width: min(560px, 100%);
  min-height: auto;
  margin-inline: auto;
  border: 12px solid #101733;
  border-radius: 34px;
  background: #101733;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  padding: 10px;
}

.phone-top {
  width: 86px;
  height: 7px;
  margin: 2px auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.phone-screen {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 0, rgba(255, 201, 74, 0.18), transparent 12rem),
    linear-gradient(180deg, #173f87 0%, #081733 100%);
  padding: 12px;
  text-align: center;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  aspect-ratio: 844 / 390;
  border-radius: 16px;
  border: 5px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(11, 27, 63, 0.24);
  object-fit: cover;
  object-position: center;
}

.phone-screen strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.phone-screen span,
.phone-screen p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.pros-card {
  box-shadow: inset 5px 0 0 rgba(24, 132, 92, 0.65), var(--shadow-sm);
}

.cons-card {
  box-shadow: inset 5px 0 0 rgba(217, 41, 63, 0.65), var(--shadow-sm);
}

.author-box {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-red) 54%, var(--color-blue));
  color: #ffffff;
  font-weight: 900;
}

.sources-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--color-navy);
  padding: 16px 18px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 201, 74, 0.26);
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-navy);
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  padding: 0 18px 18px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 46px 0 26px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 201, 74, 0.09), transparent 12rem),
    linear-gradient(110deg, #101733 0%, #0a1c42 46%, #133c82 100%);
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background:
    radial-gradient(circle, #ffd955 0 2px, transparent 3px) 20px 24px / 140px 140px,
    radial-gradient(circle, #ffffff 0 1px, transparent 2px) 74px 90px / 180px 180px;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.footer-logo .logo-mark {
  width: 50px;
  height: 50px;
}

.footer-logo .logo-main {
  font-size: 1rem;
}

.footer-logo .logo-sub {
  font-size: 0.95rem;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 1.25rem;
}

.site-footer p,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-content: start;
}

.footer-links a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255, 201, 74, 0.55);
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-resource-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  padding: 16px 20px;
}

.footer-resource-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  color: #4d566b;
  padding: 0.24rem 0.52rem;
  font-size: 1.02rem;
  font-weight: 900;
  text-decoration: none;
  filter: grayscale(1);
  opacity: 0.82;
  transition: color 160ms ease, filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.footer-resource-strip a:hover {
  color: var(--color-blue);
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  display: none;
}

.legal-main {
  padding-block: 42px 58px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.legal-sidebar {
  position: sticky;
  top: 96px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 201, 74, 0.2), transparent 9rem),
    #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.legal-sidebar strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-navy);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-sidebar a {
  display: flex;
  align-items: center;
  min-height: 40px;
  border-radius: 12px;
  color: #32415f;
  padding: 0.42rem 0.64rem;
  font-size: 0.93rem;
  font-weight: 850;
  text-decoration: none;
}

.legal-sidebar a:hover,
.legal-sidebar a[aria-current="page"] {
  background: rgba(255, 201, 74, 0.2);
  color: var(--color-navy);
}

.legal-card {
  max-width: none;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 44px);
}

.legal-hero-card,
.legal-section {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-hero-card {
  padding: 0 0 22px;
}

.legal-hero-card h1 {
  max-width: 720px;
  margin-bottom: 0.65rem;
  font-size: clamp(2.4rem, 4.4vw, 3.85rem);
  line-height: 0.96;
}

.legal-hero-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: #243451;
  font-size: 1.02rem;
  font-weight: 620;
}

.legal-section {
  margin-top: 0;
  border-top: 1px solid rgba(19, 33, 58, 0.1);
  padding: 22px 0 0;
}

.legal-section h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: #243451;
  font-weight: 560;
}

.legal-section ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.legal-actions .button {
  min-height: 48px;
}

.legal-note {
  border-top-color: rgba(255, 201, 74, 0.5);
  background: transparent;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.9;
  }
}

@keyframes characterFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (min-width: 1500px) {
  .hero-character {
    position: absolute;
    right: clamp(-26px, -1vw, 8px);
    bottom: 0;
    z-index: 1;
    display: block;
    width: clamp(240px, 17vw, 340px);
    height: auto;
    max-height: calc(100% - 150px);
    object-fit: contain;
    object-position: bottom right;
    pointer-events: none;
    filter:
      drop-shadow(0 28px 42px rgba(0, 0, 0, 0.38))
      drop-shadow(0 0 24px rgba(255, 201, 74, 0.22));
    animation: characterFloat 7s ease-in-out infinite;
  }
}

@media (max-width: 1023px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-menu-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .mobile-menu-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
  }

  .mobile-menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .overview-copy,
  .text-layout,
  .attention-grid,
  .rtp-layout,
  .mobile-layout,
  .feature-board,
  .paytable-intro,
  .faq-layout,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }

  .legal-sidebar strong {
    width: 100%;
    margin-bottom: 0;
  }

  .legal-sidebar a {
    min-height: 38px;
    background: #f7f8ff;
  }

  .hero-copy-block {
    order: 1;
  }

  .hero-preview {
    order: 2;
    min-height: 430px;
  }

  .hero-demo-frame {
    min-height: 430px;
  }

  .overview-key-facts {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .source-badge {
    justify-self: start;
  }

  .quick-grid,
  .feature-grid,
  .steps-grid,
  .method-grid,
  .checklist-grid,
  .similar-grid,
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container-width));
    max-width: min(calc(100% - 28px), var(--container-width));
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header,
  .header-inner {
    height: 64px;
    min-height: 64px;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .site-logo {
    gap: 8px;
  }

  .site-logo .logo-mark {
    width: 46px;
    height: 46px;
  }

  .site-logo .logo-main {
    font-size: 0.95rem;
  }

  .site-logo .logo-sub {
    font-size: 0.88rem;
  }

  .mobile-menu-toggle {
    flex: 0 0 44px;
  }

  .mobile-menu:not([hidden]) {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(11, 27, 63, 0.24);
    padding: 14px;
  }

  .mobile-menu a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f6f7fb;
    color: var(--color-navy);
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-menu .button {
    grid-column: 1 / -1;
    background: linear-gradient(180deg, #fff94f 0%, #ffc928 52%, #f0a400 100%);
  }

  .breadcrumbs {
    display: none;
  }

  .section,
  .section-large,
  .section-compact {
    padding-block: var(--section-padding-mobile);
  }

  #mobile {
    padding-bottom: calc(var(--section-padding-mobile) + 86px);
  }

  .section-large {
    padding-block: 24px 38px;
  }

  .hero {
    min-height: auto;
  }

  .hero.section-large {
    padding-block: 18px 28px;
  }

  .hero-grid {
    gap: 18px;
    width: min(calc(100% - 28px), var(--container-width));
    max-width: min(calc(100% - 28px), var(--container-width));
    margin-inline: auto;
    min-width: 0;
  }

  .hero-copy-block {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    min-width: 0;
    padding: 10px 0 0;
    border-radius: 16px;
    overflow: hidden;
  }

  .hero-copy-block h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.4vw, 2.46rem);
    line-height: 1.07;
    letter-spacing: -0.018em;
    font-weight: 800;
  }

  .hero-copy {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    font-size: 0.94rem;
    line-height: 1.62;
    font-weight: 500;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-copy-block .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.25;
    letter-spacing: 0.035em;
    font-weight: 700;
  }

  .hero-actions {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  .hero-actions {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .hero-preview,
  .hero-demo-frame {
    width: 100%;
    max-width: 100%;
    min-height: 286px;
    max-height: 318px;
    border-radius: 16px;
  }

  .hero-preview {
    margin-inline: auto;
    margin-top: 4px;
  }

  .hero-preview::before {
    left: 0;
    right: 0;
  }

  .demo-preview-card {
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    padding: 14px;
  }

  .demo-preview-topbar {
    display: none;
  }

  .demo-preview-actions {
    display: none;
  }

  .demo-preview-media {
    width: 100%;
    align-self: center;
  }

  .demo-preview-card img {
    width: min(100%, 330px);
    height: auto;
    max-height: none;
    aspect-ratio: 1226 / 818;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 14px;
    box-shadow:
      0 0 0 8px rgba(255, 255, 255, 0.04),
      0 16px 34px rgba(0, 0, 0, 0.28);
  }

  .hero-demo-frame .demo-fullscreen {
    top: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
  }

  .hero-demo-overlay .slot-card {
    width: min(88%, 310px);
  }

  .slot-card {
    border-width: 8px;
    border-radius: 22px;
  }

  .slot-topbar {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .slot-reels {
    gap: 8px;
    padding: 18px 12px 14px;
  }

  .reel-symbol {
    border-radius: 16px;
  }

  .slot-title {
    padding: 8px 12px;
  }

  .slot-title strong {
    font-size: 0.96rem;
  }

  .slot-title span {
    font-size: 0.72rem;
  }

  .slot-stats {
    gap: 6px;
    padding: 8px 10px 10px;
  }

  .slot-stats span {
    min-height: 28px;
    font-size: 0.66rem;
  }

  .preview-play-button {
    min-height: 42px;
    padding: 0.58rem 0.95rem;
    font-size: 0.86rem;
  }

  .preview-real-link {
    padding: 0.5rem 0.78rem;
    font-size: 0.74rem;
  }

  .quick-grid,
  .feature-grid,
  .steps-grid,
  .method-grid,
  .checklist-grid,
  .comparison-grid,
  .pros-cons-grid,
  .similar-grid,
  .status-grid,
  .paytable-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .quick-facts {
    margin-top: 0;
  }

  .quick-facts.section-compact {
    padding-block: 12px 22px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .quick-grid article {
    display: flex;
    gap: 8px;
    min-height: 58px;
    border: 0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 10px;
  }

  .quick-grid img {
    width: 28px;
    height: 28px;
  }

  .quick-grid strong {
    font-size: 0.86rem;
    line-height: 1.18;
  }

  .quick-grid span {
    display: none;
  }

  .feature-board {
    gap: 14px;
  }

  .feature-brief {
    border-radius: 18px;
    padding: 18px;
  }

  .feature-brief h3 {
    max-width: 100%;
    font-size: 1.55rem;
  }

  .feature-brief p {
    font-size: 0.94rem;
  }

  .feature-brief img {
    margin: 12px 0;
    border-radius: 12px;
  }

  .feature-brief li {
    font-size: 0.9rem;
  }

  .feature-card {
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    border-radius: 15px;
    padding: 14px;
  }

  .feature-card img {
    width: 30px;
    height: 30px;
  }

  .feature-card h3 {
    font-size: 0.98rem;
  }

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

  .content-card,
  .game-facts-card,
  .overview-copy,
  .verification-card,
  .feature-card,
  .step-card,
  .method-card,
  .check-card,
  .comparison-card,
  .similar-card,
  .pros-card,
  .cons-card,
  .author-box {
    padding: 18px;
    border-radius: 16px;
  }

  .legal-main {
    padding-block: 26px 40px;
  }

  .legal-layout {
    gap: 16px;
  }

  .legal-sidebar {
    border-radius: 16px;
  }

  .legal-sidebar a {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.84rem;
  }

  .legal-card {
    padding: 22px;
    border-radius: 18px;
  }

  .legal-hero-card,
  .legal-section {
    border-radius: 0;
  }

  .legal-hero-card h1 {
    font-size: clamp(2rem, 11vw, 2.75rem);
  }

  .legal-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .verification-card,
  .author-box {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-key-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .fact-card {
    min-height: 76px;
    padding: 14px;
  }

  .fact-card strong {
    font-size: 1rem;
  }

  .desktop-facts {
    display: none;
  }

  .mobile-details {
    display: block;
    margin-top: 12px;
    border-radius: 16px;
    background: #f7f8ff;
    padding: 2px 14px 12px;
  }

  .mobile-details summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--color-navy);
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-facts-list {
    display: grid;
    gap: 8px;
  }

  .mobile-facts-list p {
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(23, 78, 166, 0.12);
    font-size: 0.92rem;
  }

  .sources-table-wrap {
    overflow: visible;
    box-shadow: none;
  }

  .sources-table,
  .sources-table tbody,
  .sources-table tr,
  .sources-table td {
    display: block;
    width: 100%;
  }

  .sources-table thead {
    display: none;
  }

  .sources-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .sources-table tr {
    margin-bottom: 12px;
    border: 1px solid rgba(23, 78, 166, 0.16);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }

  .sources-table td {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    border: 0;
    border-bottom: 1px solid rgba(23, 78, 166, 0.1);
    padding: 12px 14px;
    font-size: 0.92rem;
    line-height: 1.45;
    background: #ffffff;
  }

  .sources-table td:last-child {
    border-bottom: 0;
  }

  .sources-table td::before {
    color: #4c4376;
    font-weight: 900;
  }

  .sources-table td:nth-child(1)::before {
    content: "Source";
  }

  .sources-table td:nth-child(2)::before {
    content: "Checked";
  }

  .sources-table td:nth-child(3)::before {
    content: "Status";
  }

  .sources-table td:nth-child(4)::before {
    content: "Updated";
  }

  .callout {
    padding: 12px;
    font-size: 0.9rem;
  }

  .demo-shell {
    grid-template-columns: minmax(0, 1fr);
    padding: 8px;
    border-radius: 18px;
  }

  .demo-shell .demo-frame {
    width: 100%;
    min-width: 0;
    aspect-ratio: auto;
    min-height: 318px;
    height: 318px;
    max-height: 360px;
    border-radius: 16px;
    box-shadow: none;
    background:
      linear-gradient(180deg, rgba(5, 12, 32, 0.22), rgba(5, 12, 32, 0.68)),
      url("../img/trump-it-bonanza-demo_play.webp") center / cover no-repeat;
  }

  .demo-shell.is-playing .demo-frame {
    min-height: 360px;
    height: 360px;
  }

  .demo-overlay {
    padding: 12px;
  }

  .demo-launch-card {
    width: min(300px, calc(100% - 28px));
    padding: 16px;
    gap: 10px;
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background:
      radial-gradient(circle at 50% 0, rgba(255, 201, 74, 0.22), transparent 9rem),
      rgba(8, 13, 52, 0.88);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(8px);
  }

  .demo-launch-card img {
    display: none;
  }

  .demo-launch-card p {
    display: none;
  }

  .demo-overlay-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 9px;
  }

  .demo-overlay-actions .button {
    min-height: 46px;
    border-radius: 13px;
    font-size: 0.9rem;
  }

  .demo-badge {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    text-align: center;
    line-height: 1.25;
  }

  .demo-fullscreen,
  .demo-close {
    width: 40px;
    height: 40px;
    top: 10px;
  }

  .demo-fullscreen {
    left: 10px;
  }

  .demo-close {
    right: 10px;
  }

  .demo-info-card {
    display: none;
  }

  .demo-info-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .demo-info-mobile span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    color: var(--color-navy);
    box-shadow: var(--shadow-sm);
    font-size: 0.82rem;
    font-weight: 750;
  }

  .gameplay-proof {
    width: 100%;
    margin-top: 18px;
    border-width: 6px;
    border-radius: 18px;
  }

  .gameplay-proof img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .gameplay-proof figcaption {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .phone-mockup {
    width: 100%;
    min-height: auto;
    max-height: none;
    border-width: 8px;
    border-radius: 24px;
    padding: 8px;
  }

  .phone-top {
    display: none;
  }

  .phone-screen {
    min-height: auto;
    padding: 10px;
    border-radius: 16px;
  }

  .phone-screen img {
    border-width: 3px;
    border-radius: 12px;
  }

  .phone-screen strong {
    font-size: 0.95rem;
  }

  .phone-screen p {
    display: none;
  }

  .faq-item button {
    min-height: 52px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-resource-strip {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 22px;
    padding: 14px;
  }

  .footer-resource-strip a {
    min-height: 34px;
    border: 1px solid rgba(19, 33, 58, 0.1);
    background: #f7f8ff;
    padding: 0.3rem 0.62rem;
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    height: calc(64px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(19, 33, 58, 0.12);
    background: rgba(255, 250, 240, 0.96);
    backdrop-filter: blur(12px);
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-sticky-cta .button {
    min-height: 48px;
    border-radius: 14px;
    padding: 0.6rem 0.4rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .hero-copy-block {
    max-width: calc(100vw - 20px);
    padding: 20px;
  }

  .hero-preview,
  .hero-demo-frame {
    max-width: calc(100vw - 20px);
    min-height: 252px;
    max-height: 282px;
  }

  .hero-preview::before {
    left: 0;
    right: 0;
  }

  .demo-preview-card img {
    width: min(100%, 300px);
    object-position: 50% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
