:root {
  color-scheme: dark;
  --bg: #0b0712;
  --bg-soft: #110b1c;
  --panel: rgba(25, 17, 39, 0.88);
  --panel-strong: #1a1128;
  --panel-light: #251737;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #fffaf1;
  --muted: #aca1b7;
  --muted-2: #786e83;
  --gold: #ffc94a;
  --gold-2: #ff9d2f;
  --purple: #9b5cff;
  --purple-2: #6f35d7;
  --pink: #ff4f99;
  --cyan: #4ee8ff;
  --green: #5be49b;
  --danger: #ff6378;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --sidebar: 232px;
  --topbar: 76px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #4a365f #0d0815;
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% -10%, rgba(134, 69, 255, 0.16), transparent 30%),
    radial-gradient(circle at 20% 110%, rgba(255, 159, 47, 0.08), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

.hidden {
  display: none !important;
}

.ambient {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}

.ambient-one {
  width: 420px;
  height: 420px;
  top: 80px;
  right: 8vw;
  background: rgba(116, 56, 224, 0.25);
  border-radius: 50%;
}

.ambient-two {
  width: 360px;
  height: 360px;
  bottom: 4vh;
  left: 24vw;
  background: rgba(255, 156, 47, 0.1);
  border-radius: 50%;
}

::selection {
  background: rgba(255, 201, 74, 0.28);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(255, 201, 74, 0.8);
  outline-offset: 3px;
}

.app-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--sidebar);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(19, 12, 30, 0.98), rgba(12, 8, 19, 0.98));
  border-right: 1px solid var(--line);
  box-shadow: 16px 0 45px rgba(0, 0, 0, 0.15);
}

.brand,
.mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img,
.mobile-brand img,
.footer-brand img {
  width: 34px;
  height: 34px;
}

.side-nav {
  display: grid;
  gap: 8px;
  margin-top: 38px;
}

.nav-link {
  min-height: 48px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  transition: 180ms var(--ease);
}

.nav-link span {
  width: 24px;
  color: #d7c9e4;
  font-size: 19px;
  text-align: center;
}

.nav-link b {
  margin-left: auto;
  min-width: 22px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e9dff2;
  font-size: 11px;
  text-align: center;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.nav-link.active {
  color: #fff;
  border-color: rgba(255, 201, 74, 0.18);
  background: linear-gradient(135deg, rgba(255, 201, 74, 0.15), rgba(155, 92, 255, 0.1));
  box-shadow: inset 3px 0 0 var(--gold);
}

.nav-link.active span {
  color: var(--gold);
}

.nav-button {
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.side-promo {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  padding: 18px 16px;
  border: 1px solid rgba(255, 201, 74, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 201, 74, 0.2), transparent 42%),
    linear-gradient(145deg, #251735, #171021);
}

.side-promo::after {
  content: "♛";
  position: absolute;
  right: -10px;
  bottom: -24px;
  color: rgba(255, 201, 74, 0.1);
  font-size: 84px;
  transform: rotate(-12deg);
}

.eyebrow,
.form-eyebrow,
.section-kicker,
.hero-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.side-promo strong {
  display: block;
  margin-top: 8px;
  font-size: 16px;
}

.side-promo p {
  margin: 7px 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.small-cta {
  position: relative;
  z-index: 1;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 9px;
  background: var(--gold);
  color: #251600;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.sidebar-bottom {
  margin-top: 18px;
  padding: 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plain-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted-2);
  cursor: pointer;
  font-size: 11px;
}

.plain-link:hover {
  color: var(--text);
}

.age-badge {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.main {
  min-height: 100vh;
  margin-left: var(--sidebar);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--topbar);
  padding: 0 clamp(20px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(11, 7, 18, 0.76);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.topbar-spacer {
  flex: 1;
}

.mobile-brand,
.mobile-menu-btn {
  display: none;
}

.icon-btn,
.avatar-btn {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 20px;
}

.wallet {
  height: 43px;
  padding: 0 7px 0 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(24, 15, 36, 0.82);
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  transition: 160ms var(--ease);
}

.wallet:hover {
  border-color: rgba(255, 201, 74, 0.32);
  transform: translateY(-1px);
}

.wallet-token {
  display: inline-grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 950;
}

.gold-token {
  border: 2px solid #ffd970;
  background: linear-gradient(145deg, #ffcc42, #e38a16);
  color: #402200;
  box-shadow: 0 0 0 2px rgba(255, 201, 74, 0.12);
}

.silver-token {
  border: 2px solid #e5f1ff;
  background: linear-gradient(145deg, #f2f7ff, #88a4c8);
  color: #23364f;
  box-shadow: 0 0 0 2px rgba(185, 211, 244, 0.1);
}

.wallet-value {
  color: #eee6f5;
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.wallet-divider {
  width: 1px;
  height: 20px;
  margin: 0 1px;
  background: var(--line-strong);
}

.wallet-plus {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: 2px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  color: #2e1800;
  font-size: 17px;
  font-weight: 950;
}

.ghost-btn,
.primary-btn,
.secondary-btn,
.bundle-btn {
  height: 43px;
  padding: 0 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  transition: 160ms var(--ease);
}

.ghost-btn {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #f4ecfa;
}

.ghost-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.primary-btn {
  border: 1px solid rgba(255, 219, 126, 0.5);
  background: linear-gradient(135deg, #ffda6f, #ffab30);
  color: #2c1800;
  box-shadow: 0 9px 28px rgba(255, 169, 48, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.primary-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 12px 32px rgba(255, 169, 48, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.primary-btn:active,
.ghost-btn:active,
.secondary-btn:active,
.bundle-btn:active {
  transform: translateY(1px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(12, 7, 18, 0.32);
  color: #fff;
  backdrop-filter: blur(8px);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.full-width {
  width: 100%;
}

.avatar-btn {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, #8f4fff, #e05bff);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.content-wrap {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 24px clamp(20px, 3vw, 42px) 56px;
}

.hero {
  position: relative;
}

.hero-slider {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-xl);
  background: #1d1130;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  padding: clamp(34px, 4.5vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4%);
  transition: opacity 500ms var(--ease), transform 600ms var(--ease);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-slide-one {
  background:
    linear-gradient(90deg, rgba(14, 6, 23, 0.95), rgba(36, 14, 58, 0.62) 58%, rgba(69, 22, 91, 0.45)),
    radial-gradient(circle at 75% 45%, rgba(255, 182, 55, 0.24), transparent 26%),
    linear-gradient(130deg, #1c0d31, #3a1454 65%, #7b2c58);
}

.hero-slide-two {
  background:
    linear-gradient(90deg, rgba(7, 14, 27, 0.96), rgba(10, 34, 57, 0.74) 60%, rgba(8, 78, 88, 0.5)),
    radial-gradient(circle at 78% 45%, rgba(78, 232, 255, 0.22), transparent 28%),
    linear-gradient(130deg, #071321, #0d3b55 65%, #076672);
}

.hero-slide-three {
  background:
    linear-gradient(90deg, rgba(18, 7, 19, 0.97), rgba(48, 13, 40, 0.68) 60%, rgba(91, 35, 43, 0.54)),
    radial-gradient(circle at 78% 42%, rgba(255, 79, 153, 0.24), transparent 28%),
    linear-gradient(130deg, #210a25, #5a183e 65%, #8a4c1b);
}

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

.hero-copy h1,
.hero-copy h2 {
  margin: 12px 0 14px;
  max-width: 700px;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.hero-copy h2 {
  font-size: clamp(40px, 4.5vw, 66px);
}

.hero-copy p {
  max-width: 570px;
  margin: 0;
  color: #d4c8df;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions + small,
.hero-copy > small {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.hero-primary {
  min-width: 128px;
}

.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 285px;
  overflow: hidden;
}

.hero-crown {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 54%;
  color: #ffd567;
  font-family: Georgia, serif;
  font-size: clamp(120px, 15vw, 220px);
  line-height: 1;
  text-shadow: 0 10px 60px rgba(255, 195, 61, 0.35), 0 0 18px rgba(255, 225, 133, 0.36);
  transform: translate(-50%, -50%) rotate(-4deg);
  animation: crownFloat 4.8s ease-in-out infinite;
}

.crown-orbit {
  position: absolute;
  top: 50%;
  left: 54%;
  border: 1px solid rgba(255, 216, 111, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-one {
  width: 360px;
  height: 200px;
  animation: orbitPulse 5s ease-in-out infinite;
}

.orbit-two {
  width: 440px;
  height: 260px;
  border-color: rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%) rotate(28deg);
  animation: orbitPulse 6s ease-in-out infinite reverse;
}

.coin-stack {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
}

.coin-stack i {
  width: 68px;
  height: 14px;
  border: 2px solid #ffe097;
  border-radius: 50%;
  background: linear-gradient(#ffd55b, #cf7410);
  box-shadow: 0 3px 0 #9b5108, 0 8px 18px rgba(0, 0, 0, 0.28);
}

.coin-stack-one {
  right: 7%;
  bottom: 11%;
  transform: rotate(-8deg);
}

.coin-stack-two {
  left: 4%;
  bottom: 19%;
  transform: scale(.76) rotate(10deg);
}

.spark,
.vip-star {
  position: absolute;
  color: #fff0be;
  text-shadow: 0 0 15px rgba(255, 223, 134, 0.85);
  animation: twinkle 2.2s ease-in-out infinite;
}

.spark-one {
  top: 18%;
  right: 16%;
  font-size: 26px;
}

.spark-two {
  left: 13%;
  top: 30%;
  font-size: 18px;
  animation-delay: .8s;
}

.vault-art {
  display: grid;
  place-items: center;
  overflow: visible;
}

.vault-door {
  position: relative;
  z-index: 3;
  width: 210px;
  height: 230px;
  display: grid;
  place-items: center;
  border: 8px solid #75d5e8;
  border-radius: 44px;
  background:
    radial-gradient(circle, #153b4e 0 20%, #0d2333 21% 40%, transparent 41%),
    linear-gradient(145deg, #2b6a7b, #0d2d42);
  box-shadow: inset 0 0 0 5px #0e4055, 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(78, 232, 255, 0.2);
  transform: rotate(5deg);
}

.vault-door::before,
.vault-door::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.vault-door::before {
  width: 120px;
  height: 120px;
  border: 12px solid #93e9f7;
  box-shadow: inset 0 0 0 5px #0e4055;
}

.vault-door::after {
  width: 14px;
  height: 104px;
  background: #b7f5ff;
  box-shadow: 0 0 0 3px #1f6680;
  transform: rotate(45deg);
}

.vault-door span {
  position: relative;
  z-index: 4;
  color: var(--gold);
  font-size: 46px;
}

.vault-glow {
  position: absolute;
  width: 330px;
  height: 300px;
  border-radius: 50%;
  background: rgba(61, 228, 255, 0.18);
  filter: blur(40px);
}

.floating-coin {
  position: absolute;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 3px solid #ffe491;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd95e, #d47c12);
  color: #4b2900;
  font-size: 17px;
  font-weight: 950;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.3);
  animation: coinFloat 3s ease-in-out infinite;
}

.coin-a { top: 10%; right: 9%; }
.coin-b { bottom: 11%; right: 22%; animation-delay: .8s; transform: scale(.8); }
.coin-c { top: 27%; left: 6%; animation-delay: 1.5s; transform: scale(.7); }

.vip-art {
  overflow: visible;
}

.vip-card {
  position: absolute;
  top: 50%;
  left: 51%;
  width: 290px;
  height: 185px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.vip-card-back {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: linear-gradient(135deg, #6a6073, #24202c);
  color: rgba(255, 255, 255, 0.5);
  transform: translate(-37%, -57%) rotate(12deg);
}

.vip-card-back span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
}

.vip-card-front {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.28), transparent 18%),
    linear-gradient(135deg, #ffc84d, #b76d14 72%);
  color: #3f2300;
  transform: translate(-62%, -42%) rotate(-8deg);
  animation: cardFloat 5s ease-in-out infinite;
}

.vip-card-front::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(88, 43, 0, 0.22);
  border-radius: 17px;
}

.vip-crown {
  font-size: 46px;
}

.vip-card-front b {
  margin-top: 5px;
  font-size: 24px;
  letter-spacing: .08em;
}

.vip-card-front small {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
}

.vip-star-one { top: 14%; right: 10%; font-size: 28px; }
.vip-star-two { bottom: 16%; left: 7%; font-size: 19px; animation-delay: .7s; }
.vip-star-three { top: 17%; left: 15%; font-size: 14px; animation-delay: 1.2s; }

.hero-controls {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 20px;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(8, 5, 13, 0.34);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: #fff;
  font-size: 22px;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: 200ms var(--ease);
}

.hero-dots button.active {
  width: 22px;
  background: var(--gold);
}

.quick-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-card {
  min-width: 0;
  min-height: 74px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(31, 21, 46, 0.9), rgba(19, 13, 28, 0.9));
  cursor: pointer;
  text-align: left;
  transition: 180ms var(--ease);
}

.quick-card:hover {
  border-color: rgba(255, 201, 74, 0.22);
  transform: translateY(-2px);
}

.quick-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border: 1px solid rgba(255, 201, 74, 0.18);
  border-radius: 13px;
  background: rgba(255, 201, 74, 0.1);
  color: var(--gold);
  font-size: 20px;
}

.quick-card:nth-child(2) .quick-icon {
  border-color: rgba(78, 232, 255, 0.18);
  background: rgba(78, 232, 255, 0.09);
  color: var(--cyan);
}

.quick-card:nth-child(3) .quick-icon {
  border-color: rgba(155, 92, 255, 0.2);
  background: rgba(155, 92, 255, 0.11);
  color: #c9a5ff;
}

.quick-card span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.quick-card small {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.quick-card strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-arrow {
  margin-left: auto;
  color: var(--muted-2);
  font-size: 24px;
}

.discovery-bar {
  position: sticky;
  top: calc(var(--topbar) + 8px);
  z-index: 15;
  margin: 24px -8px 0;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(11, 7, 18, 0.86);
  backdrop-filter: blur(18px);
}

.category-scroller {
  min-width: 0;
  display: flex;
  flex: 1;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.category-scroller::-webkit-scrollbar {
  display: none;
}

.category-chip {
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: 160ms var(--ease);
}

.category-chip span {
  color: #e1cfff;
  font-size: 14px;
}

.category-chip:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.category-chip.active {
  border-color: rgba(255, 201, 74, 0.3);
  background: linear-gradient(135deg, rgba(255, 201, 74, 0.17), rgba(155, 92, 255, 0.12));
  color: #fff;
}

.category-chip.active span {
  color: var(--gold);
}

.search-box {
  width: min(250px, 26vw);
  height: 42px;
  padding: 0 10px 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.search-box:focus-within {
  border-color: rgba(255, 201, 74, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 201, 74, 0.08);
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
}

.search-box input::placeholder {
  color: var(--muted-2);
}

.search-box kbd {
  padding: 3px 6px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--muted-2);
  font-family: inherit;
  font-size: 9px;
}

.filter-state {
  margin-top: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed rgba(255, 201, 74, 0.2);
  border-radius: 12px;
  background: rgba(255, 201, 74, 0.055);
  color: #e9dff0;
  font-size: 12px;
}

.filter-state button {
  padding: 5px 9px;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.game-section {
  padding-top: 40px;
  scroll-margin-top: 132px;
}

.compact-section {
  padding-bottom: 12px;
}

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

.section-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-kicker {
  color: #9e8cab;
  font-size: 9px;
}

.text-btn {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #d8cae4;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.text-btn span {
  margin-left: 4px;
  color: var(--gold);
}

.text-btn:hover {
  color: #fff;
}

.jackpot-total {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.jackpot-total span {
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.jackpot-total strong {
  color: var(--gold);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

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

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

.game-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 17px;
  background: #1a1225;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: 200ms var(--ease);
}

.game-card:hover {
  z-index: 2;
  border-color: rgba(255, 201, 74, 0.36);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 201, 74, 0.1);
}

.game-card-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #241532;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 500ms var(--ease);
}

.game-card:hover .game-card-thumb img {
  transform: scale(1.055);
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.game-badge {
  position: absolute;
  z-index: 3;
  top: 9px;
  left: 9px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 7px;
  background: rgba(8, 5, 12, 0.65);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .08em;
}

.game-badge.new {
  border-color: rgba(78, 232, 255, 0.3);
  background: rgba(18, 92, 106, 0.7);
  color: #c8f9ff;
}

.game-badge.hot {
  border-color: rgba(255, 79, 153, 0.34);
  background: rgba(119, 21, 69, 0.72);
  color: #ffd2e7;
}

.game-badge.jackpot {
  border-color: rgba(255, 201, 74, 0.38);
  background: rgba(103, 63, 8, 0.78);
  color: #ffdf88;
}

.favorite-btn {
  position: absolute;
  z-index: 5;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(8, 5, 12, 0.58);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-size: 17px;
  transition: 150ms var(--ease);
}

.favorite-btn:hover,
.favorite-btn.active {
  border-color: rgba(255, 116, 160, 0.42);
  background: rgba(123, 24, 60, 0.78);
  color: #ff8cb4;
  transform: scale(1.06);
}

.game-overlay {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: linear-gradient(rgba(9, 5, 14, 0.1), rgba(9, 5, 14, 0.72));
  transition: 180ms var(--ease);
}

.game-card:hover .game-overlay,
.game-card:focus-within .game-overlay {
  opacity: 1;
}

.play-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffda6f, #ff9c2d);
  color: #301900;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34), 0 0 0 8px rgba(255, 255, 255, 0.08);
  font-size: 20px;
  transform: scale(.86);
  transition: 180ms var(--ease);
}

.game-card:hover .play-btn {
  transform: scale(1);
}

.game-meta {
  min-height: 61px;
  padding: 10px 11px 11px;
  display: grid;
  align-content: center;
  gap: 4px;
}

.game-meta strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-meta small {
  overflow: hidden;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-jackpot-value {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 218, 114, 0.26);
  border-radius: 9px;
  background: rgba(33, 14, 5, 0.72);
  color: #ffe08a;
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 220px;
  padding: 34px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.trust-panel {
  margin-top: 54px;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(255, 201, 74, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(155, 92, 255, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(34, 22, 49, 0.82), rgba(18, 12, 26, 0.9));
}

.trust-copy h2 {
  margin: 9px 0 12px;
  max-width: 600px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.trust-copy p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.trust-points {
  display: grid;
  gap: 9px;
}

.trust-points div {
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-points span {
  grid-row: 1 / 3;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(91, 228, 155, 0.13);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.trust-points strong {
  font-size: 12px;
}

.trust-points small {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 9px;
}

.footer {
  margin-top: 42px;
  padding: 26px 2px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 30px;
  height: 30px;
}

.footer-brand div {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  color: #e8dfef;
  font-size: 13px;
}

.footer-brand small {
  font-size: 9px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
}

.footer-links button:hover {
  color: #fff;
}

.footer > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: 6px;
  font-size: 9px;
  line-height: 1.55;
}

.mobile-bottom-nav {
  display: none;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(4, 2, 7, 0.72);
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 180ms ease;
}

.mobile-drawer {
  position: fixed;
  z-index: 95;
  inset: 0 auto 0 0;
  width: min(330px, 88vw);
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: #130c1e;
  border-right: 1px solid var(--line);
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.45);
  transform: translateX(-102%);
  transition: transform 260ms var(--ease);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-nav {
  margin-top: 34px;
  display: grid;
  gap: 7px;
}

.drawer-nav a,
.drawer-nav button {
  min-height: 49px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.drawer-nav a:hover,
.drawer-nav button:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.drawer-nav span {
  width: 24px;
  color: var(--gold);
  font-size: 19px;
  text-align: center;
}

.drawer-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.modal {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  width: min(92vw, 780px);
  max-height: min(90vh, 760px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: #171020;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: translate(-50%, -50%);
  animation: modalIn 220ms var(--ease);
}

.modal-close {
  position: absolute;
  z-index: 8;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(8, 5, 12, 0.48);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  backdrop-filter: blur(8px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.11);
}

.auth-modal {
  width: min(94vw, 880px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  overflow: hidden;
}

.auth-visual {
  position: relative;
  min-height: 600px;
  padding: 42px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 201, 74, 0.24), transparent 28%),
    linear-gradient(145deg, #2d1446, #741f58);
}

.auth-visual > img {
  width: 38px;
  height: 38px;
  display: inline-block;
  vertical-align: middle;
}

.auth-visual > span {
  margin-left: 7px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
  vertical-align: middle;
}

.auth-visual h2 {
  position: relative;
  z-index: 3;
  margin: 82px 0 14px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -.055em;
}

.auth-visual p {
  position: relative;
  z-index: 3;
  max-width: 300px;
  margin: 0;
  color: #d8c9e0;
  font-size: 13px;
  line-height: 1.6;
}

.auth-crown {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 26px;
  color: #ffd465;
  font-size: 150px;
  transform: rotate(-8deg);
  text-shadow: 0 14px 50px rgba(255, 193, 49, 0.35);
}

.auth-orbit {
  position: absolute;
  right: -30px;
  bottom: 10px;
  border: 1px solid rgba(255, 223, 142, 0.25);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.auth-orbit-one {
  width: 300px;
  height: 160px;
}

.auth-orbit-two {
  right: -50px;
  bottom: -25px;
  width: 370px;
  height: 210px;
  transform: rotate(27deg);
}

.auth-form-wrap {
  padding: 38px 42px 34px;
  background: #171020;
}

.auth-tabs {
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-tabs button {
  height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
}

.auth-tabs button.active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
}

.auth-form {
  margin-top: 27px;
}

.auth-form h2 {
  margin: 8px 0 22px;
  font-size: 28px;
  letter-spacing: -.04em;
}

.auth-form label:not(.check-label) {
  margin-top: 13px;
  display: grid;
  gap: 7px;
  color: #cfc3d7;
  font-size: 10px;
  font-weight: 800;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 12px;
}

.auth-form input:focus {
  border-color: rgba(255, 201, 74, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 201, 74, 0.08);
}

.check-label {
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.check-label input {
  margin-top: 2px;
  accent-color: var(--gold);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.reward-modal {
  width: min(92vw, 430px);
  padding: 42px 40px 34px;
  overflow: hidden;
  text-align: center;
}

.reward-modal > *:not(.reward-glow) {
  position: relative;
  z-index: 2;
}

.reward-glow {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 201, 74, 0.2);
  filter: blur(55px);
  transform: translateX(-50%);
}

.reward-icon {
  width: 92px;
  height: 92px;
  margin: 2px auto 22px;
  display: grid;
  place-items: center;
  border: 2px solid #ffdc7b;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffcf50, #c66d0d);
  color: #482500;
  font-size: 47px;
  box-shadow: 0 16px 50px rgba(255, 172, 40, 0.25), 0 0 0 9px rgba(255, 201, 74, 0.08);
}

.reward-modal h2,
.store-modal h2,
.info-modal h2 {
  margin: 8px 0 11px;
  font-size: 30px;
  letter-spacing: -.045em;
}

.reward-modal > p,
.store-header p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.reward-value {
  margin: 24px 0 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 9px;
  border: 1px solid rgba(255, 201, 74, 0.18);
  border-radius: 15px;
  background: rgba(255, 201, 74, 0.06);
}

.reward-value .wallet-token {
  width: 30px;
  height: 30px;
}

.reward-value strong {
  font-size: 31px;
  font-variant-numeric: tabular-nums;
}

.reward-value small {
  grid-column: 1 / -1;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.modal-footnote {
  display: block;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 9px;
}

.store-modal {
  width: min(94vw, 760px);
  padding: 36px;
}

.store-header {
  padding-right: 40px;
}

.bundle-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bundle-card {
  position: relative;
  padding: 22px 16px 16px;
  display: grid;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.featured-bundle {
  border-color: rgba(255, 201, 74, 0.35);
  background: linear-gradient(145deg, rgba(255, 201, 74, 0.09), rgba(155, 92, 255, 0.07));
  box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

.bundle-tag {
  color: var(--gold);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .12em;
}

.bundle-coins {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-coins .wallet-token {
  width: 31px;
  height: 31px;
}

.bundle-coins strong {
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}

.bundle-card > small {
  margin: 6px 0 18px;
  color: #a797b2;
  font-size: 9px;
}

.bundle-btn {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.bundle-btn:hover {
  border-color: rgba(255, 201, 74, 0.4);
  background: rgba(255, 201, 74, 0.1);
}

.featured-bundle .bundle-btn {
  border-color: rgba(255, 201, 74, 0.42);
  background: var(--gold);
  color: #301900;
}

.store-warning {
  margin-top: 18px;
  padding: 12px 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(78, 232, 255, 0.12);
  border-radius: 11px;
  background: rgba(78, 232, 255, 0.04);
}

.store-warning span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(78, 232, 255, 0.14);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
}

.store-warning p {
  margin: 0;
  color: #9a8da6;
  font-size: 9px;
  line-height: 1.55;
}

.game-modal {
  width: min(95vw, 850px);
  background: #0f0b15;
}

.game-close {
  background: rgba(0, 0, 0, .38);
}

.game-stage {
  padding: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(155, 92, 255, .18), transparent 35%),
    #100a18;
}

.game-stage-top {
  padding: 2px 45px 17px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.game-stage-top h2 {
  margin: 5px 0 0;
  font-size: 25px;
  letter-spacing: -.04em;
}

.stage-balance {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
}

.stage-balance strong {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.slot-machine {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 3px solid #5a2f8d;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 201, 74, .13), transparent 35%),
    linear-gradient(145deg, #31154c, #140c21 70%);
  box-shadow: inset 0 0 0 5px #1c0f2b, 0 28px 70px rgba(0, 0, 0, .45);
}

.slot-machine::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.5) 0 1px, transparent 1.5px);
  background-size: 36px 36px;
  opacity: .12;
}

.slot-brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 3px;
  color: var(--gold);
  text-shadow: 0 4px 16px rgba(255, 187, 45, .25);
}

.slot-brand span {
  font-family: Georgia, serif;
  font-size: clamp(24px, 4vw, 39px);
  font-weight: 900;
  letter-spacing: .06em;
  text-align: center;
}

.slot-brand small {
  color: #a48caf;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
}

.reels {
  position: relative;
  z-index: 2;
  margin: 23px auto 17px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  border: 5px solid #d69b34;
  border-radius: 18px;
  background: linear-gradient(#774118, #e3a944 8%, #603314 12%, #3d220f 88%, #e3a944 94%);
  box-shadow: inset 0 0 0 4px #2b1608, 0 15px 38px rgba(0,0,0,.38);
}

.reel {
  height: 150px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid #d8d3e2;
  border-radius: 10px;
  background: linear-gradient(#e8ecf3, #fff 45%, #ced5df);
  color: #51266e;
  font-family: Georgia, serif;
  font-size: clamp(55px, 8vw, 88px);
  font-weight: 900;
  text-shadow: 0 3px 0 #fff;
  box-shadow: inset 0 10px 24px rgba(66, 42, 91, .16), inset 0 -10px 24px rgba(66, 42, 91, .16);
}

.reel.spinning span {
  animation: reelSpin .22s linear infinite;
  filter: blur(2px);
}

.win-message {
  position: relative;
  z-index: 2;
  min-height: 36px;
  display: grid;
  place-items: center;
  color: #d6c8df;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.win-message.winner {
  color: #ffe17e;
  font-size: 14px;
  text-shadow: 0 0 18px rgba(255, 210, 91, .45);
}

.slot-controls {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.spin-btn {
  width: 104px;
  height: 66px;
  border: 4px solid #ffe083;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffdb6a, #f28e1c);
  color: #3b1f00;
  cursor: pointer;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: .06em;
  box-shadow: 0 8px 0 #9a4e08, 0 15px 30px rgba(0,0,0,.34), inset 0 2px 0 rgba(255,255,255,.6);
}

.spin-btn:hover {
  filter: brightness(1.08);
}

.spin-btn:active {
  transform: translateY(5px);
  box-shadow: 0 3px 0 #9a4e08, 0 8px 20px rgba(0,0,0,.3), inset 0 2px 0 rgba(255,255,255,.6);
}

.spin-btn:disabled {
  cursor: wait;
  filter: grayscale(.45);
}

.bet-display {
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background: rgba(0,0,0,.21);
  text-align: center;
}

.bet-display small {
  color: #816f8e;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .14em;
}

.bet-display strong {
  color: #fff;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.game-disclaimer {
  margin: 13px 0 0;
  color: #695d72;
  font-size: 8px;
  text-align: center;
}

.info-modal {
  width: min(92vw, 540px);
  padding: 38px 38px 34px;
}

.info-body {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.info-body p {
  margin: 0 0 12px;
}

.info-body ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.info-body li + li {
  margin-top: 7px;
}

.toast-region {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 22px;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  gap: 8px;
}

.toast {
  padding: 13px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  background: rgba(27, 18, 39, .96);
  box-shadow: 0 16px 45px rgba(0,0,0,.4);
  animation: toastIn 240ms var(--ease);
}

.toast-icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 201, 74, .13);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.toast strong {
  display: block;
  color: #fff;
  font-size: 11px;
}

.toast p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

@keyframes crownFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotate(-1deg) translateY(-10px); }
}

@keyframes cardFloat {
  0%, 100% { transform: translate(-62%, -42%) rotate(-8deg) translateY(0); }
  50% { transform: translate(-62%, -42%) rotate(-5deg) translateY(-9px); }
}

@keyframes orbitPulse {
  0%, 100% { opacity: .55; scale: 1; }
  50% { opacity: 1; scale: 1.035; }
}

@keyframes twinkle {
  0%, 100% { opacity: .35; transform: scale(.8) rotate(0); }
  50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

@keyframes coinFloat {
  0%, 100% { margin-top: 0; rotate: -8deg; }
  50% { margin-top: -12px; rotate: 8deg; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -47%) scale(.97); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes reelSpin {
  from { transform: translateY(-120%); }
  to { transform: translateY(120%); }
}

@media (max-width: 1320px) {
  .feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

@media (max-width: 1080px) {
  :root {
    --sidebar: 0px;
  }

  .sidebar {
    display: none;
  }

  .main {
    margin-left: 0;
  }

  .mobile-menu-btn,
  .mobile-brand {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: grid;
  }

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

  .hero-slide {
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, .85fr);
  }
}

@media (max-width: 860px) {
  .content-wrap {
    padding-inline: 18px;
  }

  .hero-slider {
    min-height: 480px;
  }

  .hero-slide {
    padding: 40px;
    grid-template-columns: 1fr .7fr;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(39px, 7.2vw, 58px);
  }

  .hero-art {
    min-width: 220px;
  }

  .hero-crown {
    font-size: 150px;
  }

  .orbit-one { width: 250px; height: 150px; }
  .orbit-two { width: 310px; height: 190px; }
  .coin-stack-one { right: 1%; }

  .vault-door {
    width: 165px;
    height: 185px;
  }

  .vault-door::before {
    width: 92px;
    height: 92px;
    border-width: 9px;
  }

  .vault-door::after {
    height: 80px;
  }

  .vip-card {
    width: 220px;
    height: 145px;
  }

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

  .quick-card:last-child {
    grid-column: 1 / -1;
  }

  .discovery-bar {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .search-box {
    width: 100%;
  }

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

  .trust-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .auth-modal {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .auth-form-wrap {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  :root {
    --topbar: 66px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .topbar {
    padding: 0 12px;
  }

  .mobile-brand span {
    display: none;
  }

  .mobile-brand img {
    width: 31px;
    height: 31px;
  }

  .topbar-spacer {
    min-width: 2px;
  }

  .wallet {
    height: 40px;
    margin-left: auto;
    gap: 5px;
  }

  .wallet-divider,
  .silver-token,
  #silverBalance {
    display: none;
  }

  .wallet-value {
    font-size: 11px;
  }

  .wallet-plus {
    width: 25px;
    height: 25px;
  }

  .desktop-only {
    display: none;
  }

  .content-wrap {
    padding: 14px 12px 38px;
  }

  .hero-slider {
    min-height: 505px;
    border-radius: 22px;
  }

  .hero-slide {
    padding: 30px 24px 22px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 190px;
    align-content: start;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1,
  .hero-copy h2 {
    margin-top: 9px;
    font-size: clamp(39px, 12vw, 52px);
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions button {
    height: 40px;
  }

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

  .hero-crown {
    left: 50%;
    font-size: 125px;
  }

  .crown-orbit {
    left: 50%;
  }

  .orbit-one { width: 250px; height: 130px; }
  .orbit-two { width: 300px; height: 170px; }
  .coin-stack i { width: 48px; height: 10px; }
  .coin-stack-one { right: 11%; bottom: 4%; }
  .coin-stack-two { left: 12%; bottom: 12%; }

  .vault-door {
    width: 122px;
    height: 135px;
    border-width: 5px;
    border-radius: 30px;
  }

  .vault-door::before {
    width: 65px;
    height: 65px;
    border-width: 7px;
  }

  .vault-door::after {
    width: 9px;
    height: 58px;
  }

  .vault-door span {
    font-size: 30px;
  }

  .floating-coin {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .vip-card {
    width: 190px;
    height: 118px;
    border-radius: 18px;
  }

  .vip-card-front {
    transform: translate(-57%, -43%) rotate(-8deg);
  }

  .vip-card-back {
    transform: translate(-40%, -58%) rotate(12deg);
  }

  .vip-crown {
    font-size: 31px;
  }

  .vip-card-front b {
    font-size: 18px;
  }

  .hero-controls {
    right: 50%;
    bottom: 13px;
    transform: translateX(50%);
  }

  .quick-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-card:last-child {
    grid-column: auto;
  }

  .quick-card {
    min-height: 68px;
  }

  .discovery-bar {
    top: calc(var(--topbar) + 5px);
    margin-top: 17px;
  }

  .category-chip {
    height: 39px;
    padding: 0 12px;
  }

  .search-box {
    height: 40px;
  }

  .search-box kbd {
    display: none;
  }

  .game-section {
    padding-top: 32px;
  }

  .section-heading {
    align-items: flex-end;
  }

  .section-heading h2 {
    font-size: 23px;
  }

  .text-btn {
    font-size: 10px;
  }

  .jackpot-total strong {
    font-size: 13px;
  }

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

  .game-card {
    border-radius: 14px;
  }

  .game-meta {
    min-height: 55px;
    padding: 8px 9px 9px;
  }

  .game-meta strong {
    font-size: 11px;
  }

  .game-overlay {
    opacity: 1;
    align-items: end;
    justify-items: end;
    padding: 9px;
    background: linear-gradient(transparent 54%, rgba(8, 5, 12, .46));
  }

  .play-btn {
    width: 38px;
    height: 38px;
    border-width: 1px;
    box-shadow: 0 5px 16px rgba(0,0,0,.32);
    font-size: 14px;
    transform: none;
  }

  .favorite-btn {
    width: 30px;
    height: 30px;
  }

  .trust-panel {
    margin-top: 42px;
    padding: 22px 18px;
    border-radius: 19px;
  }

  .trust-copy h2 {
    font-size: 28px;
  }

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

  .footer-links {
    gap: 12px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 50;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    height: 62px;
    padding: 5px 6px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    background: rgba(21, 13, 31, .94);
    box-shadow: 0 16px 50px rgba(0,0,0,.42);
    backdrop-filter: blur(20px);
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 3px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #807287;
    cursor: pointer;
  }

  .mobile-bottom-nav .active {
    background: rgba(255, 201, 74, .1);
    color: var(--gold);
  }

  .mobile-bottom-nav span {
    font-size: 17px;
    line-height: 1;
  }

  .mobile-bottom-nav small {
    font-size: 8px;
    font-weight: 800;
  }

  .modal {
    width: calc(100vw - 18px);
    max-height: calc(100vh - 22px);
    border-radius: 20px;
  }

  .auth-form-wrap {
    padding: 50px 22px 26px;
  }

  .reward-modal,
  .store-modal,
  .info-modal {
    padding: 38px 22px 26px;
  }

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

  .bundle-card {
    grid-template-columns: 1fr auto;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .bundle-tag {
    grid-column: 1 / -1;
  }

  .bundle-coins {
    margin-top: 12px;
  }

  .bundle-card > small {
    grid-column: 1;
    margin: 3px 0 0 39px;
  }

  .bundle-btn {
    grid-column: 2;
    grid-row: 2 / 4;
    width: auto;
    padding-inline: 12px;
  }

  .game-stage {
    padding: 17px 12px 15px;
  }

  .game-stage-top {
    padding-right: 42px;
  }

  .game-stage-top h2 {
    font-size: 19px;
  }

  .slot-machine {
    padding: 20px 12px 17px;
    border-radius: 19px;
  }

  .reels {
    gap: 5px;
    padding: 7px;
  }

  .reel {
    height: 112px;
    font-size: 54px;
  }

  .slot-controls {
    gap: 8px;
  }

  .spin-btn {
    width: 84px;
    height: 56px;
    font-size: 14px;
  }

  .bet-display {
    padding: 8px 4px;
  }

  .toast-region {
    right: 10px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
  }
}

@media (max-width: 390px) {
  .hero-slide {
    padding-inline: 20px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 38px;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions button {
    padding-inline: 13px;
    font-size: 11px;
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .jackpot-total span {
    display: none;
  }

  .bundle-btn {
    font-size: 10px;
  }
}

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

/* Desktop correction: the menu control is reserved for tablet and mobile. */
.topbar .mobile-menu-btn {
  display: none;
}

@media (max-width: 1080px) {
  .topbar .mobile-menu-btn {
    display: grid;
  }
}


/* Reference-inspired promotional, quick-launch, proof and support modules. */
.top-app-btn {
  width: auto;
  min-width: 58px;
  height: 42px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-color: rgba(255, 201, 74, .28);
  color: var(--gold);
  font-size: 15px;
}

.top-app-btn span {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-additions {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.welcome-boost-card,
.app-promo-card,
.activity-card,
.share-panel,
.reward-records,
.rules-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 74, .15);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 201, 74, .07), transparent 24%),
    radial-gradient(circle at 22% 110%, rgba(155, 92, 255, .14), transparent 42%),
    linear-gradient(145deg, rgba(28, 18, 42, .94), rgba(13, 10, 21, .96));
  box-shadow: 0 22px 55px rgba(0, 0, 0, .25);
}

.welcome-boost-card::after,
.app-promo-card::after,
.activity-card::after,
.share-panel::after,
.reward-records::after,
.rules-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 208, 72, .85) 0 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, .45) 0 1px, transparent 1.6px);
  background-size: 91px 117px, 139px 173px;
  background-position: 12px 24px, 72px 11px;
  opacity: .18;
}

.welcome-boost-card {
  min-height: 250px;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 75, 153, .16), transparent 32%),
    radial-gradient(circle at 12% 100%, rgba(126, 52, 211, .28), transparent 48%),
    linear-gradient(135deg, #21112f, #100b19 72%);
}

.welcome-boost-copy,
.app-promo-copy,
.activity-card > *,
.share-panel > *,
.reward-records > *,
.rules-panel > * {
  position: relative;
  z-index: 1;
}

.welcome-boost-copy h2,
.app-promo-copy h2,
.share-panel h2,
.reward-records h2 {
  margin: 9px 0 16px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.boost-pills {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.boost-pills span {
  min-height: 36px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: #c6b9ce;
  font-size: 11px;
  font-weight: 800;
}

.boost-art {
  position: relative;
  min-height: 190px;
}

.boost-crown {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--gold);
  filter: drop-shadow(0 0 28px rgba(255, 201, 74, .4));
  font-size: 132px;
  transform: translate(-50%, -52%) rotate(-6deg);
}

.boost-art::before,
.boost-art::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 270px;
  height: 120px;
  border: 1px solid rgba(255, 201, 74, .22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(12deg);
}

.boost-art::after {
  width: 220px;
  height: 160px;
  border-color: rgba(155, 92, 255, .28);
  transform: translate(-50%, -50%) rotate(-22deg);
}

.boost-coin {
  position: absolute;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid #ffb62f;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe37a, #f59b18);
  color: #6e3500;
  box-shadow: 0 0 24px rgba(255, 185, 47, .24);
  font-size: 12px;
  font-weight: 950;
}

.coin-one { top: 18%; right: 10%; transform: rotate(18deg); }
.coin-two { bottom: 9%; left: 14%; transform: rotate(-18deg); }
.coin-three { right: 22%; bottom: 2%; transform: scale(.78) rotate(36deg); }

.app-promo-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 171, 35, .12), transparent 34%),
    radial-gradient(circle at 86% 100%, rgba(255, 67, 156, .13), transparent 42%),
    linear-gradient(135deg, #110b14, #17101f 58%, #100b18);
}

.app-promo-art {
  position: relative;
  min-height: 320px;
}

.promo-wheel {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 260px;
  height: 118px;
  border: 10px solid #8f4c20;
  border-radius: 50%;
  background:
    repeating-conic-gradient(#b72131 0 10deg, #111 10deg 20deg),
    #151015;
  box-shadow: 0 30px 45px rgba(0,0,0,.55), 0 0 26px rgba(255, 180, 45, .16);
  transform: translateX(-50%) rotate(-4deg);
}

.promo-wheel::before {
  content: "";
  position: absolute;
  inset: 30px 50px;
  border: 6px solid #f0b33a;
  border-radius: 50%;
  background: #251611;
}

.promo-wheel span {
  position: absolute;
  z-index: 1;
  inset: 50% auto auto 50%;
  color: #ffd35e;
  font-size: 50px;
  transform: translate(-50%, -50%);
}

.promo-phone {
  position: absolute;
  z-index: 3;
  top: 6px;
  right: 8%;
  width: 132px;
  height: 250px;
  padding: 24px 9px 12px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 5px solid #f1b940;
  border-radius: 26px;
  background: #0c0912;
  box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 25px rgba(255, 201, 74, .2);
  transform: rotate(7deg);
}

.promo-phone img {
  width: 100%;
  border-radius: 14px;
}

.promo-phone b {
  color: var(--pink);
  font-size: 12px;
  text-align: center;
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 35px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.24);
  transform: translateX(-50%);
}

.promo-chip {
  position: absolute;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 4px dashed #fff0ad;
  border-radius: 50%;
  background: #231620;
  color: #ffbe35;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
  font-size: 22px;
}

.promo-chip-one { top: 44px; left: 8%; transform: rotate(-14deg); }
.promo-chip-two { right: 5%; bottom: 30px; transform: rotate(18deg); }

.promo-coins {
  position: absolute;
  z-index: 2;
  bottom: 5px;
  left: 18%;
}

.promo-coins i {
  position: absolute;
  width: 72px;
  height: 16px;
  border: 2px solid #ffc84e;
  border-radius: 50%;
  background: linear-gradient(#ffdf70, #bd6810);
}

.promo-coins i:nth-child(1) { bottom: 0; }
.promo-coins i:nth-child(2) { bottom: 10px; }
.promo-coins i:nth-child(3) { bottom: 20px; }
.promo-coins i:nth-child(4) { bottom: 30px; }

.app-promo-copy p,
.share-panel p {
  margin: 0 0 22px;
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.app-promo-copy p strong {
  color: #fff1a1;
}

.app-promo-copy > small {
  display: block;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 9px;
}

.gradient-cta {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(95deg, #b448ff, #ff3f93);
  box-shadow: 0 15px 35px rgba(206, 64, 211, .2);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: 180ms var(--ease);
}

.gradient-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(206, 64, 211, .3);
}

.select-game-banner {
  min-height: 96px;
  padding: 18px clamp(20px, 4vw, 36px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #36da8a, #19b964);
  box-shadow: 0 16px 45px rgba(34, 218, 131, .2);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.select-check {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #19b964;
  font-size: 27px;
  font-weight: 950;
}

.select-game-banner strong,
.select-game-banner small {
  display: block;
}

.select-game-banner strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.select-game-banner small {
  margin-top: 5px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 700;
}

.select-arrow {
  font-size: 27px;
}

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

.benefit-grid article {
  min-height: 94px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 201, 74, .15);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(29, 22, 38, .85), rgba(16, 13, 22, .9));
}

.benefit-grid article > span {
  width: 37px;
  flex: 0 0 37px;
  color: #ffd21f;
  font-size: 27px;
  text-align: center;
}

.benefit-grid strong,
.benefit-grid small {
  display: block;
}

.benefit-grid strong {
  font-size: 13px;
}

.benefit-grid small {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 9px;
}

.activity-card {
  padding: clamp(22px, 3vw, 32px);
}

.activity-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.activity-heading h2 {
  margin: 2px 0 0;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -.035em;
}

.activity-heading > small {
  margin-left: auto;
  color: var(--muted-2);
  font-size: 9px;
  text-transform: uppercase;
}

.activity-icon {
  color: var(--pink);
  filter: drop-shadow(0 0 8px rgba(255, 79, 153, .55));
}

.activity-track,
.record-track {
  margin-top: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scroll-snap-type: inline mandatory;
}

.activity-track article {
  min-height: 92px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: rgba(7, 12, 28, .72);
  scroll-snap-align: start;
}

.activity-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d64b40;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.activity-avatar.violet { background: #9546b9; }
.activity-avatar.green { background: #268b67; }

.activity-track strong,
.activity-track b,
.activity-track small {
  display: block;
}

.activity-track strong { font-size: 12px; }
.activity-track b { margin-top: 2px; color: #ffe15a; font-size: 16px; }
.activity-track small { margin-top: 3px; color: var(--muted-2); font-size: 8px; }

.activity-track em {
  padding: 5px 8px;
  border: 1px solid rgba(91, 228, 155, .4);
  border-radius: 7px;
  color: var(--green);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.share-panel {
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 80, 198, .18), transparent 36%),
    linear-gradient(145deg, #35133d, #21132d 55%, #160f20);
}

.share-mark {
  color: #da4dff;
  filter: drop-shadow(0 0 13px rgba(218, 77, 255, .5));
  font-size: 47px;
}

.share-panel h2 {
  margin-bottom: 8px;
}

.share-panel .gradient-cta {
  width: min(620px, 100%);
}

.quick-launch-section {
  padding-top: 20px;
  scroll-margin-top: calc(var(--topbar) + 18px);
}

.quick-launch-heading {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.quick-launch-heading > small {
  color: var(--muted-2);
  font-size: 10px;
}

.heading-icon {
  color: var(--gold);
  font-size: .6em;
  vertical-align: middle;
}

.portal-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portal-card {
  position: relative;
  min-width: 0;
  padding: 19px 16px 14px;
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(16, 15, 29, .98), rgba(13, 12, 23, .98));
  box-shadow: 0 16px 35px rgba(0,0,0,.2);
}

.portal-art {
  width: min(138px, 90%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 3px solid rgba(255, 205, 79, .38);
  border-radius: 50%;
  background: #17111e;
  box-shadow: 0 9px 22px rgba(0,0,0,.36), 0 0 0 5px rgba(255,255,255,.025);
}

.portal-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.38);
}

.portal-card > strong {
  max-width: 100%;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 6px 9px;
  border-radius: 8px;
  background: #ff3269;
  box-shadow: 0 0 17px rgba(255, 50, 105, .4);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
}

.portal-badge.new { background: #ffd000; color: #241500; }
.portal-badge.jackpot { background: #9e52ff; }

.portal-play {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0,0,0,.25);
}

.portal-play span { margin-left: 6px; font-size: 9px; }
.portal-play.orange { background: linear-gradient(#ff8334, #ff4e0f); }
.portal-play.gold { background: linear-gradient(#ffdc17, #e7ad00); color: #1d1800; text-shadow: none; }
.portal-play.pink { background: linear-gradient(#ff487d, #e80049); }
.portal-play.green { background: linear-gradient(#38d67e, #16aa5f); }
.portal-play.blue { background: linear-gradient(#43b6ee, #218cce); }
.portal-play.coral { background: linear-gradient(#ff8a53, #ff5327); }

.reward-records {
  margin-top: 54px;
  padding: clamp(24px, 4vw, 38px);
}

.reward-records .section-heading > small {
  color: var(--muted-2);
  font-size: 9px;
  text-transform: uppercase;
}

.verified-dot {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #07150e;
  font-size: 14px;
  vertical-align: 3px;
}

.record-track {
  grid-auto-columns: minmax(245px, .65fr);
}

.record-phone {
  min-height: 360px;
  padding: 36px 22px 0;
  display: grid;
  align-content: start;
  justify-items: center;
  border: 2px solid rgba(255, 201, 74, .25);
  border-radius: 23px;
  background: linear-gradient(#f7faf7 0 78%, #1c1a24 100%);
  color: #17352f;
  box-shadow: 0 22px 36px rgba(0,0,0,.32);
  scroll-snap-align: start;
  text-align: center;
}

.record-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dfe8e3;
  font-size: 13px;
  font-weight: 950;
}

.record-avatar.purple { background: #e5d8f1; color: #6b3e82; }
.record-avatar.gray { background: #e5e5e5; color: #666; }

.record-phone > strong { margin-top: 20px; font-size: 13px; }
.record-phone > small { margin-top: 4px; color: #64766f; font-size: 9px; }
.record-phone > b { margin-top: 72px; font-size: 37px; letter-spacing: -.04em; }
.record-phone > em { margin-top: 7px; color: #6b7772; font-size: 9px; font-style: normal; }

.record-phone footer {
  width: calc(100% + 44px);
  margin: auto -22px 0;
  padding: 16px 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
}

.disabled-record {
  filter: saturate(.4);
}

.rules-panel {
  margin-top: 18px;
}

.rules-panel summary {
  position: relative;
  z-index: 1;
  min-height: 78px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.rules-panel summary::-webkit-details-marker { display: none; }

.rules-panel summary > span {
  color: var(--gold);
  font-size: 19px;
}

.rules-panel summary strong {
  font-size: 18px;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.rules-panel summary i {
  color: var(--gold);
  font-size: 23px;
  font-style: normal;
  transition: 180ms var(--ease);
}

.rules-panel[open] summary i { transform: rotate(180deg); }

.rules-body {
  position: relative;
  z-index: 1;
  padding: 22px 34px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}

.rules-body h3 {
  margin: 0 0 7px;
  color: #ffd42a;
  font-size: 14px;
}

.rules-body p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.assurance-list {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.assurance-list article {
  min-height: 92px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 201, 74, .13);
  background: linear-gradient(90deg, rgba(22, 18, 31, .88), rgba(32, 28, 19, .5));
}

.assurance-list article > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  background: #181522;
  color: #ffd500;
  font-size: 18px;
}

.assurance-list strong,
.assurance-list small {
  display: block;
}

.assurance-list strong { font-size: 12px; }
.assurance-list small { margin-top: 5px; color: var(--muted-2); font-size: 9px; }

.floating-support {
  position: fixed;
  z-index: 65;
  right: 20px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 8px;
}

.support-bubble {
  position: relative;
  padding: 12px 16px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0,0,0,.32);
  color: #171321;
  font-size: 11px;
  font-weight: 850;
}

.support-bubble::after {
  content: "";
  position: absolute;
  right: 25px;
  bottom: -8px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
}

.floating-support button {
  min-width: 146px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg, #a940f3, #ef3f9f);
  box-shadow: 0 0 30px rgba(193, 64, 232, .4);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.floating-support button span {
  margin-right: 7px;
  font-size: 8px;
  letter-spacing: -2px;
}

@media (max-width: 1080px) {
  .benefit-grid,
  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .welcome-boost-card,
  .app-promo-card {
    grid-template-columns: 1fr;
  }

  .boost-art {
    display: none;
  }

  .app-promo-art {
    order: 2;
  }

  .rules-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-app-btn {
    min-width: 40px;
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .top-app-btn span {
    display: none;
  }

  .reference-additions {
    margin-top: 14px;
    gap: 14px;
  }

  .welcome-boost-card,
  .app-promo-card,
  .activity-card,
  .share-panel,
  .reward-records,
  .rules-panel {
    border-radius: 19px;
  }

  .welcome-boost-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .welcome-boost-copy h2,
  .app-promo-copy h2,
  .share-panel h2,
  .reward-records h2 {
    font-size: 29px;
  }

  .boost-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .boost-pills span:last-child {
    grid-column: 1 / -1;
  }

  .app-promo-card {
    min-height: 0;
    padding: 24px 20px 16px;
    gap: 10px;
  }

  .app-promo-copy {
    text-align: center;
  }

  .app-promo-copy .gradient-cta {
    width: 100%;
  }

  .app-promo-copy > small {
    text-align: left;
  }

  .app-promo-art {
    min-height: 260px;
  }

  .promo-wheel {
    width: 225px;
    height: 100px;
  }

  .promo-phone {
    right: 12%;
    width: 105px;
    height: 205px;
  }

  .promo-chip-one { left: 2%; }

  .select-game-banner {
    min-height: 92px;
    padding: 16px;
    gap: 12px;
    border-radius: 17px;
  }

  .select-check {
    width: 40px;
    height: 40px;
  }

  .select-game-banner strong {
    font-size: 20px;
  }

  .select-game-banner small {
    font-size: 9px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .benefit-grid article {
    min-height: 76px;
    padding: 13px 16px;
  }

  .activity-card {
    padding: 20px 16px;
  }

  .activity-heading > small {
    display: none;
  }

  .activity-track {
    grid-auto-columns: minmax(250px, 88%);
  }

  .share-panel {
    padding: 28px 18px;
  }

  .quick-launch-section {
    padding-top: 14px;
  }

  .quick-launch-heading > small {
    display: none;
  }

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

  .portal-card {
    padding: 14px 10px 10px;
    border-radius: 16px;
  }

  .portal-art {
    width: min(118px, 88%);
  }

  .portal-card > strong {
    font-size: 10px;
  }

  .portal-play {
    min-height: 39px;
    font-size: 10px;
  }

  .portal-badge {
    top: 8px;
    right: 8px;
  }

  .reward-records {
    margin-top: 40px;
    padding: 22px 15px;
  }

  .reward-records .section-heading > small {
    display: none;
  }

  .record-track {
    grid-auto-columns: 84%;
  }

  .record-phone {
    min-height: 330px;
  }

  .rules-panel summary {
    min-height: 70px;
    padding: 0 17px;
  }

  .rules-panel summary strong {
    font-size: 14px;
  }

  .rules-body {
    padding: 20px 18px 24px;
  }

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

  .floating-support {
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .support-bubble {
    font-size: 10px;
  }

  .floating-support button {
    min-width: 134px;
    min-height: 46px;
  }
}

@media (max-width: 390px) {
  .welcome-boost-copy h2,
  .app-promo-copy h2,
  .share-panel h2,
  .reward-records h2 {
    font-size: 26px;
  }

  .boost-pills {
    grid-template-columns: 1fr;
  }

  .boost-pills span:last-child {
    grid-column: auto;
  }

  .select-arrow {
    display: none;
  }

  .select-game-banner {
    grid-template-columns: auto 1fr;
  }
}

/* Admin-controlled announcement, proof gallery, and uploaded screenshot preview. */
.site-announcement {
  position: sticky;
  top: var(--topbar);
  z-index: 18;
  min-height: 46px;
  padding: 8px clamp(20px, 3vw, 42px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 201, 74, .17);
  background: linear-gradient(90deg, rgba(255, 201, 74, .12), rgba(155, 92, 255, .15), rgba(255, 79, 153, .12)), rgba(14, 9, 22, .94);
  backdrop-filter: blur(16px);
}

.site-announcement > span {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--gold);
  color: #241500;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .08em;
}

.site-announcement p {
  margin: 0;
  color: #eee5f4;
  font-size: 11px;
  font-weight: 720;
}

.site-announcement a {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.site-announcement > button {
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  cursor: pointer;
}

.footer-links a {
  color: var(--muted);
  font-size: 10px;
}

.footer-links a:hover { color: #fff; }

.proof-gallery-disclosure {
  max-width: 850px;
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.65;
}

.public-proof-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.public-proof-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 74, .15);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(25, 17, 38, .95), rgba(13, 10, 20, .98));
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

.public-proof-card button {
  width: 100%;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.public-proof-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #08060d;
}

.public-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms var(--ease);
}

.public-proof-card:hover .public-proof-image img { transform: scale(1.025); }

.public-proof-type {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(8,6,13,.82);
  color: #fff;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.public-proof-reviewed {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(91, 228, 155, .88);
  color: #06140d;
  font-size: 7px;
  font-weight: 950;
}

.public-proof-copy { padding: 15px 16px 17px; }
.public-proof-copy strong,
.public-proof-copy span,
.public-proof-copy small { display: block; }
.public-proof-copy strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.public-proof-copy span { margin-top: 6px; color: var(--gold); font-size: 15px; font-weight: 950; }
.public-proof-copy small { margin-top: 6px; color: var(--muted-2); font-size: 8px; line-height: 1.45; }

.proof-gallery-empty {
  grid-column: 1 / -1;
  min-height: 260px;
  padding: 34px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px dashed rgba(255,201,74,.2);
  border-radius: 19px;
  background: rgba(255,255,255,.02);
  text-align: center;
}

.proof-gallery-empty > span { color: var(--gold); font-size: 34px; }
.proof-gallery-empty strong { margin-top: 10px; font-size: 16px; }
.proof-gallery-empty p { max-width: 470px; margin: 8px 0 14px; color: var(--muted); font-size: 10px; line-height: 1.6; }
.proof-gallery-empty a { min-height: 38px; padding: 0 14px; display: inline-flex; align-items: center; border: 1px solid rgba(255,201,74,.24); border-radius: 10px; background: rgba(255,201,74,.08); color: var(--gold); font-size: 10px; font-weight: 900; }

.proof-preview-modal {
  width: min(980px, calc(100vw - 34px));
  max-height: min(88vh, 850px);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  overflow: hidden;
}

.proof-preview-image {
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: auto;
  background: #050407;
}

.proof-preview-image img {
  width: 100%;
  height: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.proof-preview-copy {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-preview-copy h2 {
  margin: 9px 0 16px;
  font-size: clamp(25px, 4vw, 38px);
  letter-spacing: -.045em;
}

.proof-preview-meta { display: grid; gap: 7px; }
.proof-preview-meta strong { font-size: 13px; }
.proof-preview-meta b { color: var(--gold); font-size: 25px; letter-spacing: -.03em; }
.proof-preview-meta small { color: var(--muted-2); font-size: 9px; }
.proof-preview-copy > p { margin: 18px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.proof-preview-warning { margin-top: 24px; padding: 13px; border: 1px solid rgba(255,201,74,.16); border-radius: 11px; background: rgba(255,201,74,.045); color: var(--muted-2); font-size: 9px; line-height: 1.55; }

@media (max-width: 900px) {
  .public-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-preview-modal { grid-template-columns: 1fr; overflow-y: auto; }
  .proof-preview-image { min-height: 300px; max-height: 54vh; }
  .proof-preview-image img { max-height: 54vh; }
}

@media (max-width: 620px) {
  .site-announcement { top: var(--topbar); padding: 8px 13px; justify-content: flex-start; gap: 8px; }
  .site-announcement p { flex: 1; font-size: 9px; line-height: 1.35; }
  .site-announcement a { display: none !important; }
  .public-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .public-proof-card { border-radius: 15px; }
  .public-proof-copy { padding: 11px 11px 13px; }
  .public-proof-copy strong { font-size: 10px; }
  .public-proof-copy span { margin-top: 4px; font-size: 13px; }
  .public-proof-type { top: 8px; left: 8px; padding: 5px 7px; }
  .public-proof-reviewed { right: 8px; bottom: 8px; }
  .proof-preview-modal { width: calc(100vw - 20px); max-height: 91vh; }
  .proof-preview-copy { padding: 24px 18px 28px; }
  .proof-preview-image { min-height: 260px; max-height: 48vh; }
  .proof-preview-image img { max-height: 48vh; }
}


/* V4: all game sections are controlled from Admin Studio. */
.portal-play[style*="--custom-button"] {
  background: linear-gradient(135deg, var(--custom-button), color-mix(in srgb, var(--custom-button) 72%, #ffffff));
}

@media (max-width: 640px) {
  .quick-launch-heading h2 { text-transform: uppercase; letter-spacing: -.035em; }
  .portal-card { min-height: 205px; justify-content: space-between; }
  .portal-art { width: min(126px, 90%); }
  .portal-card > strong { min-height: 14px; }
}

/* Delilah Service V5: simplified Free Play header, welcome offer, and unified library */
.free-play-header-badge {
  min-width: 148px;
  height: 46px;
  padding: 0 14px 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 201, 74, .52);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 201, 74, .15), rgba(155, 92, 255, .18));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255,255,255,.035);
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}

.free-play-header-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 107, .82);
  background: linear-gradient(135deg, rgba(255, 201, 74, .22), rgba(155, 92, 255, .24));
}

.free-play-badge-icon {
  width: 27px;
  height: 27px;
  display: grid;
  flex: 0 0 27px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  color: #2f1800;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(255, 201, 74, .22);
}

.free-play-header-badge > span:last-child {
  min-width: 0;
  display: grid;
  gap: 1px;
  text-align: left;
}

.free-play-header-badge small {
  color: #b6a8c2;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .09em;
}

.free-play-header-badge strong {
  color: #ffe17d;
  font-size: 13px;
  line-height: 1.05;
  white-space: nowrap;
}

.free-play-side-card strong {
  color: #ffe07b;
}

.free-play-hero-art .vault-door span {
  font-family: inherit;
  font-size: 40px;
  font-weight: 950;
  letter-spacing: -.05em;
}

.free-play-orbit-mark {
  position: absolute;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 232, 164, .5);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 211, 88, .95), rgba(178, 91, 22, .88));
  color: #402300;
  font-weight: 950;
  box-shadow: 0 9px 20px rgba(0,0,0,.3), 0 0 24px rgba(255, 207, 83, .17);
  animation: coinFloat 3s ease-in-out infinite;
}

.free-play-orbit-mark.mark-a { top: 11%; right: 10%; }
.free-play-orbit-mark.mark-b { bottom: 13%; right: 23%; animation-delay: .8s; transform: scale(.82); }
.free-play-orbit-mark.mark-c { top: 29%; left: 8%; animation-delay: 1.5s; transform: scale(.72); }

.welcome-offer-card {
  position: relative;
  margin-top: 24px;
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.2vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(255, 201, 74, .25);
  border-radius: 22px;
  background:
    radial-gradient(circle at 87% 20%, rgba(230, 61, 180, .22), transparent 30%),
    linear-gradient(130deg, rgba(44, 18, 61, .96), rgba(22, 12, 35, .98) 58%, rgba(39, 19, 49, .96));
  box-shadow: 0 20px 56px rgba(0,0,0,.26), inset 0 0 0 1px rgba(255,255,255,.025);
}

.welcome-offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(circle, rgba(255, 223, 126, .9) 0 1px, transparent 1.5px);
  background-size: 42px 42px;
}

.welcome-offer-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 215, 102, .5);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffda61, #dc8116);
  color: #3d2000;
  font-size: 25px;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(0,0,0,.28), 0 0 28px rgba(255,201,74,.17);
}

.welcome-offer-copy {
  position: relative;
  z-index: 1;
}

.welcome-offer-copy h2 {
  margin: 5px 0 6px;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.welcome-offer-copy p {
  margin: 0;
  color: #cbbdd5;
  font-size: 14px;
  line-height: 1.55;
}

.welcome-offer-copy small {
  display: block;
  margin-top: 7px;
  color: #8f809b;
  font-size: 9px;
}

.welcome-offer-button {
  position: relative;
  z-index: 1;
  min-width: 205px;
  white-space: nowrap;
}

.main-game-library {
  padding-top: 22px;
}

.library-summary {
  margin-bottom: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.library-summary h2 {
  margin: 5px 0 0;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -.045em;
}

.library-summary > small {
  color: #9c8da8;
  font-size: 11px;
  font-weight: 850;
}

.free-play-modal-value {
  margin: 18px 0;
  padding: 18px;
  display: grid;
  justify-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 201, 74, .25);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 201, 74, .1), rgba(155, 92, 255, .1));
}

.free-play-modal-value strong {
  color: #ffe17d;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.05em;
}

.free-play-modal-value small {
  color: #a897b6;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
}

.practice-mode-badge {
  padding: 9px 12px;
  border: 1px solid rgba(255, 201, 74, .24);
  border-radius: 11px;
  background: rgba(255, 201, 74, .08);
  color: #ffe17d;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  white-space: nowrap;
}

.simple-slot-controls .bet-display strong {
  font-size: 10px;
}

@media (max-width: 860px) {
  .welcome-offer-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .welcome-offer-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topbar .top-app-btn {
    display: none;
  }

  .free-play-header-badge {
    min-width: 0;
    height: 40px;
    margin-left: auto;
    padding: 0 10px 0 7px;
    gap: 7px;
    border-radius: 12px;
  }

  .free-play-badge-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .free-play-header-badge small {
    display: none;
  }

  .free-play-header-badge strong {
    font-size: 11px;
  }

  .welcome-offer-card {
    margin-top: 16px;
    padding: 18px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
    border-radius: 18px;
  }

  .welcome-offer-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 19px;
  }

  .welcome-offer-copy h2 {
    font-size: 23px;
  }

  .welcome-offer-copy p {
    font-size: 12px;
  }

  .welcome-offer-copy small {
    font-size: 8px;
  }

  .welcome-offer-button {
    min-width: 0;
    height: 45px;
  }

  .discovery-bar {
    margin-top: 14px;
  }

  .main-game-library {
    padding-top: 18px;
  }

  .library-summary {
    align-items: center;
  }

  .library-summary h2 {
    font-size: 24px;
  }

  .free-play-hero-art .vault-door span {
    font-size: 27px;
  }

  .free-play-orbit-mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .practice-mode-badge {
    padding: 8px 9px;
    font-size: 7px;
  }
}

@media (max-width: 390px) {
  .free-play-header-badge strong {
    font-size: 10px;
  }

  .welcome-offer-card {
    grid-template-columns: 1fr;
  }

  .welcome-offer-icon {
    display: none;
  }

  .welcome-offer-button {
    grid-column: auto;
  }
}

/* Delilah Service V7 customer support panel */
.support-modal {
  width: min(94vw, 760px);
  padding: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(238, 63, 159, .16), transparent 34%),
    radial-gradient(circle at 4% 100%, rgba(155, 92, 255, .15), transparent 32%),
    linear-gradient(145deg, #1a1128, #100a19 72%);
  border-color: rgba(255, 201, 74, .2);
}

.support-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.025), transparent 65%);
}

.support-modal > * {
  position: relative;
  z-index: 1;
}

.support-modal-header {
  max-width: 580px;
  padding-right: 44px;
}

.support-modal-header h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}

.support-modal-header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.support-options {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-channel {
  --channel: var(--gold);
  position: relative;
  min-height: 88px;
  padding: 14px 14px 14px 15px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 201, 74, .16);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.support-channel::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--channel) 15%, transparent);
  filter: blur(7px);
  pointer-events: none;
}

.support-channel:hover {
  z-index: 2;
  border-color: color-mix(in srgb, var(--channel) 55%, rgba(255,255,255,.15));
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 16px 34px rgba(0,0,0,.25), 0 0 24px color-mix(in srgb, var(--channel) 16%, transparent);
  transform: translateY(-2px);
}

.support-channel-telegram { --channel: #2aabee; }
.support-channel-messenger { --channel: #8a5cff; }
.support-channel-whatsapp { --channel: #25d366; }
.support-channel-instagram { --channel: #e84b91; }
.support-channel-signal { --channel: #4b7bec; }

.support-channel-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--channel) 48%, rgba(255,255,255,.14));
  border-radius: 14px;
  background: color-mix(in srgb, var(--channel) 16%, rgba(12,8,19,.92));
  color: var(--channel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.support-channel-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.support-channel-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.support-channel-copy small {
  overflow: hidden;
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-channel-copy strong {
  overflow: hidden;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-channel > b {
  position: relative;
  z-index: 1;
  color: var(--channel);
  font-size: 17px;
}

.support-safety {
  margin: 20px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(255, 201, 74, .13);
  border-radius: 12px;
  background: rgba(255, 201, 74, .045);
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.55;
}

.mobile-bottom-nav.support-active {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .support-modal {
    padding: 34px 22px 24px;
  }

  .support-options {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .support-channel {
    min-height: 72px;
    grid-template-columns: 43px minmax(0, 1fr) auto;
    border-radius: 14px;
  }

  .support-channel-icon {
    width: 43px;
    height: 43px;
    border-radius: 12px;
  }

  .support-channel-icon svg {
    width: 23px;
    height: 23px;
  }

  .floating-support {
    max-width: calc(100vw - 24px);
  }

  .support-bubble {
    max-width: 190px;
    padding: 10px 13px;
  }

  .mobile-bottom-nav.support-active small {
    font-size: 7px;
  }
}

@media (max-width: 390px) {
  .support-modal-header h2 {
    font-size: 30px;
  }

  .support-channel-copy strong {
    font-size: 10px;
  }

  .floating-support button {
    min-width: 122px;
    padding: 0 17px;
  }
}


/* V8: optional administrator-managed play information */
.play-info-section {
  position: relative;
  margin: clamp(34px, 5vw, 70px) 0 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 196, 76, 0.28);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(189, 61, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(20, 9, 34, 0.98), rgba(8, 5, 15, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.play-info-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(#ffd36a, #e949ff, #7e5cff);
}

.play-info-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.play-info-header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.05;
}

.play-info-header > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted, #b9abc8);
  line-height: 1.65;
  text-align: right;
}

.play-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.play-info-card {
  display: flex;
  gap: 14px;
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(42, 21, 64, 0.78), rgba(13, 8, 24, 0.9));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.play-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 196, 76, 0.36);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.play-info-number {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 199, 82, 0.36);
  border-radius: 12px;
  color: #ffd775;
  background: rgba(255, 199, 82, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.play-info-card h3 {
  margin: 3px 0 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.play-info-card p {
  margin: 0;
  color: var(--muted, #b9abc8);
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: pre-line;
}

@media (max-width: 980px) {
  .play-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .play-info-header { align-items: start; flex-direction: column; }
  .play-info-header > p { text-align: left; }
}

@media (max-width: 620px) {
  .play-info-section { margin-top: 28px; padding: 20px 16px 18px; border-radius: 22px; }
  .play-info-grid { grid-template-columns: 1fr; }
  .play-info-card { min-height: 0; padding: 16px; }
}


/* Delilah Service V9: editable reference-style play information and feature boxes */
.play-info-section {
  margin: clamp(34px, 5vw, 68px) 0 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.play-info-section::before { display: none; }

.play-info-panel {
  overflow: hidden;
  border: 1px solid rgba(244, 194, 64, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 5%, rgba(156, 58, 220, 0.17), transparent 32%),
    radial-gradient(circle at 96% 92%, rgba(231, 185, 32, 0.08), transparent 40%),
    linear-gradient(145deg, rgba(28, 13, 39, 0.98), rgba(10, 8, 16, 0.98));
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.play-info-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 20px clamp(20px, 3vw, 34px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: #fff;
  background: linear-gradient(90deg, rgba(49, 21, 61, 0.92), rgba(20, 13, 28, 0.88));
  cursor: pointer;
  text-align: left;
}

.play-info-toggle-title {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--display, inherit);
  font-size: clamp(1.15rem, 2.4vw, 1.72rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.play-info-heading-icon {
  color: #ffd21f;
  font-size: 1.05em;
  transform: rotate(90deg);
}

.play-info-chevron {
  color: #ffd21f;
  font-size: 1.65rem;
  font-weight: 900;
  transition: transform 180ms ease;
}

.play-info-toggle[aria-expanded="false"] .play-info-chevron { transform: rotate(180deg); }

.play-info-content {
  display: grid;
  grid-template-rows: 1fr;
  padding: clamp(22px, 4vw, 38px);
  opacity: 1;
  transition: grid-template-rows 220ms ease, padding 220ms ease, opacity 180ms ease;
}

.play-info-content.collapsed {
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.play-info-content > * { min-height: 0; }
.play-info-content.collapsed > * { overflow: hidden; }

.play-info-intro {
  margin: 0 0 24px;
  color: #bdb2ca;
  line-height: 1.65;
}

.play-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 42px) clamp(26px, 4vw, 56px);
}

.play-info-rule {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-width: 0;
}

.play-info-rule-icon {
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  margin-top: 1px;
  color: #ffd21f;
  filter: drop-shadow(0 0 8px rgba(255, 210, 31, 0.22));
}

.play-info-rule-icon svg,
.play-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.play-info-rule h3 {
  margin: 0 0 8px;
  color: #ffd32a;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.35;
  text-transform: uppercase;
}

.play-info-rule p {
  margin: 0;
  color: #aaa2b8;
  font-size: 0.94rem;
  line-height: 1.62;
  white-space: pre-line;
}

.play-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.play-feature-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 108px;
  padding: 18px 22px;
  border: 1px solid rgba(238, 194, 50, 0.22);
  background: linear-gradient(110deg, rgba(18, 13, 29, 0.94), rgba(28, 25, 15, 0.56));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.play-feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 42, 0.3));
}

.play-feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffd21f;
  background: rgba(22, 16, 36, 0.82);
}

.play-feature-card h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.play-feature-card p {
  margin: 0;
  color: #9992aa;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-line;
}

@media (max-width: 780px) {
  .play-info-grid { grid-template-columns: 1fr; gap: 27px; }
  .play-feature-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .play-feature-card { min-height: 96px; }
}

@media (max-width: 620px) {
  .play-info-section { margin-top: 28px; }
  .play-info-panel { border-radius: 18px; }
  .play-info-toggle { min-height: 66px; padding: 17px 18px; }
  .play-info-toggle-title { gap: 9px; font-size: 1.05rem; }
  .play-info-content { padding: 27px 20px 30px; }
  .play-info-rule { gap: 10px; }
  .play-info-rule-icon { flex-basis: 23px; width: 23px; height: 23px; }
  .play-info-rule h3 { margin-bottom: 7px; font-size: 0.98rem; }
  .play-info-rule p { font-size: 0.88rem; line-height: 1.62; }
  .play-feature-card { padding: 15px 14px; min-height: 92px; }
  .play-feature-icon { flex-basis: 54px; width: 54px; height: 54px; padding: 15px; }
}

/* Delilah Service V12 public proof gallery */
.cashout-proof-section { margin-top: 34px; padding: clamp(22px, 3vw, 34px); border: 1px solid rgba(248,199,31,.17); border-radius: 28px; background: linear-gradient(145deg, rgba(30,14,48,.86), rgba(9,9,17,.92)); box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.04); overflow: hidden; }
.proof-section-heading { display: flex; justify-content: space-between; gap: 22px; align-items: end; margin-bottom: 22px; }
.proof-section-heading h2 { margin: 5px 0 7px; color: #fff; font-size: clamp(24px,3vw,38px); }
.proof-section-heading p { max-width: 700px; margin: 0; color: #9d94aa; line-height: 1.55; }
.proof-count { flex: 0 0 auto; padding: 8px 12px; border: 1px solid rgba(255,204,42,.22); border-radius: 999px; color: #ffdf62; background: rgba(255,204,42,.07); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.cashout-proof-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.cashout-proof-card { min-width: 0; border: 1px solid rgba(255,255,255,.075); border-radius: 20px; background: rgba(8,8,16,.76); overflow: hidden; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.cashout-proof-card:hover { transform: translateY(-3px); border-color: rgba(246,198,32,.3); box-shadow: 0 18px 35px rgba(0,0,0,.25); }
.cashout-proof-image { position: relative; display: block; height: 250px; color: #fff; text-decoration: none; background: #080810; overflow: hidden; }
.cashout-proof-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.cashout-proof-card:hover .cashout-proof-image img { transform: scale(1.025); }
.cashout-proof-image::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent, rgba(5,5,11,.88)); pointer-events: none; }
.cashout-proof-image span { position: absolute; z-index: 1; left: 14px; bottom: 13px; padding: 7px 10px; border-radius: 999px; color: #fff; background: rgba(157,41,224,.86); font-size: 9px; font-weight: 950; letter-spacing: .05em; box-shadow: 0 0 18px rgba(201,43,219,.28); }
.cashout-proof-copy { padding: 17px; }
.cashout-proof-label-row { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.cashout-proof-label-row span, .cashout-proof-label-row b { padding: 5px 7px; border-radius: 999px; font-size: 8px; letter-spacing: .04em; text-transform: uppercase; }
.cashout-proof-label-row span { color: #ffdf65; background: rgba(255,204,39,.08); }
.cashout-proof-label-row b { color: #6deb9d; background: rgba(40,201,106,.09); }
.cashout-proof-copy h3 { margin: 11px 0 5px; color: #fff; font-size: 18px; }
.cashout-proof-copy p { margin: 7px 0 0; color: #a59cab; line-height: 1.48; }
.cashout-proof-copy .cashout-proof-person { color: #d2c9d9; }
.cashout-proof-copy .cashout-proof-person strong { color: #ffe263; }
.cashout-proof-copy small { display: block; margin-top: 10px; color: #776f7f; }
.proof-gallery-disclaimer { margin: 18px 0 0; color: #756d7d; font-size: 11px; text-align: center; }
@media (max-width: 980px) { .cashout-proof-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 620px) {
  .cashout-proof-section { margin-top: 24px; padding: 18px; border-radius: 22px; }
  .proof-section-heading { align-items: flex-start; flex-direction: column; }
  .cashout-proof-grid { grid-template-columns: 1fr; }
  .cashout-proof-image { height: 280px; }
}

/* Delilah Service V12.2 custom homepage hero images */
.custom-hero-art {
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
}

.custom-hero-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  height: min(360px, 100%);
  min-height: 260px;
  display: block;
  border-radius: 28px;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,.38));
}

.custom-hero-image-glow {
  position: absolute;
  z-index: 1;
  width: 75%;
  height: 72%;
  border-radius: 50%;
  background: rgba(255,206,80,.18);
  filter: blur(55px);
}

.hero-slide-two .custom-hero-image-glow {
  background: rgba(70,225,255,.2);
}

.hero-slide-three .custom-hero-image-glow {
  background: rgba(255,91,173,.2);
}

.hero-controls.single-slide .hero-dots {
  display: none;
}

@media (max-width: 760px) {
  .custom-hero-art img {
    width: min(100%, 390px);
    height: 230px;
    min-height: 0;
    border-radius: 22px;
  }
}
.hero-controls.single-slide { display: none; }

/* V12.3 account recovery and authenticated drawer states */
.auth-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ffc94a;
  font: inherit;
  font-weight: 800;
  padding: 2px 0 8px;
  cursor: pointer;
  text-align: right;
  align-self: flex-end;
}
.auth-link-button:hover { text-decoration: underline; }
.auth-link-button.centered { align-self: center; text-align: center; margin-top: 4px; }
.auth-helper-copy { margin: -2px 0 4px; color: var(--muted); line-height: 1.55; font-size: .92rem; }
#forgotPasswordStatus { color: #d6c8e2; text-align: center; }
#drawerProfileBtn { white-space: normal; line-height: 1.25; }

/* Delilah Service V12.7.1: professional responsive navbar logo sizing */
.brand img,
.mobile-brand img {
  width: auto;
  height: 36px;
  max-width: 40px;
  max-height: 36px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  padding: 2px;
  margin: 0 2px 0 0;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .mobile-brand img,
  .drawer-header .brand img {
    width: auto;
    height: 34px;
    max-width: 38px;
    max-height: 34px;
    object-fit: contain;
    padding: 2px;
    margin-right: 2px;
  }
}

@media (max-width: 420px) {
  .mobile-brand img,
  .drawer-header .brand img {
    height: 32px;
    max-width: 36px;
    max-height: 32px;
  }
}

/* Delilah Service V12.8.1: compact professional game icons */
.game-card {
  --game-icon-size: clamp(72px, 42%, 104px);
}

.game-card-thumb {
  aspect-ratio: auto;
  min-height: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  padding: 22px 18px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 201, 74, 0.10), transparent 46%),
    linear-gradient(180deg, #17101f 0%, #110c18 100%);
}

.game-card-thumb img {
  width: var(--game-icon-size);
  height: var(--game-icon-size);
  max-width: var(--game-icon-size);
  max-height: var(--game-icon-size);
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 201, 74, 0.22);
  background: #100b17;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.34),
    0 0 0 4px rgba(255, 255, 255, 0.025);
}

.game-card:hover .game-card-thumb img {
  transform: scale(1.045);
}

@media (max-width: 760px) {
  .game-card {
    --game-icon-size: clamp(58px, 38%, 72px);
  }

  .game-card-thumb {
    min-height: 132px;
    height: 132px;
    padding: 18px 12px 14px;
  }
}

@media (max-width: 420px) {
  .game-card {
    --game-icon-size: clamp(56px, 37%, 66px);
  }

  .game-card-thumb {
    min-height: 124px;
    height: 124px;
    padding: 16px 10px 12px;
  }
}


/* Delilah Service V12.8.3 full-width hero background images */
.hero-slide.has-custom-hero-background {
  grid-template-columns: 1fr;
  isolation: isolate;
  background: #0b0711 !important;
}

.hero-background-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0b0711;
}

.hero-background-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-background-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 4, 12, .90) 0%, rgba(7, 4, 12, .70) 34%, rgba(7, 4, 12, .30) 63%, rgba(7, 4, 12, .08) 100%),
    linear-gradient(0deg, rgba(5, 3, 9, .30), transparent 45%);
  pointer-events: none;
}

.has-custom-hero-background .hero-copy {
  z-index: 3;
  max-width: 680px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

@media (max-width: 760px) {
  .hero-background-shade {
    background:
      linear-gradient(180deg, rgba(7, 4, 12, .78) 0%, rgba(7, 4, 12, .48) 58%, rgba(7, 4, 12, .20) 100%),
      linear-gradient(90deg, rgba(7, 4, 12, .68), rgba(7, 4, 12, .12));
  }

  .hero-slide.has-custom-hero-background {
    grid-template-rows: 1fr;
  }
}


/* Delilah Service V12.8.7 compact game cards — contained logos + tighter mobile density */
.game-grid .game-card {
  --game-icon-size: 76px;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  background: linear-gradient(180deg, #15101c 0%, #100c17 100%);
}
.game-grid .game-card-thumb {
  position: relative;
  aspect-ratio: auto !important;
  min-height: 136px !important;
  height: 136px !important;
  display: grid !important;
  place-items: start center !important;
  padding: 19px 12px 48px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,201,74,.09), transparent 43%),
    linear-gradient(180deg, #16101e 0%, #100c17 100%) !important;
}
.game-grid .game-card-thumb > img {
  width: var(--game-icon-size) !important;
  height: var(--game-icon-size) !important;
  max-width: var(--game-icon-size) !important;
  max-height: var(--game-icon-size) !important;
  padding: 3px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255,201,74,.28) !important;
  background: #0d0913 !important;
  box-shadow: 0 9px 22px rgba(0,0,0,.40), 0 0 0 3px rgba(255,255,255,.024) !important;
}
.game-grid .game-overlay {
  position: absolute !important;
  inset: auto 10px 8px 10px !important;
  display: block !important;
  opacity: 1 !important;
  padding: 0 !important;
  background: transparent !important;
  pointer-events: none;
}
.game-grid .play-btn {
  pointer-events: auto;
  width: 100% !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.26) !important;
  border-radius: 9px !important;
  background: linear-gradient(180deg, #ffc83e, #f0a915) !important;
  color: #1c1200 !important;
  box-shadow: 0 6px 15px rgba(0,0,0,.26) !important;
  font-size: 9px !important;
  font-weight: 950 !important;
  letter-spacing: .04em;
  transform: none !important;
}
.game-grid .play-btn-label { display: inline !important; }
.game-grid .play-btn-icon { font-size: 8px; }
.game-grid .game-meta {
  min-height: 48px !important;
  padding: 7px 10px 8px !important;
  gap: 1px !important;
  text-align: center;
}
.game-grid .game-meta strong { font-size: 11px !important; }
.game-grid .game-meta small { font-size: 8px !important; }
.game-grid .favorite-btn { width: 27px; height: 27px; border-radius: 8px; font-size: 14px; }
.game-grid .game-badge { top: 7px; left: 7px; padding: 4px 6px; font-size: 7px; }

@media (max-width: 760px) {
  .game-grid { gap: 9px !important; }
  .game-grid .game-card {
    --game-icon-size: 66px;
    min-height: 163px;
    border-radius: 13px;
  }
  .game-grid .game-card-thumb {
    min-height: 119px !important;
    height: 119px !important;
    padding: 15px 8px 42px !important;
  }
  .game-grid .game-overlay { inset: auto 8px 7px 8px !important; }
  .game-grid .play-btn { height: 30px !important; border-radius: 8px !important; font-size: 8px !important; }
  .game-grid .game-meta { min-height: 40px !important; padding: 6px 8px 7px !important; }
  .game-grid .game-meta strong { font-size: 10px !important; }
  .game-grid .game-meta small { display: none !important; }
  .game-grid .favorite-btn { width: 25px; height: 25px; font-size: 13px; }
}

@media (max-width: 420px) {
  .game-grid { gap: 8px !important; }
  .game-grid .game-card {
    --game-icon-size: 58px;
    min-height: 151px;
  }
  .game-grid .game-card-thumb {
    min-height: 109px !important;
    height: 109px !important;
    padding: 13px 7px 39px !important;
  }
  .game-grid .game-overlay { inset: auto 7px 6px 7px !important; }
  .game-grid .play-btn { height: 28px !important; font-size: 8px !important; gap: 5px; }
  .game-grid .game-meta { min-height: 38px !important; padding: 5px 7px 6px !important; }
  .game-grid .game-meta strong { font-size: 9.5px !important; }
  .game-grid .game-badge { top: 6px; left: 6px; }
}

/* Delilah Service V12.8.8 — Recent Winners + full screenshot Cashout Proofs */
.recent-winners-section {
  position: relative;
  margin-top: 28px;
  padding: clamp(18px, 2.5vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(255, 203, 46, .22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(177, 38, 195, .11), transparent 38%),
    linear-gradient(145deg, rgba(17, 11, 25, .96), rgba(8, 9, 15, .98));
  box-shadow: 0 22px 52px rgba(0, 0, 0, .26), inset 0 1px rgba(255,255,255,.035);
}
.recent-winners-section::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 203, 46, .58), transparent);
  pointer-events: none;
}
.recent-winners-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.recent-winners-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 950;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.recent-winners-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border-radius: 10px;
  color: #1a1000;
  background: linear-gradient(145deg, #ffe45e, #f4b817);
  box-shadow: 0 6px 18px rgba(255, 199, 31, .18);
  font-size: 17px;
  font-weight: 1000;
}
.recent-winners-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 320px);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 205, 49, .65) rgba(255,255,255,.04);
  padding: 3px 1px 8px;
}
.recent-winners-track::-webkit-scrollbar { height: 6px; }
.recent-winners-track::-webkit-scrollbar-track { background: rgba(255,255,255,.04); border-radius: 999px; }
.recent-winners-track::-webkit-scrollbar-thumb { background: rgba(255, 205, 49, .62); border-radius: 999px; }
.recent-winner-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 86px;
  padding: 13px 13px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(19, 15, 31, .96), rgba(11, 10, 19, .96));
  box-shadow: inset 0 1px rgba(255,255,255,.03), 0 10px 24px rgba(0,0,0,.2);
}
.recent-winner-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #b72ccf, #6d1a92);
  box-shadow: 0 0 0 2px rgba(255,255,255,.035), 0 8px 19px rgba(0,0,0,.25);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .03em;
}
.recent-winner-copy { min-width: 0; }
.recent-winner-copy strong,
.recent-winner-copy b,
.recent-winner-copy small { display: block; }
.recent-winner-copy strong {
  overflow: hidden;
  color: #f7f5fb;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.recent-winner-copy b {
  margin-top: 2px;
  color: #ffd447;
  font-size: 19px;
  line-height: 1.05;
  font-weight: 1000;
}
.recent-winner-copy small {
  margin-top: 4px;
  color: #777181;
  font-size: 9px;
}
.recent-winner-status {
  align-self: center;
  padding: 5px 7px;
  border: 1px solid rgba(48, 211, 133, .52);
  border-radius: 7px;
  color: #48dc92;
  background: rgba(22, 112, 69, .16);
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .045em;
}
.recent-winner-card.is-highlight {
  border-color: rgba(255, 203, 46, .20);
  background: linear-gradient(145deg, rgba(49, 20, 60, .92), rgba(20, 13, 30, .97));
}
.recent-winner-card.is-highlight .recent-winner-avatar {
  color: #1b1100;
  background: linear-gradient(145deg, #ffe768, #f3b719);
}
.recent-winner-card.is-highlight .recent-winner-status {
  border-color: rgba(255, 205, 66, .48);
  color: #ffe16b;
  background: rgba(179, 125, 6, .13);
}

/* Public proof gallery deliberately shows only the complete screenshot. */
.cashout-proof-section {
  margin-top: 30px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(24, 13, 35, .90), rgba(8, 9, 15, .96));
}
.proof-section-heading-simple {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.proof-section-heading-simple h2 {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 29px);
  font-weight: 950;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.proof-title-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 10px;
  color: #07140d;
  background: linear-gradient(145deg, #53eba5, #22bd72);
  font-size: 16px;
  font-weight: 1000;
}
.cashout-proof-grid {
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.cashout-proof-card {
  align-self: start;
  border-radius: 16px;
  background: #080810;
}
.cashout-proof-card:hover { transform: translateY(-2px); }
.cashout-proof-image {
  position: relative;
  display: block;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
  background: #080810;
}
.cashout-proof-image img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: top center !important;
  transform: none !important;
}
.cashout-proof-image::after,
.cashout-proof-image > span,
.cashout-proof-copy,
.proof-count,
.proof-gallery-disclaimer { display: none !important; }

@media (max-width: 980px) {
  .cashout-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .recent-winners-section { margin-top: 22px; padding: 17px 14px 14px; border-radius: 19px; }
  .recent-winners-heading { margin-bottom: 12px; }
  .recent-winners-heading h2 { font-size: 20px; }
  .recent-winners-icon { width: 28px; height: 28px; flex-basis: 28px; border-radius: 9px; font-size: 15px; }
  .recent-winners-track { grid-auto-columns: minmax(250px, 86%); gap: 10px; }
  .recent-winner-card { min-height: 80px; grid-template-columns: 44px minmax(0, 1fr) auto; padding: 11px; gap: 10px; border-radius: 15px; }
  .recent-winner-avatar { width: 44px; height: 44px; font-size: 12px; }
  .recent-winner-copy b { font-size: 18px; }

  .cashout-proof-section { margin-top: 22px; padding: 17px 14px 15px; border-radius: 19px; overflow: hidden; }
  .proof-section-heading-simple { flex-direction: row; align-items: center; margin-bottom: 13px; }
  .proof-section-heading-simple h2 { font-size: 20px; }
  .proof-title-icon { width: 28px; height: 28px; flex-basis: 28px; border-radius: 9px; font-size: 14px; }
  .cashout-proof-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 84%);
    align-items: start;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 205, 49, .62) rgba(255,255,255,.04);
    padding: 1px 1px 7px;
  }
  .cashout-proof-grid::-webkit-scrollbar { height: 5px; }
  .cashout-proof-grid::-webkit-scrollbar-track { background: rgba(255,255,255,.04); border-radius: 999px; }
  .cashout-proof-grid::-webkit-scrollbar-thumb { background: rgba(255, 205, 49, .62); border-radius: 999px; }
  .cashout-proof-card { scroll-snap-align: start; border-radius: 14px; }
}

/* Delilah Service V12.8.9 — medium game logos + automatic Recent Winner / Proof sliders */
.game-grid .game-card {
  --game-icon-size: 86px;
}

.recent-winners-track,
.cashout-proof-grid.auto-slider-active {
  scroll-behavior: smooth;
}

.recent-winners-track.auto-slider-active {
  grid-auto-columns: calc((100% - 24px) / 3);
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.recent-winners-track.auto-slider-active::-webkit-scrollbar { display: none; }

.cashout-proof-grid.auto-slider-active {
  display: grid;
  grid-template-columns: none !important;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  align-items: start;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.cashout-proof-grid.auto-slider-active::-webkit-scrollbar { display: none; }
.cashout-proof-grid.auto-slider-active .cashout-proof-card { scroll-snap-align: start; }

@media (max-width: 760px) {
  .game-grid .game-card {
    --game-icon-size: 78px;
    min-height: 174px;
  }
  .game-grid .game-card-thumb {
    min-height: 130px !important;
    height: 130px !important;
    padding: 12px 8px 42px !important;
  }
  .recent-winners-track.auto-slider-active {
    grid-auto-columns: minmax(250px, 86%);
  }
  .cashout-proof-grid.auto-slider-active {
    grid-auto-columns: minmax(245px, 84%);
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .game-grid .game-card {
    --game-icon-size: 70px;
    min-height: 162px;
  }
  .game-grid .game-card-thumb {
    min-height: 120px !important;
    height: 120px !important;
    padding: 10px 7px 39px !important;
  }
}


/* Delilah Service V12.8.10 — reinforced one-card-at-a-time autoplay */
.recent-winners-track.auto-slider-active,
.cashout-proof-grid.auto-slider-active {
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch;
}
.recent-winners-track.auto-slider-moving .recent-winner-card,
.cashout-proof-grid.auto-slider-moving .cashout-proof-card {
  transition: transform .55s ease, border-color .55s ease, box-shadow .55s ease;
}
.cashout-proof-grid.auto-slider-active {
  contain: layout style;
}
@media (prefers-reduced-motion: reduce) {
  .recent-winners-track.auto-slider-active,
  .cashout-proof-grid.auto-slider-active { scroll-behavior: auto !important; }
}


/* Delilah Service V12.8.11 — larger professional game marks + polished card typography */
.game-grid .game-card {
  --game-icon-size: 96px;
  min-height: 200px;
  border-color: rgba(255, 211, 83, .14);
  box-shadow: 0 14px 30px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.035);
}
.game-grid .game-card-thumb {
  min-height: 148px !important;
  height: 148px !important;
  padding: 18px 12px 45px !important;
}
.game-grid .game-card-thumb > img {
  border-width: 2px !important;
  box-shadow: 0 11px 25px rgba(0,0,0,.44), 0 0 0 4px rgba(255,210,76,.035) !important;
}
.game-grid .game-meta { min-height: 50px !important; padding: 8px 10px 9px !important; }
.game-grid .game-meta strong {
  color: #fffdf8;
  font-size: 12.5px !important;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -.015em;
}
.game-grid .game-meta small { color: #9b91a4; font-size: 8.5px !important; font-weight: 700; }
.game-grid .play-btn {
  height: 35px !important;
  font-size: 9.5px !important;
  font-weight: 1000 !important;
  letter-spacing: .055em;
}
.game-grid .game-badge { font-size: 7.5px !important; font-weight: 1000; }

@media (max-width: 760px) {
  .game-grid .game-card { --game-icon-size: 86px; min-height: 188px; }
  .game-grid .game-card-thumb { min-height: 142px !important; height: 142px !important; padding: 11px 8px 42px !important; }
  .game-grid .game-meta { min-height: 44px !important; padding: 7px 8px 8px !important; }
  .game-grid .game-meta strong { font-size: 11.5px !important; }
  .game-grid .play-btn { height: 32px !important; font-size: 9px !important; }
}
@media (max-width: 420px) {
  .game-grid .game-card { --game-icon-size: 78px; min-height: 176px; }
  .game-grid .game-card-thumb { min-height: 132px !important; height: 132px !important; padding: 9px 7px 39px !important; }
  .game-grid .game-meta { min-height: 42px !important; padding: 6px 7px 7px !important; }
  .game-grid .game-meta strong { font-size: 11px !important; }
  .game-grid .play-btn { height: 30px !important; font-size: 8.7px !important; }
}

/* Proof autoplay keeps moving after hover/focus; touch swipes resume automatically. */
.cashout-proof-grid.auto-slider-active {
  scroll-behavior: smooth !important;
  contain: none !important;
}

.cashout-proof-grid.auto-slider-active { grid-auto-columns: minmax(320px, 62%) !important; }
.cashout-proof-grid [data-auto-slider-clone="true"] { pointer-events: none; }
@media (max-width: 760px) {
  .cashout-proof-grid.auto-slider-active { grid-auto-columns: minmax(245px, 86%) !important; }
}


/* Delilah Service V12.8.12 — reference-matched seamless proof marquee + subtle gold particles */
.premium-particle-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}
.premium-particle {
  position: absolute;
  top: 112vh;
  left: var(--particle-left, 50%);
  width: var(--particle-size, 3px);
  height: var(--particle-size, 3px);
  border-radius: 50%;
  background: rgba(255, 211, 73, .95);
  box-shadow: 0 0 7px rgba(255, 194, 48, .7), 0 0 15px rgba(255, 162, 31, .22);
  opacity: 0;
  will-change: transform, opacity;
  animation:
    delilah_serviceParticleFloat var(--particle-duration, 24s) linear var(--particle-delay, 0s) infinite,
    delilah_serviceParticleTwinkle var(--particle-twinkle, 5s) ease-in-out var(--particle-delay, 0s) infinite;
}
@keyframes delilah_serviceParticleFloat {
  0% { transform: translate3d(0, 5vh, 0) scale(.72); opacity: 0; }
  8% { opacity: var(--particle-opacity, .4); }
  50% { transform: translate3d(var(--particle-drift-mid, 8px), -58vh, 0) scale(1); }
  92% { opacity: var(--particle-opacity, .4); }
  100% { transform: translate3d(var(--particle-drift, 18px), -128vh, 0) scale(.82); opacity: 0; }
}
@keyframes delilah_serviceParticleTwinkle {
  0%, 100% { filter: brightness(.82); }
  50% { filter: brightness(1.35); }
}

.cashout-proof-grid.proof-marquee-viewport {
  --proof-marquee-gap: 12px;
  display: block !important;
  width: 100%;
  max-width: 100%;
  overflow: hidden !important;
  padding: 2px 0 7px !important;
  scroll-snap-type: none !important;
  scrollbar-width: none;
  touch-action: pan-y;
  contain: layout paint;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
}
.cashout-proof-grid.proof-marquee-viewport::-webkit-scrollbar { display: none; }
.cashout-proof-marquee-track {
  display: flex;
  width: max-content;
  align-items: flex-start;
  gap: var(--proof-marquee-gap);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  animation: delilah_serviceProofMarquee var(--proof-marquee-duration, 28s) linear infinite;
  animation-play-state: running !important;
}
.cashout-proof-marquee-set {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-start;
  gap: var(--proof-marquee-gap);
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-card {
  width: clamp(230px, 25vw, 320px) !important;
  min-width: clamp(230px, 25vw, 320px) !important;
  max-width: clamp(230px, 25vw, 320px) !important;
  flex: 0 0 clamp(230px, 25vw, 320px) !important;
  align-self: flex-start;
  scroll-snap-align: none !important;
  transform: translateZ(0);
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-image,
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-image img {
  transform: none !important;
  backface-visibility: hidden;
}
@keyframes delilah_serviceProofMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--proof-marquee-distance, 1000px)), 0, 0); }
}

.cashout-proof-grid.proof-marquee-reduced {
  display: grid !important;
  grid-template-columns: none !important;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 31vw, 320px);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  padding: 2px 0 8px;
}
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-card { scroll-snap-align: start; }

.payment-review-expiry {
  display: block;
  margin-top: 5px;
  color: #d9ae55 !important;
  font-size: 10px !important;
  font-weight: 750;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .cashout-proof-grid.proof-marquee-viewport { --proof-marquee-gap: 10px; }
  .cashout-proof-grid.proof-marquee-viewport .cashout-proof-card {
    width: clamp(156px, 42vw, 230px) !important;
    min-width: clamp(156px, 42vw, 230px) !important;
    max-width: clamp(156px, 42vw, 230px) !important;
    flex-basis: clamp(156px, 42vw, 230px) !important;
  }
  .cashout-proof-grid.proof-marquee-reduced { grid-auto-columns: clamp(156px, 42vw, 230px); gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .premium-particle-field { display: none !important; }
  .cashout-proof-marquee-track { animation: none !important; transform: none !important; }
  .cashout-proof-grid.proof-marquee-viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Delilah Service V12.8.13 — seamless Recent Winners marquee + proof source/time footer */
.recent-winners-track.recent-winner-marquee-viewport {
  --winner-marquee-gap: 12px;
  display: block !important;
  width: 100%;
  max-width: 100%;
  overflow: hidden !important;
  padding: 3px 0 7px !important;
  scroll-snap-type: none !important;
  scrollbar-width: none;
  touch-action: pan-y;
  contain: layout paint;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
}
.recent-winners-track.recent-winner-marquee-viewport::-webkit-scrollbar { display: none; }
.recent-winner-marquee-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: var(--winner-marquee-gap);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  animation: delilah_serviceWinnerMarquee var(--winner-marquee-duration, 28s) linear infinite;
  animation-play-state: running !important;
}
.recent-winner-marquee-set {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  gap: var(--winner-marquee-gap);
}
.recent-winners-track.recent-winner-marquee-viewport .recent-winner-card {
  width: clamp(275px, 28vw, 335px) !important;
  min-width: clamp(275px, 28vw, 335px) !important;
  max-width: clamp(275px, 28vw, 335px) !important;
  flex: 0 0 clamp(275px, 28vw, 335px) !important;
  align-self: stretch;
  scroll-snap-align: none !important;
  transform: translateZ(0);
}
@keyframes delilah_serviceWinnerMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--winner-marquee-distance, 1000px)), 0, 0); }
}
.recent-winners-track.recent-winner-marquee-reduced {
  overflow-x: auto;
  scroll-snap-type: inline proximity;
}

.cashout-proof-public-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
  padding: 8px 10px 9px;
  border-top: 1px solid rgba(255,255,255,.055);
  color: rgba(245, 241, 250, .82);
  background: linear-gradient(180deg, rgba(16, 12, 23, .98), rgba(9, 9, 15, .99));
  font-size: 9px;
  line-height: 1.2;
}
.cashout-proof-public-meta span {
  min-width: 0;
  overflow: hidden;
  color: #f4d36a;
  font-weight: 900;
  letter-spacing: .025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cashout-proof-public-meta small {
  flex: 0 0 auto;
  color: rgba(211, 205, 219, .68);
  font-size: 9px;
  font-weight: 750;
}

@media (max-width: 760px) {
  .recent-winners-track.recent-winner-marquee-viewport { --winner-marquee-gap: 10px; }
  .recent-winners-track.recent-winner-marquee-viewport .recent-winner-card {
    width: clamp(248px, 82vw, 310px) !important;
    min-width: clamp(248px, 82vw, 310px) !important;
    max-width: clamp(248px, 82vw, 310px) !important;
    flex-basis: clamp(248px, 82vw, 310px) !important;
  }
  .cashout-proof-public-meta { min-height: 32px; padding: 7px 9px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .recent-winner-marquee-track { animation: none !important; transform: none !important; }
  .recent-winners-track.recent-winner-marquee-viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-card:hover { transform: translateZ(0) !important; }

/* Delilah Service V12.8.16 — unified premium lobby palette, typography, cards and hero font presets */
:root {
  --bg: #12091f;
  --bg-soft: #160d24;
  --panel: rgba(24, 15, 36, .94);
  --panel-strong: #1a1028;
  --panel-light: #211531;
  --line: rgba(245, 185, 64, .14);
  --line-strong: rgba(245, 185, 64, .24);
  --text: #fffaf1;
  --muted: #b9b1c2;
  --muted-2: #a3a0aa;
  --gold: #f5b940;
  --gold-2: #f0821f;
  --purple: #7f58b7;
  --purple-2: #5d3b88;
  --pink: #f5b940;
  --cyan: #79a9c9;
  --radius-xl: 16px;
  --radius-lg: 16px;
  --radius-md: 16px;
}

body {
  background:
    radial-gradient(circle at 80% -10%, rgba(105, 62, 155, .15), transparent 31%),
    radial-gradient(circle at 18% 110%, rgba(245, 185, 64, .07), transparent 34%),
    #12091f;
  font-size: 14px;
}

.hero-slide-one {
  background:
    linear-gradient(90deg, rgba(16, 8, 28, .97), rgba(31, 16, 45, .80) 58%, rgba(48, 28, 54, .62)),
    radial-gradient(circle at 78% 42%, rgba(245, 185, 64, .18), transparent 29%),
    linear-gradient(130deg, #12091f, #241432 66%, #34213b);
}
.hero-slide-two {
  background:
    linear-gradient(90deg, rgba(13, 9, 25, .97), rgba(21, 26, 45, .82) 58%, rgba(28, 49, 65, .58)),
    radial-gradient(circle at 78% 42%, rgba(121, 169, 201, .16), transparent 28%),
    linear-gradient(130deg, #12091f, #18263a 66%, #21384a);
}
.hero-slide-three {
  background:
    linear-gradient(90deg, rgba(18, 8, 26, .97), rgba(48, 28, 34, .80) 58%, rgba(76, 48, 31, .56)),
    radial-gradient(circle at 78% 42%, rgba(245, 185, 64, .20), transparent 29%),
    linear-gradient(130deg, #160b20, #39212d 66%, #644323);
}

.hero-font-delilah .hero-copy h1,
.hero-font-delilah .hero-copy h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: .012em;
}
.hero-font-modern .hero-copy h1,
.hero-font-modern .hero-copy h2 {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
}
.hero-font-condensed .hero-copy h1,
.hero-font-condensed .hero-copy h2 {
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -.01em;
}
.hero-font-strong .hero-copy h1,
.hero-font-strong .hero-copy h2 {
  font-family: "Arial Black", Inter, ui-sans-serif, sans-serif;
  font-weight: 900;
  letter-spacing: -.035em;
}
.hero-font-elegant .hero-copy h1,
.hero-font-elegant .hero-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: -.035em;
}
.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: .98;
}
.hero-copy h2 { font-size: clamp(38px, 4.6vw, 60px); }
.hero-kicker,
.eyebrow,
.form-eyebrow,
.section-kicker {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-copy p,
.info-body,
.support-modal-header p { color: #b9b1c2; font-size: 14px; }
.hero-actions + small,
.hero-copy > small,
.footer,
.form-note,
.support-safety { color: #a8a3ae; }

.primary-btn,
.gradient-cta,
.small-cta,
.welcome-offer-button,
.top-app-btn,
.floating-support button,
.spin-btn {
  border-color: rgba(245, 185, 64, .36) !important;
  border-radius: 16px !important;
  color: #1d1305 !important;
  background: linear-gradient(135deg, #f5b940, #f0821f) !important;
  box-shadow: 0 12px 28px rgba(240, 130, 31, .18) !important;
}
.secondary-btn,
.ghost-btn {
  border-radius: 16px !important;
  border-color: rgba(255,255,255,.20) !important;
  color: #f4f1f7 !important;
  background: rgba(255,255,255,.045) !important;
}
.floating-support button { min-width: 146px; }

.support-modal {
  border: 1px solid rgba(245,185,64,.18) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 185, 64, .10), transparent 34%),
    radial-gradient(circle at 4% 100%, rgba(108, 68, 151, .13), transparent 32%),
    linear-gradient(145deg, #1b1128, #12091f 72%) !important;
}
.support-channel-telegram,
.support-channel-signal { --channel: #79a9c9; }
.support-channel-messenger,
.support-channel-instagram { --channel: #8b68b8; }
.support-channel-whatsapp { --channel: #f5b940; }

.game-card,
.recent-winners-section,
.cashout-proof-section,
.play-info-panel,
.welcome-offer-card,
.free-play-side-card,
.rules-panel,
.modal,
.info-modal {
  border: 1px solid rgba(245, 185, 64, .16) !important;
  border-radius: 16px !important;
}
.game-grid .game-card {
  --game-icon-size: 102px;
  background: linear-gradient(180deg, rgba(25, 16, 36, .98), rgba(16, 10, 25, .99)) !important;
}
.game-grid .game-card-thumb {
  background:
    radial-gradient(circle at 50% 34%, rgba(245, 185, 64, .10), transparent 44%),
    linear-gradient(180deg, #191124 0%, #120c1a 100%) !important;
}
.game-grid .game-card-thumb > img {
  border-color: rgba(245,185,64,.32) !important;
  box-shadow: 0 11px 25px rgba(0,0,0,.43), 0 0 18px rgba(245,185,64,.07) !important;
}
.game-grid .game-meta strong {
  color: #fffaf2 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: -.01em !important;
}
.game-grid .game-meta small {
  color: #aaa4b1 !important;
  font-size: 9.5px !important;
  font-weight: 650 !important;
}
.game-grid .play-btn {
  border-radius: 12px !important;
  border-color: rgba(245,185,64,.36) !important;
  background: linear-gradient(135deg, #f5b940, #f0821f) !important;
  color: #201405 !important;
  box-shadow: 0 7px 17px rgba(240,130,31,.15) !important;
}
.game-badge.hot {
  border-color: rgba(177, 79, 62, .52) !important;
  background: rgba(104, 45, 38, .90) !important;
  color: #ffd8c7 !important;
}
.game-badge.new {
  border-color: rgba(121,169,201,.38) !important;
  background: rgba(45, 76, 98, .82) !important;
  color: #dceefa !important;
}
.game-badge.jackpot {
  border-color: rgba(245,185,64,.44) !important;
  background: rgba(94, 61, 16, .88) !important;
  color: #ffe3a0 !important;
}
.favorite-btn:hover,
.favorite-btn.active {
  border-color: rgba(245,185,64,.46) !important;
  background: rgba(105,72,21,.82) !important;
  color: #ffd66b !important;
}

.recent-winners-section,
.cashout-proof-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(106, 64, 151, .08), transparent 38%),
    linear-gradient(145deg, rgba(20, 13, 31, .97), rgba(10, 8, 17, .99)) !important;
}
.recent-winner-avatar {
  background: linear-gradient(145deg, #7e5aa6, #51336f) !important;
}
.proof-title-icon {
  color: #201405 !important;
  background: linear-gradient(145deg, #f5c24e, #e99928) !important;
}

@media (max-width: 760px) {
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(36px, 10.8vw, 44px) !important; line-height: 1; }
  .game-grid .game-card { --game-icon-size: 92px; }
  .game-grid .game-meta strong { font-size: 12px !important; }
}
@media (max-width: 420px) {
  .game-grid .game-card { --game-icon-size: 84px; }
  .game-grid .game-meta strong { font-size: 11.5px !important; }
}

/* Delilah Service V12.8.16 final gold-first CTA cleanup */
.category-chip.active {
  border-color: rgba(245,185,64,.32) !important;
  background: rgba(245,185,64,.10) !important;
  color: #fffaf1 !important;
}
.select-game-banner {
  border: 1px solid rgba(245,185,64,.28) !important;
  border-radius: 16px !important;
  color: #201405 !important;
  background: linear-gradient(135deg, #f5b940, #f0821f) !important;
  box-shadow: 0 16px 38px rgba(240,130,31,.16) !important;
}


/* Reference-style player benefits + task-based Free Play redemption */
.player-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 30px;
}

.player-benefit-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(245, 185, 64, 0.26);
  border-radius: 24px;
  background:
    radial-gradient(circle at 77% 18%, rgba(255, 210, 32, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 67% 64%, rgba(255, 210, 32, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 14% 84%, rgba(255, 210, 32, 0.16) 0 2px, transparent 3px),
    linear-gradient(110deg, rgba(17, 12, 30, 0.98), rgba(25, 24, 17, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 16px 34px rgba(0, 0, 0, 0.18);
}

.player-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(107, 70, 255, 0.06), transparent 44%, rgba(255, 193, 30, 0.045));
  pointer-events: none;
}

.player-benefit-icon {
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  color: #ffd21f;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 194, 21, 0.28);
}

.player-benefit-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.player-benefit-copy strong {
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.player-benefit-copy span {
  color: #b8b0c5;
  font-size: 0.96rem;
  line-height: 1.25;
}

.player-benefit-claim {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 12px 16px;
  border: 1px solid rgba(255, 219, 95, 0.42);
  border-radius: 14px;
  color: #171006;
  background: linear-gradient(135deg, #ffd94e, #f39a18);
  box-shadow: 0 8px 24px rgba(240, 130, 31, 0.18);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  cursor: pointer;
}

.player-benefit-claim:hover:not(:disabled) { transform: translateY(-1px); filter: brightness(1.04); }
.player-benefit-claim:disabled { cursor: default; opacity: 0.58; filter: saturate(0.55); }

.free-play-task-modal { width: min(560px, calc(100vw - 28px)); }

.free-play-task-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 14px;
  text-align: left;
}

.free-play-task {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 210, 48, 0.16);
  border-radius: 16px;
  background: rgba(15, 11, 25, 0.72);
  transition: border-color 160ms ease, background 160ms ease;
}

.free-play-task.complete {
  border-color: rgba(255, 208, 52, 0.42);
  background: linear-gradient(100deg, rgba(68, 47, 12, 0.42), rgba(18, 13, 29, 0.75));
}

.free-play-task-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 211, 55, 0.34);
  border-radius: 50%;
  color: #ffd239;
  background: rgba(255, 199, 31, 0.07);
  font-weight: 900;
}

.free-play-task.complete .free-play-task-number::after { content: "✓"; }
.free-play-task.complete .free-play-task-number { font-size: 0; }
.free-play-task.complete .free-play-task-number::after { font-size: 0.98rem; }

.free-play-task-copy { display: grid; gap: 3px; min-width: 0; }
.free-play-task-copy strong { color: #fff; font-size: 0.9rem; }
.free-play-task-copy small { color: #aaa2b7; font-size: 0.78rem; line-height: 1.35; }

.free-play-task-status {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #9e96aa;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.free-play-task-status.complete,
.free-play-task.complete .free-play-task-status {
  color: #1b1302;
  border-color: rgba(255, 214, 65, 0.45);
  background: linear-gradient(135deg, #ffd941, #f1a11f);
}

.free-play-task-action {
  justify-self: start;
  margin: -4px 0 2px 57px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 206, 57, 0.26);
  border-radius: 10px;
  color: #ffd54a;
  background: rgba(255, 207, 57, 0.06);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  cursor: pointer;
}

.free-play-game-choice {
  display: grid;
  gap: 7px;
  margin: 4px 0 2px 57px;
  color: #d8d2e0;
  font-size: 0.75rem;
  font-weight: 800;
}

.free-play-game-choice select {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(255, 207, 55, 0.24);
  border-radius: 11px;
  color: #fff;
  background: #171221;
  outline: none;
}

.free-play-game-choice select:focus { border-color: rgba(255, 210, 56, 0.62); box-shadow: 0 0 0 3px rgba(255, 198, 30, 0.08); }
.free-play-game-choice select:disabled { color: #80798c; opacity: 0.8; }

@media (max-width: 760px) {
  .player-benefits { grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
  .player-benefit-card { min-height: 112px; padding: 18px 17px; border-radius: 20px; }
  .player-benefit-icon { flex-basis: 52px; width: 52px; height: 52px; font-size: 1.75rem; }
  .player-benefit-claim { padding: 10px 12px; font-size: 0.7rem; }
}

@media (max-width: 520px) {
  .player-benefit-card { align-items: center; gap: 12px; }
  .player-benefit-copy strong { font-size: 1.05rem; }
  .player-benefit-copy span { font-size: 0.88rem; }
  .player-benefit-claim { max-width: 118px; white-space: normal; line-height: 1.15; text-align: center; }
  .free-play-task { grid-template-columns: 31px minmax(0, 1fr); }
  .free-play-task-status { grid-column: 2; justify-self: start; margin-top: 2px; }
  .free-play-task-action, .free-play-game-choice { margin-left: 42px; }
}


/* Delilah Service V12.8.24 - Admin-reviewed Free Play requests and custom task rewards */
.free-play-request-state,
.free-play-admin-task {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 210, 48, .22);
  border-radius: 15px;
  background: linear-gradient(125deg, rgba(255, 201, 36, .075), rgba(16, 11, 26, .78));
  text-align: left;
}
.free-play-request-state > span,
.free-play-admin-task > span { color:#f6c53d; font-size:.64rem; font-weight:950; letter-spacing:.095em; }
.free-play-request-state > strong,
.free-play-admin-task > strong { color:#fff; font-size:.92rem; letter-spacing:.025em; }
.free-play-request-state > p,
.free-play-admin-task > p { margin:0; color:#b8b0c5; font-size:.78rem; line-height:1.48; }
.free-play-request-state[data-status="pending"] { border-color:rgba(245,185,64,.34); }
.free-play-request-state[data-status="approved"], .free-play-request-state[data-status="redeemed"] { border-color:rgba(94,234,151,.34); background:rgba(42,151,95,.08); }
.free-play-request-state[data-status="rejected"] { border-color:rgba(255,112,112,.3); background:rgba(156,42,42,.08); }
.free-play-admin-task { border-color:rgba(255,215,70,.4); box-shadow:0 0 26px rgba(245,185,64,.06); }
.free-play-task-submit { margin:5px 0 0; justify-self:stretch; text-align:center; }
.free-play-task-submit:disabled { opacity:.55; cursor:default; }
#freePlayRedemptionTasks.hidden, .free-play-admin-task.hidden { display:none !important; }
\n\n/* Editable promotional offers + Admin popup notification */\n.additional-offers{margin-top:18px}.additional-offer-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.promo-offer-card{position:relative;padding:22px;display:grid;grid-template-columns:58px minmax(0,1fr);gap:16px;align-items:center;overflow:hidden;border:1px solid rgba(255,201,74,.22);border-radius:20px;background:radial-gradient(circle at 90% 12%,rgba(207,67,198,.18),transparent 34%),linear-gradient(135deg,rgba(37,17,51,.98),rgba(13,11,23,.98));box-shadow:0 16px 42px rgba(0,0,0,.22)}.promo-offer-card::after{content:"";position:absolute;inset:0;pointer-events:none;opacity:.11;background-image:radial-gradient(circle,rgba(255,223,126,.9) 0 1px,transparent 1.5px);background-size:38px 38px}.promo-offer-icon,.promo-offer-copy,.promo-offer-button{position:relative;z-index:1}.promo-offer-icon{width:58px;height:58px;display:grid;place-items:center;border:1px solid rgba(255,219,105,.52);border-radius:17px;background:linear-gradient(145deg,#ffda61,#dc8116);color:#3d2000;font-size:25px;box-shadow:0 12px 30px rgba(0,0,0,.25)}.promo-offer-copy h2{margin:5px 0 6px;color:#fff;font-size:clamp(20px,2vw,28px);line-height:1.08;letter-spacing:-.035em}.promo-offer-copy p{margin:0;color:#cbbdd5;font-size:12px;line-height:1.55}.promo-offer-copy small{display:block;margin-top:7px;color:#8f809b;font-size:8px;line-height:1.45}.promo-offer-button{grid-column:1/-1;width:100%;min-height:46px}.admin-promo-notice-modal{width:min(94vw,540px);padding:0;overflow:hidden;border:1px solid rgba(255,207,42,.24);background:#080b13;box-shadow:0 30px 90px rgba(0,0,0,.65),0 0 45px rgba(255,209,24,.08)}.admin-promo-notice-modal .modal-close{z-index:5;color:#16120a;background:rgba(255,220,35,.9)}.admin-promo-notice-hero{height:190px;display:grid;place-items:center;background:linear-gradient(180deg,#ffdb11,#d3ad00 64%,#241f07);box-shadow:inset 0 -35px 45px rgba(0,0,0,.35)}.admin-promo-notice-hero span{font-size:68px;filter:drop-shadow(0 10px 12px rgba(0,0,0,.22))}.admin-promo-notice-copy{padding:28px 28px 30px;text-align:center}.admin-promo-notice-copy .form-eyebrow{color:#ffd51c}.admin-promo-notice-copy h2{margin:8px 0 13px;color:#ffd51c;font-size:clamp(27px,4vw,38px);letter-spacing:.035em;text-transform:uppercase}.admin-promo-notice-copy p{margin:0 auto 22px;max-width:430px;white-space:pre-line;color:#e6e3ea;font-size:14px;line-height:1.65}.admin-promo-notice-copy .gradient-cta{width:100%;min-height:56px;background:linear-gradient(135deg,#ffdd11,#ffbf0a);color:#0e0b06;font-size:16px}.admin-promo-notice-copy .gradient-cta:hover{filter:brightness(1.05)}@media(max-width:760px){.additional-offer-grid{grid-template-columns:1fr}.promo-offer-card{padding:18px;grid-template-columns:48px minmax(0,1fr)}.promo-offer-icon{width:48px;height:48px;border-radius:14px;font-size:21px}.admin-promo-notice-hero{height:155px}.admin-promo-notice-copy{padding:23px 20px 24px}.admin-promo-notice-copy h2{font-size:27px}.admin-promo-notice-copy p{font-size:12px}}\n

/* Delilah Service V12.8.24 - Signup Freeplay game selection + repeat Admin-reviewed Freeplay */
.player-benefit-status{display:inline-flex;align-items:center;width:max-content;max-width:100%;margin-top:7px;padding:5px 8px;border:1px solid rgba(255,207,54,.24);border-radius:999px;background:rgba(255,205,44,.07);color:#ffd33f;font-size:.62rem;font-weight:950;letter-spacing:.055em;line-height:1;text-transform:uppercase}
.player-benefit-card.recurring-freeplay{border-color:rgba(179,92,255,.28);background:radial-gradient(circle at 88% 18%,rgba(187,65,255,.16),transparent 34%),linear-gradient(135deg,rgba(24,15,37,.96),rgba(15,13,20,.96))}
.player-benefit-card.recurring-freeplay .player-benefit-icon{color:#ffd33f;background:linear-gradient(145deg,rgba(255,214,68,.14),rgba(141,66,207,.16));border-color:rgba(255,212,62,.3)}
.signup-freeplay-game-notice{display:flex;align-items:center;gap:13px;margin:0 0 16px;padding:14px 16px;border:1px solid rgba(255,211,61,.42);border-radius:16px;background:linear-gradient(125deg,rgba(255,198,27,.13),rgba(116,43,168,.1));box-shadow:0 14px 36px rgba(0,0,0,.18),inset 0 0 0 1px rgba(255,255,255,.025)}
.signup-freeplay-game-notice>span{width:40px;height:40px;flex:0 0 40px;display:grid;place-items:center;border-radius:12px;background:linear-gradient(145deg,#ffd950,#ee9a18);color:#321900;font-size:20px;font-weight:950;box-shadow:0 9px 22px rgba(0,0,0,.24)}
.signup-freeplay-game-notice strong,.signup-freeplay-game-notice small{display:block}.signup-freeplay-game-notice strong{color:#fff;font-size:.82rem;letter-spacing:.035em}.signup-freeplay-game-notice small{margin-top:4px;color:#c9bfd0;font-size:.73rem;line-height:1.45}
.signup-freeplay-choice{border-color:rgba(255,210,54,.46)!important;box-shadow:0 0 0 1px rgba(255,210,54,.08),0 14px 34px rgba(255,183,25,.08)!important}.signup-freeplay-choice .game-overlay{opacity:1!important;background:linear-gradient(180deg,transparent 20%,rgba(17,8,24,.78))!important}.signup-freeplay-choice .play-btn{background:linear-gradient(135deg,#ffd747,#f39a1a)!important;color:#211000!important;border-color:rgba(255,224,116,.62)!important;box-shadow:0 10px 26px rgba(244,162,24,.26)!important}.signup-freeplay-choice .play-btn-label{font-weight:950!important}
.free-play-task-response,.free-play-task-proof{display:grid;gap:6px;margin-top:7px;color:#d7cfdf;font-size:.7rem;font-weight:850}.free-play-task-response textarea,.free-play-task-proof input{width:100%;box-sizing:border-box;border:1px solid rgba(255,211,60,.18);border-radius:11px;background:#15101d;color:#fff;font:inherit;outline:none}.free-play-task-response textarea{min-height:66px;padding:10px 11px;resize:vertical;line-height:1.45}.free-play-task-proof input{padding:9px}.free-play-task-proof small{color:#8f8798;font-size:.62rem;font-weight:650;line-height:1.45}.free-play-task-response textarea:focus,.free-play-task-proof input:focus{border-color:rgba(255,211,60,.52);box-shadow:0 0 0 3px rgba(255,199,31,.07)}.free-play-task-response textarea:disabled,.free-play-task-proof input:disabled{opacity:.55}
@media(max-width:520px){.player-benefit-status{font-size:.56rem;padding:5px 7px}.signup-freeplay-game-notice{padding:12px 13px;align-items:flex-start}.signup-freeplay-game-notice>span{width:35px;height:35px;flex-basis:35px}.signup-freeplay-game-notice strong{font-size:.74rem}.signup-freeplay-game-notice small{font-size:.68rem}}

/* =========================================================
   ADMIN ANNOUNCEMENTS + UNIFIED PLAYER NOTIFICATION CENTER
   ========================================================= */
.player-notification-bell {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  border: 1px solid rgba(245, 185, 64, .28);
  background: rgba(19, 13, 31, .88);
  color: #f8d47e;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 10px 28px rgba(0,0,0,.18);
  z-index: 6;
}
.player-notification-bell:hover { border-color: rgba(245, 185, 64, .65); transform: translateY(-1px); }
.player-notification-bell-icon { font-size: 18px; line-height: 1; }
.player-notification-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 999px;
  border: 2px solid #0a0712;
  background: linear-gradient(135deg, #f5b940, #f0821f);
  color: #170d08;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.player-notification-center-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1290;
  background: rgba(3, 2, 8, .58);
  backdrop-filter: blur(4px);
}
.player-notification-center {
  position: fixed;
  z-index: 1300;
  top: 76px;
  right: 18px;
  width: min(410px, calc(100vw - 28px));
  max-height: min(690px, calc(100vh - 96px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(245, 185, 64, .3);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(24, 16, 38, .99), rgba(9, 7, 16, .995));
  box-shadow: 0 28px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
}
.player-notification-center-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(245, 185, 64, .15);
}
.player-notification-center-head span { color: #d6a63e; font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.player-notification-center-head h2 { margin: 3px 0 0; color: #fff; font-size: 21px; }
.player-notification-center-head button,
.player-announcement-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.player-notification-center-list { overflow: auto; overscroll-behavior: contain; padding: 8px; }
.player-notification-center-foot { padding: 11px 16px 14px; border-top: 1px solid rgba(255,255,255,.07); color: #897f97; }
.player-notification-item {
  width: 100%;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: start;
  gap: 10px;
  padding: 13px 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.player-notification-item:hover { background: rgba(255,255,255,.04); border-color: rgba(245,185,64,.12); }
.player-notification-item.is-unread { background: rgba(245,185,64,.055); }
.player-notification-item.is-critical { border-color: rgba(245,185,64,.18); }
.player-notification-item-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(245,185,64,.11); color: #f5bf52; font-weight: 900; }
.player-notification-item-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.player-notification-item-copy small { color: #ca9a36; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.player-notification-item-copy strong { color: #fff; font-size: 13px; }
.player-notification-item-copy > span { color: #a99faf; font-size: 11px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.player-notification-item-copy time { color: #756d81; font-size: 10px; }
.player-notification-action-required { margin-left: 6px; color: #ffd77b; }
.player-notification-chevron { align-self: center; color: #776f80; font-size: 22px; }
.player-notification-empty { min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 26px; color: #92889d; text-align: center; }
.player-notification-empty strong { color: #eee8f2; }

.player-announcement-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 2, 8, .74);
  backdrop-filter: blur(7px);
}
.player-announcement-modal {
  position: relative;
  width: min(540px, 100%);
  max-height: min(760px, calc(100vh - 34px));
  overflow: auto;
  border: 1px solid rgba(245, 185, 64, .36);
  border-radius: 25px;
  background: radial-gradient(circle at 90% 0%, rgba(245,185,64,.1), transparent 30%), linear-gradient(160deg, #1b122b, #0b0812 68%);
  box-shadow: 0 34px 110px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.055);
}
.player-announcement-close { position: absolute; z-index: 3; top: 12px; right: 12px; background: rgba(7,5,12,.7); }
.player-announcement-image { margin: 0; height: min(270px, 34vh); overflow: hidden; border-radius: 25px 25px 0 0; background: rgba(255,255,255,.025); border-bottom: 1px solid rgba(245,185,64,.14); }
.player-announcement-image img { width: 100%; height: 100%; display: block; }
.player-announcement-copy { padding: 28px; }
.player-announcement-copy.is-critical { box-shadow: inset 4px 0 0 rgba(245,185,64,.82); }
.player-announcement-label { display: inline-flex; align-items: center; gap: 8px; color: #e9b844; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.player-announcement-label b { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; background: rgba(245,185,64,.12); }
.player-announcement-copy h2 { margin: 12px 0 10px; color: #fff; font-size: clamp(24px, 5vw, 34px); line-height: 1.05; letter-spacing: -.03em; }
.player-announcement-copy > p { margin: 0; color: #c8c0ce; line-height: 1.65; font-size: 14px; white-space: pre-line; }
.player-announcement-bonus { margin-top: 16px; padding: 14px; border: 1px solid rgba(245,185,64,.2); border-radius: 14px; background: rgba(245,185,64,.06); color: #f1dfb5; line-height: 1.55; }
.player-announcement-reference { margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; padding: 11px 13px; border-radius: 12px; background: rgba(255,255,255,.04); }
.player-announcement-reference small { color: #8d8497; font-size: 9px; letter-spacing: .11em; }
.player-announcement-reference strong { color: #f1cc71; font-size: 12px; overflow-wrap: anywhere; }
.player-announcement-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.player-announcement-action { min-height: 46px; border-radius: 13px; padding: 10px 15px; font-weight: 900; letter-spacing: .02em; cursor: pointer; }
.player-announcement-action.primary { border: 0; background: linear-gradient(135deg, #f5b940, #f0821f); color: #1a0d06; box-shadow: 0 10px 28px rgba(240,130,31,.18); }
.player-announcement-action.secondary { border: 1px solid rgba(245,185,64,.28); background: rgba(255,255,255,.04); color: #f3d58a; }
.player-announcement-support { margin-top: 18px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.075); }
.player-announcement-support > strong { display: block; color: #fff; font-size: 12px; }
.player-announcement-support > span { display: block; margin-top: 3px; color: #958b9e; font-size: 11px; }
.player-announcement-support > div { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.player-announcement-support a { border: 1px solid rgba(245,185,64,.22); border-radius: 999px; padding: 8px 11px; color: #e8c56f; background: rgba(245,185,64,.055); font-size: 10px; font-weight: 900; text-decoration: none; }
.player-announcement-support-empty { color: #918797; font-size: 11px; }
body.delilah-notification-popup-open,
body.player-notification-center-open { overflow: hidden; }

@media (max-width: 720px) {
  .player-notification-bell { width: 38px; height: 38px; min-width: 38px; border-radius: 12px; }
  .player-notification-center { top: 64px; right: 8px; width: calc(100vw - 16px); max-height: calc(100vh - 76px); border-radius: 18px; }
  .player-announcement-backdrop { padding: 10px; align-items: center; }
  .player-announcement-modal { width: 100%; border-radius: 21px; max-height: calc(100vh - 20px); }
  .player-announcement-image { height: min(220px, 30vh); border-radius: 21px 21px 0 0; }
  .player-announcement-copy { padding: 23px 18px 19px; }
  .player-announcement-copy h2 { font-size: 26px; padding-right: 28px; }
  .player-announcement-actions { grid-template-columns: 1fr; }
  .player-announcement-action { width: 100%; }
}

/* Delilah Service V12.8.27 - move the active Freeplay CTA beside Cashout Proofs; keep benefit tile text-only */
.freeplay-action-card {
  margin-top: 24px;
  border-color: rgba(255, 205, 72, 0.34);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 194, 38, 0.13), transparent 28%),
    radial-gradient(circle at 12% 85%, rgba(151, 65, 216, 0.17), transparent 35%),
    linear-gradient(132deg, rgba(35, 15, 49, 0.98), rgba(17, 11, 27, 0.99) 60%, rgba(27, 20, 18, 0.98));
}

.freeplay-action-card .welcome-offer-copy h2 {
  font-size: clamp(22px, 2.35vw, 32px);
}

.freeplay-action-card .welcome-offer-button {
  min-width: 220px;
}

.player-benefit-freeplay .player-benefit-copy {
  padding-right: 4px;
}

@media (max-width: 640px) {
  .freeplay-action-card {
    margin-top: 20px;
  }

  .freeplay-action-card .welcome-offer-copy h2 {
    font-size: 21px;
  }
}


/* Delilah Service V12.8.28 - compact professional benefit tiles + simplified header */
@media (max-width: 760px) {
  .player-benefits {
    gap: 9px;
    margin: 14px 0 20px;
  }

  .player-benefit-card {
    min-height: 78px;
    padding: 11px 14px;
    gap: 10px;
    border-radius: 17px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.028), 0 9px 22px rgba(0,0,0,.14);
  }

  .player-benefit-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
    text-shadow: 0 0 13px rgba(255,194,21,.22);
  }

  .player-benefit-copy { gap: 3px; }
  .player-benefit-copy strong { font-size: .96rem; line-height: 1.1; }
  .player-benefit-copy span { font-size: .78rem; line-height: 1.2; }
}

@media (max-width: 430px) {
  .player-benefit-card { min-height: 74px; padding: 10px 13px; border-radius: 16px; }
  .player-benefit-icon { flex-basis: 36px; width: 36px; height: 36px; font-size: 1.25rem; }
  .player-benefit-copy strong { font-size: .92rem; }
  .player-benefit-copy span { font-size: .75rem; }
}

/* Delilah Service V12.8.29 — premium homepage hierarchy: Freeplay spotlight, trust proof zone, compact benefit cards */
.freeplay-spotlight {
  margin: 18px 0 0;
  padding: 18px 20px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 15px;
  border-color: rgba(245, 185, 64, .32) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 185, 64, .14), transparent 29%),
    radial-gradient(circle at 8% 100%, rgba(108, 68, 151, .16), transparent 34%),
    linear-gradient(132deg, rgba(28, 16, 40, .985), rgba(14, 10, 23, .995) 64%, rgba(28, 19, 17, .98)) !important;
  box-shadow: 0 16px 38px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.035);
}
.freeplay-spotlight::after { opacity: .09; background-size: 48px 48px; }
.freeplay-spotlight .welcome-offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 20px;
}
.freeplay-spotlight .welcome-offer-copy { min-width: 0; }
.freeplay-spotlight .welcome-offer-copy .section-kicker {
  color: #f5c24e;
  font-size: 9px;
  letter-spacing: .12em;
}
.freeplay-spotlight .welcome-offer-copy h2 {
  margin: 3px 0 4px;
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: -.025em;
}
.freeplay-spotlight .welcome-offer-copy p {
  max-width: 680px;
  color: #c4bdca;
  font-size: 12px;
  line-height: 1.4;
}
.freeplay-spotlight .welcome-offer-copy small {
  margin-top: 4px;
  color: #81798a;
  font-size: 8px;
}
.freeplay-spotlight .welcome-offer-button {
  min-width: 168px;
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 13px;
  font-size: 11px;
  letter-spacing: .045em;
}

.homepage-trust-zone {
  position: relative;
  margin: 18px 0 0;
  padding: clamp(16px, 2vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(245, 185, 64, .18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 0%, rgba(245,185,64,.055), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(108,68,151,.08), transparent 38%),
    linear-gradient(145deg, rgba(20,13,31,.94), rgba(10,8,17,.985));
  box-shadow: 0 18px 44px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.025);
}
.homepage-trust-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-bottom: 4px;
}
.homepage-trust-heading .section-kicker { width: 100%; color: #dcae4e; font-size: 9px; }
.homepage-trust-heading h2 {
  margin: 0;
  color: #fffaf1;
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.homepage-trust-heading p {
  max-width: 520px;
  margin: 0;
  color: #9f98a7;
  font-size: 11px;
  line-height: 1.45;
}
.homepage-trust-zone .recent-winners-section,
.homepage-trust-zone .cashout-proof-section {
  margin-top: 12px;
  padding: 14px;
  border-radius: 15px !important;
  box-shadow: none;
  background: linear-gradient(145deg, rgba(16,11,24,.78), rgba(8,8,14,.9)) !important;
}
.homepage-trust-zone .recent-winners-heading,
.homepage-trust-zone .proof-section-heading { margin-bottom: 10px; }
.homepage-trust-zone .recent-winners-heading h3,
.homepage-trust-zone .proof-section-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.homepage-trust-zone .recent-winners-icon,
.homepage-trust-zone .proof-title-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 9px;
  font-size: 14px;
}
.homepage-trust-zone .cashout-proof-image { height: 190px; }

.player-benefits.player-benefits-condensed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}
.player-benefits-condensed .player-benefit-card {
  min-height: 96px;
  padding: 16px 17px;
  gap: 12px;
  border-radius: 18px;
}
.player-benefits-condensed .player-benefit-icon {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
  font-size: 1.45rem;
}
.player-benefits-condensed .player-benefit-copy { gap: 4px; }
.player-benefits-condensed .player-benefit-copy strong { font-size: 1rem; }
.player-benefits-condensed .player-benefit-copy span { font-size: .8rem; }

@media (max-width: 900px) {
  .player-benefits.player-benefits-condensed { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .freeplay-spotlight {
    margin-top: 12px;
    padding: 13px 14px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 10px;
    border-radius: 16px !important;
  }
  .freeplay-spotlight .welcome-offer-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 17px;
  }
  .freeplay-spotlight .welcome-offer-copy .section-kicker { font-size: 7.5px; }
  .freeplay-spotlight .welcome-offer-copy h2 { margin: 2px 0 3px; font-size: 17px; }
  .freeplay-spotlight .welcome-offer-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 10px;
    line-height: 1.28;
  }
  .freeplay-spotlight .welcome-offer-copy small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 7px;
  }
  .freeplay-spotlight .welcome-offer-button {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 40px;
    height: 40px;
    margin-top: 1px;
    border-radius: 12px;
    font-size: 10px;
  }

  .homepage-trust-zone {
    margin-top: 12px;
    padding: 13px 12px;
    border-radius: 17px;
  }
  .homepage-trust-heading { display: block; margin-bottom: 2px; }
  .homepage-trust-heading .section-kicker { font-size: 7.5px; }
  .homepage-trust-heading h2 { margin-top: 3px; font-size: 19px; }
  .homepage-trust-heading p { margin-top: 5px; font-size: 9.5px; }
  .homepage-trust-zone .recent-winners-section,
  .homepage-trust-zone .cashout-proof-section {
    margin-top: 10px;
    padding: 11px;
    border-radius: 14px !important;
  }
  .homepage-trust-zone .recent-winners-heading,
  .homepage-trust-zone .proof-section-heading { margin-bottom: 8px; }
  .homepage-trust-zone .recent-winners-heading h3,
  .homepage-trust-zone .proof-section-heading h3 { font-size: 12px; }
  .homepage-trust-zone .cashout-proof-image { height: 156px; }
  .homepage-trust-zone .cashout-proof-grid.proof-marquee-viewport .cashout-proof-card {
    width: clamp(142px, 40vw, 198px) !important;
    min-width: clamp(142px, 40vw, 198px) !important;
    max-width: clamp(142px, 40vw, 198px) !important;
    flex-basis: clamp(142px, 40vw, 198px) !important;
  }

  .player-benefits.player-benefits-condensed {
    gap: 8px;
    margin: 12px 0 18px;
  }
  .player-benefits-condensed .player-benefit-card {
    min-height: 68px;
    padding: 9px 12px;
    gap: 9px;
    border-radius: 15px;
  }
  .player-benefits-condensed .player-benefit-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 1.18rem;
  }
  .player-benefits-condensed .player-benefit-copy strong { font-size: .9rem; }
  .player-benefits-condensed .player-benefit-copy span { font-size: .73rem; }
}

/* Delilah Service V12.8.30 - text-only homepage benefits, separated payout proof placement, mobile Free Play scrolling */
.player-benefits-text-only {
  margin-top: 14px;
}
.player-benefits-text-only .player-benefit-card {
  cursor: default;
}
.player-benefits-text-only .player-benefit-card:hover {
  transform: none;
}
.player-benefits-text-only .player-benefit-freeplay-static {
  border-color: rgba(255, 205, 57, .22);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 194, 38, .09), transparent 31%),
    linear-gradient(135deg, rgba(25, 15, 37, .96), rgba(15, 13, 20, .97));
}
.player-benefits-text-only .player-benefit-freeplay-static .player-benefit-icon {
  color: #ffd22f;
}
.homepage-proof-zone {
  margin-top: 28px;
  margin-bottom: 14px;
}
.homepage-proof-zone .cashout-proof-section {
  margin-top: 12px;
}

.free-play-task-modal {
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-gutter: stable;
}

@media (max-width: 760px) {
  .player-benefits-text-only {
    margin-top: 10px;
    margin-bottom: 12px;
  }
  .player-benefits-text-only .player-benefit-card {
    min-height: 66px;
    padding: 9px 12px;
  }
  .homepage-trust-zone {
    margin-top: 10px;
  }
  .homepage-proof-zone {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .free-play-task-modal {
    top: max(8px, env(safe-area-inset-top));
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 50%;
    width: calc(100vw - 16px);
    height: auto;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-50%);
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}


/* Delilah Service V12.8.31 — single Freeplay action button after the game library and before Cashout Proofs */
.post-games-freeplay-cta {
  margin: 18px 0 0;
}

.post-games-freeplay-button {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 211, 94, .44);
  box-shadow: 0 13px 30px rgba(0,0,0,.22), 0 0 24px rgba(245,185,64,.08);
  font-size: 12px;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.post-games-freeplay-button:disabled {
  cursor: not-allowed;
  opacity: .58;
  filter: saturate(.7);
}

@media (max-width: 760px) {
  .post-games-freeplay-cta {
    margin-top: 12px;
  }

  .post-games-freeplay-button {
    min-height: 48px;
    border-radius: 14px;
    font-size: 11px;
  }
}


/* Delilah Service V12.8.33 — responsive desktop/mobile hero image system */
.hero-background-media {
  background: #0b0711;
}
.hero-background-picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
}
.hero-background-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: var(--hero-desktop-fit, cover);
  object-position: var(--hero-desktop-position, center);
}
.hero-background-blur {
  position: absolute;
  inset: -22px;
  z-index: 0;
  width: calc(100% + 44px);
  height: calc(100% + 44px);
  display: block;
  object-fit: cover;
  object-position: center;
  filter: blur(20px) saturate(.86) brightness(.56);
  opacity: 0;
  transform: scale(1.04);
}
.hero-background-media[style*="--hero-desktop-fit:contain"] .hero-background-blur {
  opacity: .62;
}
.hero-background-shade { z-index: 2; }
.hero-background-media.mobile-only-hero-background { display: none; }

@media (max-width: 760px) {
  .hero-slider {
    min-height: 470px;
  }
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    padding: 24px 20px 18px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-content: stretch;
  }
  .hero-background-media.mobile-only-hero-background { display: block; }
  .has-mobile-hero-background .hero-art { display: none; }
  .hero-background-image {
    object-fit: var(--hero-mobile-fit, cover);
    object-position: var(--hero-mobile-position, center center);
  }
  .hero-background-blur {
    opacity: .72;
    filter: blur(24px) saturate(.82) brightness(.44);
  }
  .hero-background-shade {
    background:
      linear-gradient(180deg, rgba(7,4,12,.24) 0%, rgba(7,4,12,.36) 38%, rgba(7,4,12,.78) 72%, rgba(7,4,12,.92) 100%),
      linear-gradient(90deg, rgba(7,4,12,.38), rgba(7,4,12,.08));
  }
  .has-custom-hero-background .hero-copy,
  .has-mobile-hero-background .hero-copy {
    align-self: end;
    max-width: 100%;
  }

  /* Smart fallback for a desktop-only 8:3 image: show the whole artwork up top,
     then continue into a dark/blurred lower field for readable text. */
  .hero-slide.hero-mobile-smart-fallback .hero-background-picture {
    inset: 0 0 auto;
    height: 43%;
    background: rgba(8,5,13,.82);
  }
  .hero-slide.hero-mobile-smart-fallback .hero-background-image {
    object-fit: contain;
    object-position: var(--hero-mobile-position, center center);
  }
  .hero-slide.hero-mobile-smart-fallback .hero-background-shade {
    background:
      linear-gradient(180deg, rgba(5,3,9,.02) 0%, rgba(5,3,9,.16) 28%, rgba(5,3,9,.78) 48%, rgba(5,3,9,.96) 77%, #09060f 100%),
      linear-gradient(90deg, rgba(7,4,12,.18), rgba(7,4,12,.06));
  }
  .hero-slide.hero-mobile-smart-fallback .hero-copy {
    align-self: end;
    padding-top: clamp(180px, 48vw, 220px);
  }
  .hero-slide.hero-mobile-smart-fallback .hero-copy h1,
  .hero-slide.hero-mobile-smart-fallback .hero-copy h2 {
    font-size: clamp(32px, 9.6vw, 43px);
  }
  .hero-slide.hero-mobile-smart-fallback .hero-copy p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 390px) {
  .hero-slider { min-height: 455px; }
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background { padding-inline: 17px; }
  .hero-slide.hero-mobile-smart-fallback .hero-copy { padding-top: 170px; }
}

@media (min-width: 861px) {
  .hero-slider {
    aspect-ratio: 8 / 3;
    min-height: 440px;
    max-height: 580px;
  }
}

/* Delilah Service V12.8.35 - premium visual treatment for the existing post-games Freeplay CTA only */
.post-games-freeplay-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  border: 1px solid rgba(255, 167, 241, .72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, .06) 34%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(100deg, #7337ff 0%, #aa3cff 35%, #e83dbb 67%, #ff4f91 100%);
  box-shadow:
    0 14px 30px rgba(14, 7, 28, .34),
    0 0 24px rgba(177, 58, 255, .28),
    0 0 42px rgba(255, 69, 157, .18),
    inset 0 1px 0 rgba(255, 255, 255, .32),
    inset 0 -1px 0 rgba(67, 21, 122, .26);
  color: #fff;
  font-weight: 950;
  letter-spacing: .065em;
  text-shadow: 0 1px 8px rgba(34, 8, 48, .36);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms var(--ease), border-color 180ms var(--ease);
}

.post-games-freeplay-button::before {
  content: "🎁";
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 2px 5px rgba(48, 10, 67, .35));
}

.post-games-freeplay-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -70%;
  left: -18%;
  width: 38%;
  height: 240%;
  pointer-events: none;
  opacity: .36;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .56), transparent);
  transition: left 320ms var(--ease), opacity 180ms var(--ease);
}

.post-games-freeplay-button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(255, 200, 247, .9);
  filter: brightness(1.08) saturate(1.06);
  box-shadow:
    0 17px 34px rgba(14, 7, 28, .38),
    0 0 30px rgba(177, 58, 255, .36),
    0 0 50px rgba(255, 69, 157, .24),
    inset 0 1px 0 rgba(255, 255, 255, .38),
    inset 0 -1px 0 rgba(67, 21, 122, .22);
}

.post-games-freeplay-button:hover:not(:disabled)::after {
  left: 82%;
  opacity: .5;
}

.post-games-freeplay-button:active:not(:disabled) {
  transform: translateY(0) scale(.992);
  filter: brightness(1.03) saturate(1.04);
}

.post-games-freeplay-button:focus-visible {
  outline: 2px solid rgba(255, 220, 252, .95);
  outline-offset: 3px;
}

.post-games-freeplay-button:disabled {
  opacity: .56;
  filter: saturate(.62) brightness(.88);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

@media (max-width: 760px) {
  .post-games-freeplay-button {
    min-height: 50px;
    border-radius: 15px;
    font-size: 11px;
    letter-spacing: .055em;
    box-shadow:
      0 12px 25px rgba(14, 7, 28, .32),
      0 0 20px rgba(177, 58, 255, .24),
      0 0 34px rgba(255, 69, 157, .15),
      inset 0 1px 0 rgba(255, 255, 255, .3);
  }

  .post-games-freeplay-button::before {
    font-size: 15px;
  }
}

/* Delilah Service V12.8.36 - force the existing post-games Freeplay CTA to a non-gold premium highlight palette.
   This selector intentionally outranks the site's legacy !important gold CTA theme without changing button logic. */
#claimFreePlayCardBtn.post-games-freeplay-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 56px;
  border: 1px solid rgba(226, 190, 255, .88) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,.08) 30%, rgba(255,255,255,0) 54%),
    linear-gradient(102deg, #4f2cff 0%, #7c32ff 28%, #b83cff 55%, #e73dbf 78%, #ff4f91 100%) !important;
  color: #fff !important;
  box-shadow:
    0 16px 34px rgba(13, 7, 31, .42),
    0 0 0 1px rgba(255,255,255,.055) inset,
    0 0 24px rgba(119, 63, 255, .40),
    0 0 48px rgba(232, 61, 191, .24),
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 0 -1px 0 rgba(67, 24, 132, .28) !important;
  font-weight: 950;
  letter-spacing: .065em;
  text-shadow: 0 1px 10px rgba(24, 7, 43, .42);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms var(--ease), border-color 180ms var(--ease);
}

#claimFreePlayCardBtn.post-games-freeplay-button::before {
  content: "";
  position: relative;
  z-index: 3;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 8h-2.35A3.5 3.5 0 0 0 12 4.06 3.5 3.5 0 0 0 6.35 8H4a2 2 0 0 0-2 2v2a2 2 0 0 0 1 1.73V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-6.27A2 2 0 0 0 22 12v-2a2 2 0 0 0-2-2Zm-6.5-1.5a1.5 1.5 0 1 1 3 0c0 .83-.67 1.5-1.5 1.5h-1.5V6.5Zm-5 0a1.5 1.5 0 1 1 3 0V8H10c-.83 0-1.5-.67-1.5-1.5ZM4 10h7v2H4v-2Zm1 4h6v6H5v-6Zm14 6h-6v-6h6v6Zm1-8h-7v-2h7v2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 8h-2.35A3.5 3.5 0 0 0 12 4.06 3.5 3.5 0 0 0 6.35 8H4a2 2 0 0 0-2 2v2a2 2 0 0 0 1 1.73V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-6.27A2 2 0 0 0 22 12v-2a2 2 0 0 0-2-2Zm-6.5-1.5a1.5 1.5 0 1 1 3 0c0 .83-.67 1.5-1.5 1.5h-1.5V6.5Zm-5 0a1.5 1.5 0 1 1 3 0V8H10c-.83 0-1.5-.67-1.5-1.5ZM4 10h7v2H4v-2Zm1 4h6v6H5v-6Zm14 6h-6v-6h6v6Zm1-8h-7v-2h7v2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 2px 6px rgba(31, 10, 66, .38));
}

#claimFreePlayCardBtn.post-games-freeplay-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -82%;
  left: -22%;
  width: 34%;
  height: 270%;
  pointer-events: none;
  opacity: .42;
  transform: rotate(19deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  transition: left 360ms var(--ease), opacity 180ms var(--ease);
}

#claimFreePlayCardBtn.post-games-freeplay-button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(242, 220, 255, .98) !important;
  filter: brightness(1.10) saturate(1.08);
  box-shadow:
    0 19px 38px rgba(13, 7, 31, .45),
    0 0 0 1px rgba(255,255,255,.07) inset,
    0 0 31px rgba(119, 63, 255, .50),
    0 0 58px rgba(232, 61, 191, .31),
    inset 0 1px 0 rgba(255,255,255,.44) !important;
}

#claimFreePlayCardBtn.post-games-freeplay-button:hover:not(:disabled)::after {
  left: 88%;
  opacity: .58;
}

#claimFreePlayCardBtn.post-games-freeplay-button:active:not(:disabled) {
  transform: translateY(0) scale(.992);
  filter: brightness(1.04) saturate(1.05);
}

#claimFreePlayCardBtn.post-games-freeplay-button:focus-visible {
  outline: 2px solid rgba(225, 190, 255, .98);
  outline-offset: 4px;
}

#claimFreePlayCardBtn.post-games-freeplay-button:disabled {
  color: rgba(255,255,255,.78) !important;
  opacity: .62;
  filter: saturate(.68) brightness(.84);
  box-shadow: 0 10px 22px rgba(0,0,0,.26), 0 0 18px rgba(119,63,255,.16) !important;
}

@media (max-width: 760px) {
  #claimFreePlayCardBtn.post-games-freeplay-button {
    min-height: 52px;
    border-radius: 16px !important;
    font-size: 11px;
    letter-spacing: .055em;
    box-shadow:
      0 13px 27px rgba(13, 7, 31, .38),
      0 0 21px rgba(119, 63, 255, .36),
      0 0 38px rgba(232, 61, 191, .20),
      inset 0 1px 0 rgba(255,255,255,.34) !important;
  }

  #claimFreePlayCardBtn.post-games-freeplay-button::before {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }
}

/* V12.8.37 referral player experience */
.referral-profile-button {
  margin: 14px 0 10px;
  min-height: 48px;
  border: 1px solid rgba(209, 176, 255, .42);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(111, 53, 215, .95), rgba(214, 55, 181, .92));
  box-shadow: 0 12px 28px rgba(99, 47, 193, .25), inset 0 1px 0 rgba(255,255,255,.2);
  color: #fff;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
}

.referral-player-card { display: grid; gap: 16px; }
.referral-player-card > p { margin: 0; line-height: 1.6; color: var(--muted); }
.referral-player-card > label,
.referral-history > span,
.referral-tier-preview > span,
.referral-reward-list > span {
  color: #d7c2f3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.referral-link-box { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.referral-link-box input {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(8, 5, 15, .72);
  color: #fff;
  padding: 12px 13px;
}
.referral-link-box button {
  border: 1px solid rgba(214, 178, 255, .45);
  border-radius: 12px;
  background: linear-gradient(135deg, #7443de, #d33eaf);
  color: #fff;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  cursor: pointer;
}
.referral-summary-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.referral-summary-grid article {
  min-width: 0;
  padding: 13px 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(45, 29, 68, .7), rgba(17, 10, 29, .7));
  text-align: center;
}
.referral-summary-grid strong { display: block; color: #fff; font-size: 22px; }
.referral-summary-grid span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.25; }
.referral-history,
.referral-tier-preview,
.referral-reward-list { display: grid; gap: 8px; }
.referral-history-row,
.referral-tier-preview > div,
.referral-reward-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}
.referral-history-row div,
.referral-tier-preview > div,
.referral-reward-list > div { min-width: 0; }
.referral-history-row strong,
.referral-tier-preview strong,
.referral-reward-list strong { display: block; color: #fff; font-size: 13px; }
.referral-history-row small,
.referral-tier-preview small,
.referral-reward-list small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.referral-status { flex: 0 0 auto; padding: 6px 9px; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .04em; }
.referral-status.qualified { background: rgba(91, 228, 155, .13); color: #8cf0ba; border: 1px solid rgba(91, 228, 155, .28); }
.referral-status.pending { background: rgba(255, 201, 74, .10); color: #f2cd72; border: 1px solid rgba(255, 201, 74, .22); }
.referral-rule-note,
.referral-muted,
.referral-empty,
.referral-loading {
  margin: 0;
  padding: 12px 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.referral-rule-note strong { color: #fff; }

@media (max-width: 680px) {
  .referral-link-box { grid-template-columns: 1fr; }
  .referral-link-box button { min-height: 44px; }
  .referral-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .referral-history-row { align-items: flex-start; }
}

/* V12.8.38 direct referral + first-deposit bonus player experience */
.referral-player-card { width: min(780px, 100%); }
.referral-program-paused { display: grid; gap: 4px; padding: 12px 13px; border-radius: 14px; border: 1px solid rgba(255,201,74,.26); background: rgba(255,201,74,.08); }
.referral-program-paused strong { color: #ffe09a; font-size: 13px; }
.referral-program-paused span { color: #d7c7a0; font-size: 11px; line-height: 1.45; }
.referral-program-rule { display: grid; gap: 4px; padding: 13px; border-radius: 14px; background: linear-gradient(135deg, rgba(116,63,205,.18), rgba(218,45,172,.09)); border: 1px solid rgba(210,157,255,.18); }
.referral-program-rule strong { color: #fff; font-size: 14px; letter-spacing: .03em; }
.referral-program-rule span { color: #c8b8d7; font-size: 11px; line-height: 1.5; }
.referral-link-box { grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; }
.referral-link-actions { display: flex; gap: 7px; }
.referral-link-actions button { min-width: 88px; }
.referral-summary-grid-six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.referral-summary-grid-six article { min-width: 0; }
.referral-summary-grid-six strong { font-size: 18px; overflow-wrap: anywhere; }
.referral-claim-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .7fr); gap: 12px 14px; align-items: end; padding: 15px; border-radius: 17px; border: 1px solid rgba(221,136,255,.28); background: radial-gradient(circle at 90% 0%, rgba(236,57,188,.14), transparent 42%), linear-gradient(135deg, rgba(86,47,158,.2), rgba(35,18,53,.8)); box-shadow: 0 15px 38px rgba(82,26,130,.17); }
.referral-claim-card > div { min-width: 0; }
.referral-claim-card > div > span { display: block; color: #cda4ff; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.referral-claim-card > div > strong { display: block; margin-top: 5px; color: #fff; font-size: 22px; }
.referral-claim-card > div > p { margin: 7px 0 0; color: #c9bed2; font-size: 11px; line-height: 1.5; }
.referral-claim-card > label { display: grid; gap: 6px; color: #d2c5dd; font-size: 10px; font-weight: 900; letter-spacing: .05em; }
.referral-claim-card select { width: 100%; min-height: 44px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14); background: #140d1d; color: #fff; padding: 10px; }
.referral-claim-button { grid-column: 1 / -1; min-height: 48px; border: 0; border-radius: 999px; background: linear-gradient(110deg, #7a43e6 0%, #a33bf0 36%, #df36bd 69%, #f34e99 100%); color: #fff; font-weight: 950; letter-spacing: .035em; box-shadow: 0 10px 28px rgba(203,54,218,.24), inset 0 1px 0 rgba(255,255,255,.28); }
.referral-claim-button:hover { filter: brightness(1.06); transform: translateY(-1px); }
.referral-claim-button:active { transform: translateY(0); filter: brightness(.96); }
.referral-claim-button:disabled { opacity: .62; cursor: wait; }
.referral-claim-card.is-pending { border-color: rgba(255,201,74,.2); background: rgba(255,201,74,.055); }
.referral-claim-card.is-unavailable,
.referral-claim-card.is-empty { grid-template-columns: 1fr; }
.referral-claim-card > small { grid-column: 1 / -1; color: #9e93a8; line-height: 1.45; }
.referral-status.review { background: rgba(255,138,77,.10); color: #ffba8c; border: 1px solid rgba(255,138,77,.24); }
.referral-bonus-history-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 11px 12px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.025); border-radius: 12px; }
.referral-bonus-history-row strong { display: block; color: #fff; font-size: 12px; }
.referral-bonus-history-row small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.referral-history-amount { min-width: 82px; text-align: right; font-size: 12px; font-weight: 900; }
.referral-history-amount.credit { color: #88edb6; }
.referral-history-amount.debit { color: #ffadad; }
.referral-history-amount.neutral { color: #d6c8df; }
.referral-history-amount small { text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 700px) {
  .referral-link-box { grid-template-columns: 1fr; }
  .referral-link-actions { width: 100%; }
  .referral-link-actions button { flex: 1 1 0; min-height: 44px; }
  .referral-summary-grid-six { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .referral-claim-card { grid-template-columns: 1fr; }
  .referral-claim-button { grid-column: 1; }
  .referral-bonus-history-row { align-items: start; }
}
@media (max-width: 390px) {
  .referral-summary-grid-six { grid-template-columns: 1fr 1fr; }
  .referral-summary-grid-six strong { font-size: 16px; }
  .referral-link-actions { flex-direction: column; }
  .referral-history-row,
  .referral-bonus-history-row { grid-template-columns: 1fr; }
  .referral-history-amount { text-align: left; }
}


/* V12.8.39 - mobile drawer referral entry + homepage referral promo copy */
.post-games-referral-promo {
  margin-top: 10px;
  padding: 0 10px;
  text-align: center;
}
.post-games-referral-promo strong,
.post-games-referral-promo span {
  display: block;
}
.post-games-referral-promo strong {
  color: #f5e6ff;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(38, 11, 71, .38);
}
.post-games-referral-promo span {
  margin-top: 5px;
  color: #cdbfd8;
  font-size: .74rem;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .post-games-referral-promo {
    margin-top: 9px;
    padding: 0 4px;
  }
  .post-games-referral-promo strong {
    font-size: .8rem;
    letter-spacing: .075em;
  }
  .post-games-referral-promo span {
    font-size: .7rem;
  }
}


/* V12.8.40 - premium highlighted drawer referral entry */
#drawerReferralBtn {
  position: relative;
  border-color: rgba(255, 197, 75, .28);
  background:
    radial-gradient(circle at 90% 50%, rgba(255, 179, 46, .10), transparent 32%),
    linear-gradient(135deg, rgba(56, 32, 15, .36), rgba(34, 18, 12, .10));
  color: #fff3d1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 8px 22px rgba(0,0,0,.14);
}

#drawerReferralBtn:hover {
  border-color: rgba(255, 205, 96, .46);
  background:
    radial-gradient(circle at 92% 50%, rgba(255, 191, 64, .14), transparent 34%),
    linear-gradient(135deg, rgba(78, 43, 17, .48), rgba(40, 21, 12, .16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 28px rgba(0,0,0,.18), 0 0 20px rgba(255, 185, 62, .08);
}

#drawerReferralBtn::after {
  content: "NEW";
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 110, .28);
  background: rgba(255, 191, 72, .10);
  color: #ffcf6a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.drawer-referral-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 205, 96, .32);
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.24), transparent 32%),
    linear-gradient(135deg, rgba(255, 201, 101, .26), rgba(255, 142, 46, .08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(0,0,0,.08);
}

.drawer-referral-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: linear-gradient(180deg, #ffd786, #ffb534);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 13a3.5 3.5 0 1 0-2.57-5.87l-1.9 1.9a1.5 1.5 0 1 1-2.12-2.12l1.9-1.9A6.5 6.5 0 1 1 20 14.19l-1.9 1.9a1.5 1.5 0 1 1-2.12-2.12l1.9-1.9c.67-.67 1.04-1.55 1.04-2.5A3.5 3.5 0 0 0 15.5 13Zm-7 11A6.5 6.5 0 0 1 4 12.81l1.9-1.9a1.5 1.5 0 0 1 2.12 2.12l-1.9 1.9A3.5 3.5 0 1 0 11.07 19l1.9-1.9a1.5 1.5 0 1 1 2.12 2.12l-1.9 1.9A6.46 6.46 0 0 1 8.5 24Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.5 13a3.5 3.5 0 1 0-2.57-5.87l-1.9 1.9a1.5 1.5 0 1 1-2.12-2.12l1.9-1.9A6.5 6.5 0 1 1 20 14.19l-1.9 1.9a1.5 1.5 0 1 1-2.12-2.12l1.9-1.9c.67-.67 1.04-1.55 1.04-2.5A3.5 3.5 0 0 0 15.5 13Zm-7 11A6.5 6.5 0 0 1 4 12.81l1.9-1.9a1.5 1.5 0 0 1 2.12 2.12l-1.9 1.9A3.5 3.5 0 1 0 11.07 19l1.9-1.9a1.5 1.5 0 1 1 2.12 2.12l-1.9 1.9A6.46 6.46 0 0 1 8.5 24Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 420px) {
  #drawerReferralBtn::after {
    padding: 3px 7px;
    font-size: 9px;
  }
}


/* V12.8.42 - homepage referral CTA button under referral promo text */
.post-games-referral-button {
  margin: 14px auto 0;
  min-height: 46px;
  min-width: min(240px, 92%);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 208, 107, .48);
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.05) 32%, rgba(255,255,255,0) 58%),
    linear-gradient(135deg, #ffc857 0%, #ffb332 48%, #ff972a 100%);
  color: #241205;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow:
    0 12px 28px rgba(0,0,0,.22),
    0 0 20px rgba(255, 184, 55, .12),
    inset 0 1px 0 rgba(255,255,255,.34);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms var(--ease), border-color 180ms var(--ease);
}

.post-games-referral-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 223, 145, .72);
  filter: brightness(1.04);
  box-shadow:
    0 15px 32px rgba(0,0,0,.25),
    0 0 24px rgba(255, 184, 55, .18),
    inset 0 1px 0 rgba(255,255,255,.4);
}

.post-games-referral-button:active {
  transform: translateY(0) scale(.992);
}

.post-games-referral-button:focus-visible {
  outline: 2px solid rgba(255, 224, 165, .95);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .post-games-referral-button {
    min-height: 44px;
    min-width: min(220px, 94%);
    font-size: .78rem;
    letter-spacing: .07em;
  }
}


/* V12.8.44 — per-banner hero text color and responsive size controls */
.hero-slide .hero-kicker {
  color: var(--hero-kicker-color, #ffc94a) !important;
  font-size: var(--hero-kicker-size, 12px) !important;
}
.hero-slide .hero-copy h1 {
  color: var(--hero-title-color, #ffffff) !important;
  font-size: var(--hero-title-size-desktop, clamp(40px, 5vw, 64px)) !important;
}
.hero-slide .hero-copy h2 {
  color: var(--hero-title-color, #ffffff) !important;
  font-size: var(--hero-title-size-desktop, clamp(38px, 4.6vw, 60px)) !important;
}
.hero-slide .hero-copy p {
  color: var(--hero-description-color, #b9b1c2) !important;
  font-size: var(--hero-description-size, 14px) !important;
}
.hero-slide .hero-copy > small {
  color: var(--hero-disclaimer-color, #a8a3ae) !important;
  font-size: var(--hero-disclaimer-size, 10px) !important;
}
@media (max-width: 760px) {
  .hero-slide .hero-copy h1,
  .hero-slide .hero-copy h2 {
    font-size: var(--hero-title-size-mobile, clamp(36px, 10.8vw, 44px)) !important;
  }
}


/* V12.8.45 - prevent bundled/default Hero flash while saved server Hero is loading on refresh */
.hero-slider.hero-loading {
  background:
    radial-gradient(circle at 82% 18%, rgba(121, 54, 177, .16), transparent 34%),
    radial-gradient(circle at 16% 88%, rgba(244, 180, 58, .07), transparent 32%),
    linear-gradient(145deg, #12091f, #1b0d2a 58%, #12091f);
}
.hero-slider.hero-loading > .hero-slide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.hero-slider.hero-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 18%, rgba(255,255,255,.025) 42%, transparent 66%),
    radial-gradient(circle at 50% 48%, rgba(118, 58, 173, .09), transparent 38%);
}
.hero-slider.hero-loading ~ .hero-controls {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-controls {
  transition: opacity 180ms ease, visibility 180ms ease;
}
