: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(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(5, 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(4, 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; }
}
















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

.vault-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;
}

.vault-orbit-mark.mark-a { top: 11%; right: 10%; }
.vault-orbit-mark.mark-b { bottom: 13%; right: 23%; animation-delay: .8s; transform: scale(.82); }
.vault-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;
}







.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;
  }

  

  

  

  

  .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;
  }

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

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

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

@media (max-width: 390px) {
  

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

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

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

/* LuckyPlay 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(5, 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; }
}


/* LuckyPlay 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; }
}

/* LuckyPlay 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; }
}

/* LuckyPlay 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; }

/* LuckyPlay 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;
  }
}

/* LuckyPlay 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;
  }
}


/* LuckyPlay 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;
  }
}


/* LuckyPlay 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; }
}

/* LuckyPlay 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; }
}

/* LuckyPlay 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;
  }
}


/* LuckyPlay 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; }
}


/* LuckyPlay 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; }
}


/* LuckyPlay 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:
    luckyplayParticleFloat var(--particle-duration, 24s) linear var(--particle-delay, 0s) infinite,
    luckyplayParticleTwinkle var(--particle-twinkle, 5s) ease-in-out var(--particle-delay, 0s) infinite;
}
@keyframes luckyplayParticleFloat {
  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 luckyplayParticleTwinkle {
  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: luckyplayProofMarquee 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 luckyplayProofMarquee {
  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;
  }
}

/* LuckyPlay 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: luckyplayWinnerMarquee 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 luckyplayWinnerMarquee {
  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; }

/* LuckyPlay 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-luckyplay .hero-copy h1,
.hero-font-luckyplay .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,
.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; }
}

/* LuckyPlay 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;
}



.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); }
































@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; }
  
  
  
}














nn/* 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}}







@media(max-width:520px){.player-benefit-status{font-size:.56rem;padding:5px 7px}}

/* =========================================================
   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.luckyplay-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%; }
}










@media (max-width: 640px) {
  

  
}


/* LuckyPlay 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; }
}












.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) {
  
  
  
  
  
  
  

  .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; }
}


.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;
}


.homepage-proof-zone {
  margin-top: 28px;
  margin-bottom: 14px;
}
.homepage-proof-zone .cashout-proof-section {
  margin-top: 12px;
}



@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;
  }
  
}



.post-games-referral-cta {
  margin: 18px 0 0;
}





@media (max-width: 760px) {
  .post-games-referral-cta {
    margin-top: 12px;
  }

  
}


/* LuckyPlay 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;
  }
}


















@media (max-width: 760px) {
  

  
}


















@media (max-width: 760px) {
  

  
}

/* 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;
}

/* V12.8.48 - external Support separated from dedicated Live Support */
.support-modal {
  max-height: min(88vh, 820px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.support-preferred-card,
.live-support-player-card,
.support-other-section {
  margin-top: 18px;
  border: 1px solid rgba(255, 201, 74, .15);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.support-preferred-card {
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(42,171,238,.17), transparent 34%),
    linear-gradient(145deg, rgba(32,26,49,.96), rgba(17,11,27,.96));
  border-color: rgba(98, 190, 239, .28);
}
.support-preferred-card > span,
.support-other-section > span,
.live-support-player-heading span {
  display: block;
  color: #f3bd4d;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.support-preferred-title {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 9px;
}
.support-preferred-title i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(42,171,238,.11);
  color: #74c6ef;
  border: 1px solid rgba(116,198,239,.22);
}
.support-preferred-title i svg { width: 22px; height: 22px; fill: currentColor; }
.support-preferred-title strong { color: #fff; font-size: 20px; letter-spacing: -.02em; }
.support-preferred-card p,
.live-support-player-card > p,
.live-support-player-login p,
.live-support-player-offline p {
  margin: 9px 0 0;
  color: #bdb4c8;
  font-size: 12px;
  line-height: 1.55;
}
.support-preferred-button,
.live-support-start-button,
.live-support-composer button,
.admin-like-secondary {
  min-height: 46px;
  border-radius: 13px;
  border: 1px solid rgba(255,201,74,.25);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .05em;
  cursor: pointer;
}
.support-preferred-button {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #15101b;
  background: linear-gradient(110deg, #f4c250, #f09a2d);
  box-shadow: 0 10px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.35);
}
.support-preferred-button:hover { filter: brightness(1.04); transform: translateY(-1px); }
.live-support-player-card { padding: 17px; }
.live-support-player-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.live-support-player-heading > div { display: grid; gap: 4px; }
.live-support-player-heading strong { color: #fff; font-size: 14px; }
.live-support-player-offline,
.live-support-player-login {
  margin-top: 14px;
  padding: 13px;
  border-radius: 13px;
  border: 1px solid rgba(255,201,74,.16);
  background: rgba(255,201,74,.045);
}
.live-support-player-offline strong { color: #f4cd72; font-size: 11px; letter-spacing: .05em; }
.admin-like-secondary,
.live-support-start-button {
  margin-top: 10px;
  width: 100%;
  color: #f5d984;
  background: rgba(255,201,74,.075);
}
.live-support-player-chat { margin-top: 14px; }
.live-support-history-picker {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 0 0 10px;
  scrollbar-width: thin;
}
.live-support-history-picker button {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 8px 10px;
  display: grid;
  gap: 3px;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px;
  background: rgba(255,255,255,.025);
  color: #ddd4e4;
  text-align: left;
}
.live-support-history-picker button.active { border-color: rgba(255,201,74,.28); background: rgba(255,201,74,.065); }
.live-support-history-picker strong { font-size: 10px; }
.live-support-history-picker small { color: #90859a; font-size: 8px; }
.live-support-history-picker b {
  position: absolute;
  right: 6px;
  top: 6px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #efb63e;
  color: #18101d;
  font-size: 8px;
}
.live-support-message-thread {
  min-height: 140px;
  max-height: 310px;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(7,5,12,.54);
}
.live-support-message {
  max-width: min(86%, 520px);
  padding: 10px 11px;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.035);
}
.live-support-message.from-player { justify-self: end; background: rgba(131,74,211,.15); border-color: rgba(180,128,255,.16); }
.live-support-message.from-admin { justify-self: start; background: rgba(255,201,74,.075); border-color: rgba(255,201,74,.15); }
.live-support-message > div { display: flex; gap: 8px; align-items: baseline; justify-content: space-between; }
.live-support-message strong { color: #fff; font-size: 10px; }
.live-support-message small { color: #8e8496; font-size: 8px; }
.live-support-message p { margin: 5px 0 0; color: #d8d0df; font-size: 11px; line-height: 1.5; word-break: break-word; }
.live-support-empty { color: #827789; font-size: 10px; text-align: center; padding: 30px 8px; }
.live-support-composer { margin-top: 9px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; align-items: stretch; }
.live-support-composer textarea {
  width: 100%;
  min-width: 0;
  resize: vertical;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: #0e0915;
  color: #fff;
  font: inherit;
  font-size: 12px;
}
.live-support-composer button { padding: 0 16px; color: #18101d; background: linear-gradient(110deg, #f4c250, #f09a2d); }
.support-other-section { padding: 15px; }
.support-other-section .support-options { margin-top: 12px; }
.support-unread-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #f1ba42;
  color: #170f1d;
  font-size: 9px;
  font-weight: 950;
  line-height: 1;
}
#supportBtn .support-unread-badge { margin-left: 5px; }

@media (max-width: 760px) {
  .support-modal { max-height: 86dvh; padding: 30px 14px 18px; width: min(96vw, 620px); }
  .support-preferred-card, .live-support-player-card, .support-other-section { border-radius: 15px; }
  .support-preferred-card { padding: 15px; }
  .support-preferred-title strong { font-size: 18px; }
  .support-preferred-button, .live-support-start-button, .admin-like-secondary { min-height: 48px; font-size: 11px; }
  .live-support-message-thread { max-height: 260px; }
  .live-support-composer { grid-template-columns: 1fr; }
  .live-support-composer button { min-height: 46px; width: 100%; }
  .live-support-message { max-width: 92%; }
}


/* V12.8.48 - dedicated Live Support navigation */
#drawerLiveSupportBtn .support-unread-badge {
  margin-left: auto;
}
.live-support-modal {
  width: min(92vw, 720px);
}
.live-support-modal .live-support-player-card {
  margin-top: 18px;
}
.live-support-fallback-card {
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .live-support-modal {
    width: min(96vw, 720px);
    max-height: 88vh;
  }
  #drawerLiveSupportBtn {
    min-height: 49px;
  }
}


/* V12.8.50 - profile Support/Live Support actions + dual primary Telegram */
.profile-support-actions {
  display: grid;
  gap: 9px;
  margin: 0 0 10px;
}
.profile-support-button,
.profile-live-support-button {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 54px;
  padding: 11px 14px;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
}
.profile-support-button {
  border: 1px solid rgba(255, 200, 73, .32);
  background: linear-gradient(135deg, rgba(255, 191, 52, .14), rgba(255, 132, 35, .08));
  color: #fff4d4;
}
.profile-live-support-button {
  border: 1px solid rgba(177, 124, 255, .28);
  background: linear-gradient(135deg, rgba(102, 54, 176, .17), rgba(47, 27, 76, .2));
  color: #f4eaff;
}
.profile-support-button strong,
.profile-live-support-button strong { font-size: 12px; font-weight: 950; letter-spacing: .055em; }
.profile-support-button small,
.profile-live-support-button small { color: #aaa0b5; font-size: 9px; line-height: 1.35; }
.profile-live-support-button > b {
  position: absolute;
  top: 10px;
  right: 12px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd451, #ff9d24);
  color: #1c1205;
  font-size: 10px;
  font-weight: 1000;
}
.support-preferred-additional { display: grid; gap: 10px; margin-top: 10px; }
.support-preferred-additional:empty { display: none; }
.support-preferred-additional-item {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.support-preferred-additional-item .support-preferred-title { margin: 0; }
@media (max-width: 520px) {
  .profile-support-button,
  .profile-live-support-button { min-height: 52px; padding: 10px 12px; }
}

/* =========================================================
   LuckyPlay V12.8.57 — verified Cashout Proofs + mobile polish
   ========================================================= */
.cashout-proof-premium-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}
.cashout-proof-heading-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cashout-proof-heading-copy > div { min-width: 0; }
.cashout-proof-heading-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 950;
  letter-spacing: -.025em;
}
.cashout-proof-heading-copy p {
  margin: 4px 0 0;
  color: #b8a995;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .115em;
  line-height: 1.45;
}
.proof-view-all {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(245, 190, 55, .3);
  border-radius: 11px;
  background: rgba(245, 190, 55, .075);
  color: #f6ce69;
  font: inherit;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  cursor: pointer;
}
.proof-view-all:hover { border-color: rgba(245,190,55,.58); background: rgba(245,190,55,.12); }
.homepage-proof-zone .cashout-proof-section {
  margin-top: 8px;
  padding: 13px 12px 12px;
  border-color: rgba(245,190,55,.17);
  background: radial-gradient(circle at 8% 0%, rgba(130,45,180,.09), transparent 34%), linear-gradient(145deg, rgba(18,11,28,.94), rgba(7,8,14,.98));
}
.cashout-proof-card {
  border-color: rgba(255,255,255,.09);
  background: linear-gradient(160deg, rgba(19,14,27,.99), rgba(7,8,13,.995));
  box-shadow: 0 16px 35px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.035);
}
.cashout-proof-card.is-verified { border-color: rgba(80,220,143,.18); }
.cashout-proof-card-action {
  appearance: none;
  width: 100%;
  padding: 0;
  display: block;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: zoom-in;
}
.cashout-proof-image {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  display: block;
  overflow: hidden;
  background: #05060a;
}
.cashout-proof-image img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  display: block;
  object-fit: contain !important;
  object-position: top center !important;
}
.cashout-proof-details {
  display: grid;
  gap: 5px;
  padding: 11px 12px 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(17,12,24,.99), rgba(8,8,14,.995));
}
.cashout-proof-status-row {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.verified-cashout-badge,
.published-proof-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 7.5px;
  font-weight: 950;
  letter-spacing: .055em;
  line-height: 1;
  white-space: nowrap;
}
.verified-cashout-badge {
  border: 1px solid rgba(72,221,139,.25);
  background: rgba(33,177,100,.11);
  color: #73eca7;
}
.published-proof-badge {
  border: 1px solid rgba(245,190,55,.2);
  background: rgba(245,190,55,.07);
  color: #e6c36f;
}
.cashout-proof-status-row small {
  flex: 0 0 auto;
  color: #887f90;
  font-size: 8px;
  font-weight: 750;
}
.cashout-proof-paid,
.cashout-proof-result {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.cashout-proof-paid { color: #ffe084; }
.cashout-proof-method {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #b8afbf;
  font-size: 9px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cashout-proof-method i { color: #7f687f; font-style: normal; }
.cashout-proof-card-action:focus-visible { outline: 2px solid rgba(245,190,55,.8); outline-offset: -2px; }

/* Keep the seamless right-to-left marquee, but make it interactable. */
.cashout-proof-grid.proof-marquee-viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  touch-action: pan-x pan-y !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cashout-proof-grid.proof-marquee-viewport::-webkit-scrollbar { display: none; }
.cashout-proof-grid.proof-marquee-viewport.is-interacting .cashout-proof-marquee-track {
  animation-play-state: paused !important;
}
@media (hover: hover) and (pointer: fine) {
  .cashout-proof-grid.proof-marquee-viewport:hover .cashout-proof-marquee-track { animation-play-state: paused !important; }
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-card {
  width: clamp(245px, 25vw, 330px) !important;
  min-width: clamp(245px, 25vw, 330px) !important;
  max-width: clamp(245px, 25vw, 330px) !important;
  flex-basis: clamp(245px, 25vw, 330px) !important;
}

/* View-all gallery + complete proof viewer. */
.proof-gallery-modal {
  width: min(960px, calc(100vw - 28px));
  max-height: calc(100dvh - 28px);
  padding: 28px;
  overflow: auto;
}
.proof-gallery-modal > h2 { margin: 7px 44px 7px 0; color: #fff; font-size: clamp(26px,4vw,38px); }
.proof-gallery-intro { max-width: 690px; margin: 0; color: #aaa0b1; font-size: 12px; line-height: 1.6; }
.proof-gallery-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.proof-gallery-list .cashout-proof-card { min-width: 0 !important; max-width: none !important; width: auto !important; }
.proof-viewer-modal {
  width: min(1120px, calc(100vw - 20px));
  height: min(94dvh, 900px);
  max-height: 94dvh;
  padding: 12px;
  display: grid;
  grid-template-rows: minmax(0,1fr) auto;
  overflow: hidden;
  background: rgba(5,5,10,.995);
  border-color: rgba(245,190,55,.28);
}
.proof-viewer-close { z-index: 4; background: rgba(12,8,18,.88); }
.proof-viewer-stage {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  display: grid;
  place-items: start center;
  border-radius: 16px;
  background: #030408;
  touch-action: pan-x pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}
.proof-viewer-stage img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.proof-viewer-meta {
  min-width: 0;
  padding: 12px 7px 3px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 5px 10px;
}
.proof-viewer-meta .verified-cashout-badge { grid-column: 1; grid-row: 1 / span 2; }
.proof-viewer-meta strong { grid-column: 2; color: #ffe083; font-size: 18px; }
.proof-viewer-meta > span:not(.verified-cashout-badge) { grid-column: 2; color: #aaa0b1; font-size: 10px; }
.proof-viewer-meta small { grid-column: 3; grid-row: 1 / span 2; color: #8a8190; font-size: 9px; }

/* Mobile: larger centered LuckyPlay identity without making the header tall. */
@media (max-width: 640px) {
  :root { --topbar: 70px; }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }
  .topbar { padding: 0 11px; gap: 8px; }
  .mobile-brand {
    position: absolute;
    left: 50%;
    width: min(48vw, 205px);
    max-width: calc(100% - 184px);
    justify-content: center;
    gap: 7px;
    transform: translateX(-50%);
    overflow: hidden;
    pointer-events: auto;
  }
  .mobile-brand img {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    padding: 1px !important;
    margin: 0 !important;
    flex: 0 0 45px;
    object-fit: contain;
  }
  .mobile-brand .mobile-brand-wordmark {
    min-width: 0;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    line-height: 1;
  }
  .mobile-brand-wordmark strong {
    color: #fff3d1;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .045em;
    white-space: nowrap;
  }
  .mobile-brand-wordmark small {
    margin-top: 3px;
    color: #d8a93d;
    font-size: 7.5px;
    font-weight: 950;
    letter-spacing: .27em;
    white-space: nowrap;
  }

  .cashout-proof-premium-heading { align-items: center; gap: 9px; margin-bottom: 6px; }
  .cashout-proof-heading-copy { gap: 8px; }
  .cashout-proof-heading-copy h2 { font-size: 18px; }
  .cashout-proof-heading-copy p { margin-top: 3px; font-size: 7.2px; letter-spacing: .085em; }
  .cashout-proof-heading-copy .proof-title-icon { width: 29px; height: 29px; flex-basis: 29px; }
  .proof-view-all { min-height: 34px; padding: 0 10px; font-size: 7.5px; }
  .homepage-proof-zone .cashout-proof-section { margin-top: 6px; padding: 9px 8px 10px; border-radius: 15px !important; }
  .cashout-proof-grid.proof-marquee-viewport .cashout-proof-card {
    width: clamp(252px, 76vw, 322px) !important;
    min-width: clamp(252px, 76vw, 322px) !important;
    max-width: clamp(252px, 76vw, 322px) !important;
    flex-basis: clamp(252px, 76vw, 322px) !important;
  }
  .cashout-proof-grid.proof-marquee-reduced { grid-auto-columns: clamp(252px, 76vw, 322px) !important; }
  .cashout-proof-details { padding: 10px 11px 11px; }
  .verified-cashout-badge, .published-proof-badge { font-size: 7px; }
  .cashout-proof-paid, .cashout-proof-result { font-size: 15px; }
  .cashout-proof-method { font-size: 8.5px; }

  .proof-gallery-modal { width: calc(100vw - 14px); max-height: calc(100dvh - 14px); padding: 24px 12px 14px; border-radius: 19px; }
  .proof-gallery-modal > h2 { font-size: 25px; }
  .proof-gallery-intro { font-size: 10px; }
  .proof-gallery-list { grid-template-columns: 1fr; gap: 11px; margin-top: 15px; }
  .proof-viewer-modal { width: calc(100vw - 8px); height: calc(100dvh - 8px); max-height: calc(100dvh - 8px); padding: 8px; border-radius: 18px; }
  .proof-viewer-stage { border-radius: 13px; }
  .proof-viewer-meta { padding: 10px 4px 2px; grid-template-columns: 1fr auto; }
  .proof-viewer-meta .verified-cashout-badge { grid-column: 1 / -1; grid-row: auto; }
  .proof-viewer-meta strong { grid-column: 1; font-size: 16px; }
  .proof-viewer-meta > span:not(.verified-cashout-badge) { grid-column: 1; }
  .proof-viewer-meta small { grid-column: 2; grid-row: 2 / span 2; }

  .mobile-bottom-nav {
    right: 6px;
    left: 6px;
    bottom: calc(6px + env(safe-area-inset-bottom));
    height: 70px;
    padding: 6px 5px;
    border-radius: 20px;
    column-gap: 1px;
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-width: 0;
    min-height: 56px;
    gap: 4px;
    border-radius: 13px;
    padding: 4px 1px;
  }
  .mobile-bottom-nav span { font-size: 19px; }
  .mobile-bottom-nav small,
  .mobile-bottom-nav.support-active small { font-size: 8.4px; line-height: 1; }
}

@media (max-width: 390px) {
  .mobile-brand {
    width: 44vw;
    max-width: calc(100% - 176px);
    gap: 5px;
  }
  .mobile-brand img {
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    flex-basis: 40px;
  }
  .mobile-brand-wordmark strong { font-size: 13px; }
  .mobile-brand-wordmark small { font-size: 6.8px; letter-spacing: .22em; }
  .cashout-proof-heading-copy p { max-width: 165px; font-size: 6.7px; }
  .proof-view-all { padding: 0 8px; }
  .mobile-bottom-nav span { font-size: 18px; }
  .mobile-bottom-nav small,
  .mobile-bottom-nav.support-active small { font-size: 7.8px; }
}


/* ================================================================
   LuckyPlay V12.8.58 — uploaded header logo + proof information refinement
   Targeted overrides only. Cashout card/image sizing, marquee motion, and bottom nav are intentionally unchanged.
   ================================================================ */
.cashout-proof-details {
  justify-items: center;
  gap: 4px;
  padding: 9px 12px 10px;
  text-align: center;
}
.cashout-proof-status-row {
  width: 100%;
  justify-content: center;
}
.verified-cashout-badge,
.cashout-proof-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 7.5px;
  font-weight: 950;
  letter-spacing: .055em;
  line-height: 1;
  white-space: nowrap;
}
.cashout-proof-badge {
  border: 1px solid rgba(245,190,55,.2);
  background: rgba(245,190,55,.07);
  color: #e6c36f;
}
.cashout-proof-method {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.3;
}
.cashout-proof-time {
  display: block;
  color: #887f90;
  font-size: 8px;
  font-weight: 750;
  line-height: 1.1;
}

/* Use the exact uploaded LuckyPlay artwork as the topbar identity. */
@media (max-width: 1080px) {
  .mobile-brand.player-header-logo {
    position: absolute;
    left: 50%;
    width: min(34vw, 190px);
    max-width: calc(100% - 250px);
    height: 60px;
    padding: 0;
    margin: 0;
    justify-content: center;
    transform: translateX(-50%);
    overflow: hidden;
    background: transparent;
  }
  .mobile-brand.player-header-logo .player-header-logo-image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: 60px !important;
    padding: 0 !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    flex: 0 1 auto;
  }
}

@media (max-width: 640px) {
  .mobile-brand.player-header-logo {
    width: min(52vw, 190px);
    max-width: calc(100% - 204px);
    height: 64px;
    gap: 0;
  }
  .mobile-brand.player-header-logo .player-header-logo-image {
    max-height: 64px !important;
  }
  .cashout-proof-details {
    gap: 3px;
    padding: 8px 11px 9px;
  }
  .verified-cashout-badge,
  .cashout-proof-badge { font-size: 7px; }
  .cashout-proof-time { font-size: 8px; }
}

@media (max-width: 390px) {
  .mobile-brand.player-header-logo {
    width: 46vw;
    max-width: calc(100% - 196px);
    height: 58px;
  }
  .mobile-brand.player-header-logo .player-header-logo-image {
    max-height: 58px !important;
  }
}


/* ================================================================
   LuckyPlay V12.8.61 — Cashout Proof image-dominant layout
   Compact the metadata footer so the existing proof image remains the
   dominant visual. Card widths, image fit rules, marquee motion, header,
   and bottom navigation are intentionally unchanged.
   ================================================================ */
.cashout-proof-details {
  gap: 2px;
  padding: 6px 10px 7px;
}
.cashout-proof-status-row {
  margin: 0;
  line-height: 1;
}
.verified-cashout-badge,
.cashout-proof-badge {
  padding: 4px 7px;
  line-height: 1;
}
.cashout-proof-paid,
.cashout-proof-result {
  margin: 0;
  line-height: 1.08;
}
.cashout-proof-method-time {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1.12;
}
.cashout-proof-method-time .cashout-proof-method {
  display: inline-block;
  min-width: 0;
  max-width: calc(100% - 58px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.12;
}
.cashout-proof-divider {
  flex: 0 0 auto;
  color: #74687c;
  font-size: 8px;
  font-style: normal;
  line-height: 1;
}
.cashout-proof-method-time .cashout-proof-time {
  flex: 0 0 auto;
  display: inline;
  margin: 0;
  white-space: nowrap;
  line-height: 1.12;
}

@media (max-width: 640px) {
  /* A small mobile-only width gain makes the proof itself physically larger
     while preserving the same carousel engine, direction and px/sec speed. */
  .cashout-proof-grid.proof-marquee-viewport .cashout-proof-card {
    width: clamp(252px, 82vw, 336px) !important;
    min-width: clamp(252px, 82vw, 336px) !important;
    max-width: clamp(252px, 82vw, 336px) !important;
    flex-basis: clamp(252px, 82vw, 336px) !important;
  }
  .cashout-proof-grid.proof-marquee-reduced {
    grid-auto-columns: clamp(252px, 82vw, 336px) !important;
  }
  .cashout-proof-details {
    min-height: 64px;
    box-sizing: border-box;
    gap: 1px;
    padding: 5px 9px 6px;
  }
  .verified-cashout-badge,
  .cashout-proof-badge {
    padding: 4px 6px;
  }
  .cashout-proof-paid,
  .cashout-proof-result {
    line-height: 1.06;
  }
  .cashout-proof-method-time {
    gap: 3px;
  }
  .cashout-proof-method-time .cashout-proof-method,
  .cashout-proof-method-time .cashout-proof-time,
  .cashout-proof-divider {
    font-size: 8px;
  }
}


/* ================================================================
   LuckyPlay V12.8.65 — premium moving Cashout Proof stream
   Stable equal-width slides, transform-only one-card travel, larger visible
   neighbor peeks, and a longer premium transition with a shorter readable
   pause. Legacy and structured proofs keep identical physical geometry.
   ================================================================ */
.cashout-proof-grid.proof-carousel-viewport {
  --proof-card-width: 330px;
  --proof-carousel-gap: 12px;
  --proof-image-height: 344px;
  --proof-footer-height: 82px;
  position: relative;
  display: block !important;
  width: 100%;
  max-width: 100%;
  overflow: hidden !important;
  padding: 2px 0 8px !important;
  scroll-snap-type: none !important;
  scrollbar-width: none;
  touch-action: pan-y;
  contain: layout paint;
}
.cashout-proof-grid.proof-carousel-viewport::-webkit-scrollbar { display: none; }
.cashout-proof-carousel-track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: var(--proof-carousel-gap);
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-card,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-card,
.cashout-proof-grid.proof-carousel-single .cashout-proof-card {
  width: var(--proof-card-width) !important;
  min-width: var(--proof-card-width) !important;
  max-width: var(--proof-card-width) !important;
  flex: 0 0 var(--proof-card-width) !important;
  height: calc(var(--proof-image-height) + var(--proof-footer-height));
  min-height: calc(var(--proof-image-height) + var(--proof-footer-height));
  max-height: calc(var(--proof-image-height) + var(--proof-footer-height));
  align-self: stretch;
  scroll-snap-align: none !important;
  transform: none !important;
  box-sizing: border-box;
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-card:hover,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-card:hover,
.cashout-proof-grid.proof-carousel-single .cashout-proof-card:hover {
  transform: none !important;
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-card-action,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-card-action,
.cashout-proof-grid.proof-carousel-single .cashout-proof-card-action {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-image,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-image,
.cashout-proof-grid.proof-carousel-single .cashout-proof-image {
  flex: 0 0 var(--proof-image-height);
  width: 100% !important;
  height: var(--proof-image-height) !important;
  min-height: var(--proof-image-height) !important;
  max-height: var(--proof-image-height) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  background: #05060a;
  overflow: hidden;
  box-sizing: border-box;
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-image img,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-image img,
.cashout-proof-grid.proof-carousel-single .cashout-proof-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  backface-visibility: hidden;
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-details,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-details,
.cashout-proof-grid.proof-carousel-single .cashout-proof-details {
  flex: 0 0 var(--proof-footer-height);
  width: 100%;
  height: var(--proof-footer-height);
  min-height: var(--proof-footer-height);
  max-height: var(--proof-footer-height);
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  justify-items: center;
  gap: 2px;
  padding: 5px 9px 6px;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-status-row,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-status-row,
.cashout-proof-grid.proof-carousel-single .cashout-proof-status-row,
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-method-time,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-method-time,
.cashout-proof-grid.proof-carousel-single .cashout-proof-method-time {
  margin: 0;
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-method-time,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-method-time,
.cashout-proof-grid.proof-carousel-single .cashout-proof-method-time {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.cashout-proof-grid.proof-carousel-viewport .cashout-proof-method-time .cashout-proof-method,
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-method-time .cashout-proof-method,
.cashout-proof-grid.proof-carousel-single .cashout-proof-method-time .cashout-proof-method {
  max-width: calc(100% - 64px);
}
.cashout-proof-card[data-proof-carousel-clone="true"] { pointer-events: none; }

.cashout-proof-grid.proof-carousel-reduced {
  display: grid !important;
  grid-template-columns: none !important;
  grid-auto-flow: column;
  grid-auto-columns: var(--proof-card-width);
  gap: var(--proof-carousel-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
  padding: 2px 0 8px;
}
.cashout-proof-grid.proof-carousel-reduced .cashout-proof-card { scroll-snap-align: center !important; }
.cashout-proof-grid.proof-carousel-single {
  display: flex !important;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 2px 0 8px;
}

@media (max-width: 640px) {
  .cashout-proof-grid.proof-carousel-viewport,
  .cashout-proof-grid.proof-carousel-reduced,
  .cashout-proof-grid.proof-carousel-single {
    /* JS measures the exact viewport and sets an 82% mobile card width. These
       fallbacks keep the proof large while revealing intentional neighbor peeks. */
    --proof-card-width: min(82vw, 360px);
    --proof-carousel-gap: 10px;
    --proof-image-height: 400px;
    --proof-footer-height: 80px;
  }
  .cashout-proof-grid.proof-carousel-viewport .verified-cashout-badge,
  .cashout-proof-grid.proof-carousel-viewport .cashout-proof-badge,
  .cashout-proof-grid.proof-carousel-reduced .verified-cashout-badge,
  .cashout-proof-grid.proof-carousel-reduced .cashout-proof-badge,
  .cashout-proof-grid.proof-carousel-single .verified-cashout-badge,
  .cashout-proof-grid.proof-carousel-single .cashout-proof-badge {
    padding: 4px 6px;
    font-size: 7px;
  }
  .cashout-proof-grid.proof-carousel-viewport .cashout-proof-paid,
  .cashout-proof-grid.proof-carousel-viewport .cashout-proof-result,
  .cashout-proof-grid.proof-carousel-reduced .cashout-proof-paid,
  .cashout-proof-grid.proof-carousel-reduced .cashout-proof-result,
  .cashout-proof-grid.proof-carousel-single .cashout-proof-paid,
  .cashout-proof-grid.proof-carousel-single .cashout-proof-result {
    font-size: 15px;
    line-height: 1.05;
  }
  .cashout-proof-grid.proof-carousel-viewport .cashout-proof-method,
  .cashout-proof-grid.proof-carousel-viewport .cashout-proof-time,
  .cashout-proof-grid.proof-carousel-viewport .cashout-proof-divider,
  .cashout-proof-grid.proof-carousel-reduced .cashout-proof-method,
  .cashout-proof-grid.proof-carousel-reduced .cashout-proof-time,
  .cashout-proof-grid.proof-carousel-reduced .cashout-proof-divider,
  .cashout-proof-grid.proof-carousel-single .cashout-proof-method,
  .cashout-proof-grid.proof-carousel-single .cashout-proof-time,
  .cashout-proof-grid.proof-carousel-single .cashout-proof-divider {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cashout-proof-carousel-track { transition: none !important; transform: none !important; }
}

/* ================================================================
   LuckyPlay V12.8.65 — old-video-2 Cashout Proof moving stream
   Restore the continuously translating multi-card row: several tall proof
   cards stay visible together while the duplicated track moves right-to-left.
   ================================================================ */
.cashout-proof-grid.proof-marquee-viewport {
  --proof-stream-card-width: 170px;
  --proof-stream-gap: 10px;
  --proof-stream-image-height: 312px;
  --proof-stream-footer-height: 64px;
  display: block !important;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 0 7px !important;
  scroll-snap-type: none !important;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  contain: layout paint;
}
.cashout-proof-grid.proof-marquee-viewport::-webkit-scrollbar { display: none; }
.cashout-proof-marquee-track {
  display: flex !important;
  width: max-content;
  align-items: stretch;
  gap: var(--proof-stream-gap) !important;
  transform: translate3d(0,0,0);
  will-change: transform;
  backface-visibility: hidden;
  animation: luckyplayProofMarquee var(--proof-marquee-duration, 28s) linear infinite !important;
  animation-play-state: running;
}
.cashout-proof-marquee-set {
  display: flex !important;
  flex: 0 0 auto;
  align-items: stretch;
  gap: var(--proof-stream-gap) !important;
}
.cashout-proof-grid.proof-marquee-viewport.is-interacting .cashout-proof-marquee-track {
  animation-play-state: paused !important;
}
@media (hover: hover) and (pointer: fine) {
  .cashout-proof-grid.proof-marquee-viewport:hover .cashout-proof-marquee-track { animation-play-state: paused !important; }
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-card,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-card {
  width: var(--proof-stream-card-width) !important;
  min-width: var(--proof-stream-card-width) !important;
  max-width: var(--proof-stream-card-width) !important;
  flex: 0 0 var(--proof-stream-card-width) !important;
  height: calc(var(--proof-stream-image-height) + var(--proof-stream-footer-height)) !important;
  min-height: calc(var(--proof-stream-image-height) + var(--proof-stream-footer-height)) !important;
  max-height: calc(var(--proof-stream-image-height) + var(--proof-stream-footer-height)) !important;
  align-self: stretch;
  box-sizing: border-box;
  transform: none !important;
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-card:hover,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-card:hover { transform: none !important; }
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-card-action,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-card-action {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-image,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-image {
  flex: 0 0 var(--proof-stream-image-height);
  width: 100% !important;
  height: var(--proof-stream-image-height) !important;
  min-height: var(--proof-stream-image-height) !important;
  max-height: var(--proof-stream-image-height) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  overflow: hidden;
  background: #05060a;
  box-sizing: border-box;
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-image img,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  backface-visibility: hidden;
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-details,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-details {
  flex: 0 0 var(--proof-stream-footer-height);
  width: 100%;
  height: var(--proof-stream-footer-height) !important;
  min-height: var(--proof-stream-footer-height) !important;
  max-height: var(--proof-stream-footer-height) !important;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: center;
  justify-items: center;
  gap: 1px;
  padding: 4px 6px 5px;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
}
.cashout-proof-grid.proof-marquee-viewport .verified-cashout-badge,
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-badge,
.cashout-proof-grid.proof-marquee-reduced .verified-cashout-badge,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-badge {
  padding: 3px 5px;
  font-size: 6.5px;
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-paid,
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-result,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-paid,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-result {
  font-size: 13px;
  line-height: 1.02;
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-method-time,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-method-time {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 2px;
  overflow: hidden;
}
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-method,
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-time,
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-divider,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-method,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-time,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-divider { font-size: 7px; }
.cashout-proof-grid.proof-marquee-viewport .cashout-proof-method,
.cashout-proof-grid.proof-marquee-reduced .cashout-proof-method { max-width: calc(100% - 49px); }
.cashout-proof-grid.proof-marquee-reduced {
  display: grid !important;
  grid-template-columns: none !important;
  grid-auto-flow: column;
  grid-auto-columns: var(--proof-stream-card-width) !important;
  gap: var(--proof-stream-gap) !important;
  overflow-x: auto;
  overflow-y: hidden;
  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; }
@keyframes luckyplayProofMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(calc(-1 * var(--proof-marquee-distance, 1000px)),0,0); }
}
@media (prefers-reduced-motion: reduce) {
  .cashout-proof-marquee-track { animation: none !important; transform: none !important; }
}



/* LuckyPlay - verified email registration */
.verification-email-copy {
  display: grid;
  gap: 6px;
  margin: 14px 0 4px;
  color: #bcb2c5;
  font-size: 12px;
  line-height: 1.5;
}
.verification-email-copy strong { color: #fff; font-size: 13px; overflow-wrap: anywhere; }
#verifyEmailCode {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .22em;
}
.verification-instruction { margin: 9px 0 14px; color: #a9a0b3; font-size: 11px; }
.verification-resend-block {
  margin-top: 16px;
  padding: 13px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: #bcb2c5;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}
.verification-resend-block strong { color: #fff; }
.verification-resend-block .auth-link-button { justify-self: center; padding: 5px 8px 1px; }
.verification-resend-block .auth-link-button:disabled { color: #807889; cursor: not-allowed; text-decoration: none; }
.verification-resend-block small { color: #91889a; }
.verification-status { color: #d9c9e5; }
.verification-trust-note { padding: 10px 12px; border-radius: 10px; background: rgba(126,224,163,.06); color: #b9c9bf; }
.profile-email-safety { margin: 14px 0 16px; padding: 13px 14px; display: grid; gap: 6px; border: 1px solid rgba(126,224,163,.18); border-radius: 12px; background: rgba(126,224,163,.055); }
.profile-email-safety strong { color: #e9fff0; font-size: 12px; }
.profile-email-safety span { color: #b5c1b9; font-size: 10px; line-height: 1.55; }

/* ============================================================================
   LuckyPlay V12.8.71 — premium player UI/UX refinement
   Visual-only cumulative layer. Financial, security, API, session, email and
   persistent-data behavior are intentionally untouched. Cashout Proof stream
   geometry/animation selectors are intentionally not overridden here.
   ============================================================================ */
:root {
  --bg: #08070d;
  --bg-soft: #0e0c14;
  --panel: rgba(18, 16, 24, .94);
  --panel-strong: #14111b;
  --panel-light: #1a1623;
  --line: rgba(255, 255, 255, .07);
  --line-strong: rgba(255, 255, 255, .12);
  --text: #f8f6f2;
  --muted: #aaa5b2;
  --muted-2: #77717f;
  --gold: #e2bc5a;
  --gold-2: #dca63f;
  --purple: #8056d9;
  --purple-2: #6945b8;
  --pink: #b66ad9;
  --cyan: #7ca9bd;
  --green: #39c783;
  --danger: #e45c66;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --sidebar: 218px;
  --topbar: 68px;
  --ease: cubic-bezier(.22, .78, .22, 1);
}

html { scrollbar-color: #3f3948 #09080d; }
body {
  background:
    radial-gradient(circle at 82% -8%, rgba(128,86,217,.075), transparent 28%),
    radial-gradient(circle at 12% 104%, rgba(226,188,90,.045), transparent 30%),
    #08070d;
  color: var(--text);
  font-size: 14px;
}
.ambient { opacity: .18; filter: blur(110px); }
.ambient-one { background: rgba(128,86,217,.14); }
.ambient-two { background: rgba(226,188,90,.07); }
.premium-particle-field { display: none !important; }

::selection { background: rgba(226,188,90,.24); color: #fff; }
:focus-visible { outline: 2px solid rgba(242,207,112,.9); outline-offset: 3px; }

/* Premium desktop rail + genuine LuckyPlay artwork */
.sidebar {
  width: var(--sidebar);
  padding: 19px 15px;
  border-right-color: rgba(255,255,255,.065);
  background: linear-gradient(180deg, rgba(12,10,15,.985), rgba(8,7,11,.99));
  box-shadow: 18px 0 50px rgba(0,0,0,.16);
}
.brand.player-brand-logo {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  overflow: hidden;
}
.brand.player-brand-logo img {
  width: min(176px, 100%) !important;
  height: 54px !important;
  max-width: 176px !important;
  object-fit: contain;
}
.brand.player-brand-logo > span { display: none; }
.side-nav { gap: 5px; margin-top: 28px; }
.nav-link {
  min-height: 46px;
  padding: 0 12px;
  gap: 10px;
  border-radius: 12px;
  color: #928d99;
  font-size: 13px;
  font-weight: 760;
}
.nav-link span { color: #928d99; font-size: 18px; }
.nav-link:hover { background: rgba(255,255,255,.035); color: #f8f6f2; }
.nav-link.active {
  border-color: rgba(226,188,90,.19);
  background: linear-gradient(135deg, rgba(226,188,90,.105), rgba(128,86,217,.055));
  box-shadow: inset 2px 0 0 #e2bc5a;
}
.nav-link.active span { color: #e2bc5a; }
.sidebar-bottom { color: #77717f; }

.main { margin-left: var(--sidebar); }
.topbar {
  height: var(--topbar);
  padding: 0 clamp(18px, 2.6vw, 36px);
  border-bottom-color: rgba(255,255,255,.06);
  background: rgba(8,7,13,.88);
  backdrop-filter: blur(20px) saturate(115%);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
}
.icon-btn,
.avatar-btn,
.player-notification-bell {
  border-color: rgba(255,255,255,.09) !important;
  background: rgba(255,255,255,.035) !important;
  box-shadow: none !important;
}
.icon-btn:hover,
.avatar-btn:hover,
.player-notification-bell:hover {
  border-color: rgba(226,188,90,.28) !important;
  background: rgba(226,188,90,.065) !important;
}
.avatar-btn {
  color: #f7e4a7;
  background: linear-gradient(145deg, rgba(226,188,90,.17), rgba(128,86,217,.10)) !important;
}
.ghost-btn,
.secondary-btn {
  border-color: rgba(255,255,255,.12) !important;
  background: rgba(255,255,255,.035) !important;
  color: #f1eef3 !important;
  box-shadow: none !important;
}
.primary-btn,
.gradient-cta,
.small-cta,
.welcome-offer-button,
.top-app-btn,
.spin-btn {
  border: 1px solid rgba(242,207,112,.34) !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg,#f0cc6a,#dca63f) !important;
  color: #211707 !important;
  box-shadow: 0 10px 24px rgba(154,110,30,.14) !important;
}

.content-wrap {
  width: min(100%, 1460px);
  padding: 20px clamp(18px,2.6vw,36px) 56px;
}

/* Shorter, quieter, premium hero */
.hero-slider {
  min-height: 410px;
  border-color: rgba(255,255,255,.08);
  border-radius: 24px;
  background: #0d0b12;
  box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.035);
}
.hero-slide { padding: clamp(32px,4vw,54px); }
.hero-slide-one,
.hero-slide-two,
.hero-slide-three {
  background:
    linear-gradient(90deg, rgba(7,6,10,.95), rgba(13,11,17,.78) 55%, rgba(20,16,22,.52)),
    radial-gradient(circle at 78% 44%, rgba(226,188,90,.10), transparent 28%),
    radial-gradient(circle at 56% 8%, rgba(128,86,217,.07), transparent 32%),
    #0d0b12;
}
.hero-copy { max-width: 610px; }
.hero-kicker {
  color: #d4ad50;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}
.hero-copy h1,
.hero-copy h2 {
  margin: 10px 0 12px;
  max-width: 640px;
  color: #f8f6f2;
  font-size: clamp(38px,4.4vw,58px);
  line-height: 1.01;
  letter-spacing: -.052em;
  text-shadow: 0 10px 35px rgba(0,0,0,.24);
}
.hero-copy h2 { font-size: clamp(36px,4.1vw,54px); }
.hero-copy p {
  max-width: 520px;
  color: #aaa5b2;
  font-size: 14px;
  line-height: 1.58;
}
.hero-actions { margin-top: 19px; gap: 9px; }
.hero-actions button { min-height: 44px; }
.hero-actions + small,
.hero-copy > small { margin-top: 12px; color: #77717f; }
.hero-controls {
  right: 16px;
  bottom: 15px;
  border-color: rgba(255,255,255,.08);
  background: rgba(8,7,12,.54);
}
.hero-arrow { background: rgba(255,255,255,.055); }
.hero-dots button.active { background: #e2bc5a; }
.hero-crown { color: #e2bc5a; text-shadow: 0 12px 50px rgba(226,188,90,.18); }
.crown-orbit { border-color: rgba(226,188,90,.16); }

/* Compact player-value strip */
.player-benefits.player-benefits-condensed {
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
  margin: 14px 0 20px;
}
.player-benefits-condensed .player-benefit-card {
  min-height: 74px;
  padding: 11px 13px;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20,17,27,.96), rgba(12,10,16,.97));
  box-shadow: 0 12px 30px rgba(0,0,0,.13), inset 0 1px rgba(255,255,255,.025);
}
.player-benefits-condensed .player-benefit-card::before { opacity: .34; }
.player-benefits-condensed .player-benefit-icon {
  flex-basis: 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(226,188,90,.14);
  border-radius: 12px;
  background: rgba(226,188,90,.055);
  color: #e7c66f;
  font-size: 1.05rem;
  text-shadow: none;
}
.player-benefits-condensed .player-benefit-copy { gap: 3px; }
.player-benefits-condensed .player-benefit-copy strong {
  color: #f6f3ef;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.player-benefits-condensed .player-benefit-copy span { color: #87818e; font-size: .72rem; }

/* Discovery behaves like a polished app control surface. */
.discovery-bar {
  top: calc(var(--topbar) + 8px);
  margin-top: 12px;
  padding: 8px;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 18px;
  background: rgba(11,9,14,.88);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%);
}
.category-scroller { gap: 6px; }
.category-chip {
  height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #8f8995;
  font-size: 11px;
  font-weight: 760;
}
.category-chip span { color: #8f8995; }
.category-chip:hover { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.035); color: #f2eff4; }
.category-chip.active {
  border-color: rgba(226,188,90,.22) !important;
  background: rgba(226,188,90,.085) !important;
  color: #f5f1e8 !important;
  box-shadow: none !important;
}
.category-chip.active span { color: #e2bc5a !important; }
.search-box {
  width: min(320px,32vw);
  height: 44px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: #100e15;
  box-shadow: inset 0 1px rgba(255,255,255,.018);
}
.search-box:focus-within {
  border-color: rgba(226,188,90,.38);
  box-shadow: 0 0 0 3px rgba(226,188,90,.07);
}
.search-box > span { color: #77717f; }
.search-box input { color: #f8f6f2; }
.search-box input::placeholder { color: #6f6976; }
.search-box kbd { color: #77717f; border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.03); }

.main-game-library { padding-top: 24px; }
.library-summary { margin-bottom: 13px; }
.library-summary .section-kicker,
.section-kicker { color: #b8974e; font-size: 9px; letter-spacing: .14em; }
.library-summary h2 {
  margin-top: 4px;
  color: #f8f6f2;
  font-size: clamp(23px,2.2vw,31px);
  letter-spacing: -.04em;
}
.library-summary > small { color: #77717f; font-weight: 700; }

/* Artwork-first game cards. Existing 400x500 game art now fills the tile. */
.game-grid {
  grid-template-columns: repeat(auto-fill,minmax(168px,1fr));
  gap: 12px !important;
}
.game-grid .game-card {
  --game-icon-size: initial;
  min-height: 0 !important;
  border: 1px solid rgba(255,255,255,.075) !important;
  border-radius: 18px !important;
  background: #100e15 !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.20), inset 0 1px rgba(255,255,255,.025) !important;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.game-grid .game-card:hover {
  border-color: rgba(226,188,90,.25) !important;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,.28), 0 0 0 1px rgba(226,188,90,.035) !important;
}
.game-grid .game-card-thumb {
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 4/5 !important;
  padding: 0 !important;
  place-items: stretch !important;
  background: #0d0b11 !important;
}
.game-grid .game-card-thumb > img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #0d0b11 !important;
  box-shadow: none !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none;
}
.game-grid .game-card:hover .game-card-thumb > img { transform: scale(1.025); }
.game-grid .game-card-thumb::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg,transparent,rgba(8,7,12,.14) 42%,rgba(8,7,12,.78));
}
.game-grid .game-overlay {
  z-index: 5;
  inset: auto 9px 9px 9px !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: 36px !important;
  border: 1px solid rgba(242,207,112,.30) !important;
  border-radius: 11px !important;
  background: linear-gradient(135deg,rgba(242,207,112,.97),rgba(220,166,63,.97)) !important;
  color: #211707 !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.25) !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: .055em;
  backdrop-filter: blur(8px);
}
.game-grid .game-meta {
  min-height: 52px !important;
  padding: 9px 10px 10px !important;
  gap: 3px !important;
  text-align: left;
  background: #100e15;
}
.game-grid .game-meta strong {
  color: #f8f6f2 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
}
.game-grid .game-meta small { color: #77717f !important; font-size: 8.5px !important; }
.game-grid .favorite-btn {
  top: 8px;
  right: 8px;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 10px;
  background: rgba(8,7,12,.58);
  color: #ece8ef;
  backdrop-filter: blur(10px);
}
.game-grid .favorite-btn:hover,
.game-grid .favorite-btn.active {
  border-color: rgba(226,188,90,.38) !important;
  background: rgba(34,27,15,.78) !important;
  color: #f2cf70 !important;
}
.game-grid .game-badge {
  top: 8px;
  left: 8px;
  padding: 5px 7px;
  border-radius: 8px;
  font-size: 7px !important;
  backdrop-filter: blur(10px);
}

/* Current offers / trust content remains quieter than the game library. */
.additional-offer-grid,
.homepage-trust-zone,
.post-games-referral-cta { --premium-section-line: rgba(255,255,255,.065); }
.homepage-trust-zone {
  border-color: var(--premium-section-line);
  background: linear-gradient(145deg,rgba(17,14,22,.92),rgba(10,9,13,.94));
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.homepage-trust-heading h2 { color: #f7f4ef; }
.homepage-trust-heading p { color: #8d8793; }

/* Footer / drawer / support use the same quiet material language. */
.footer {
  margin-top: 38px;
  padding-top: 24px;
  border-top-color: rgba(255,255,255,.065);
  color: #77717f;
}
.mobile-drawer {
  border-left: 1px solid rgba(255,255,255,.075);
  background: linear-gradient(180deg,#0d0b11,#09080c);
  box-shadow: -20px 0 60px rgba(0,0,0,.36);
}
.mobile-drawer .player-brand-logo { justify-content: flex-start; width: min(180px,60vw); }
.mobile-drawer .player-brand-logo img { width: 165px !important; height: 52px !important; }
.drawer-nav { gap: 5px; }
.drawer-nav a,
.drawer-nav button {
  min-height: 48px;
  border-color: transparent;
  border-radius: 12px;
  color: #a39da8;
  background: transparent;
}
.drawer-nav a:hover,
.drawer-nav button:hover { border-color: rgba(255,255,255,.07); background: rgba(255,255,255,.035); color: #f4f0f5; }
.drawer-actions { border-top-color: rgba(255,255,255,.06); }
.floating-support button {
  min-height: 48px;
  border-radius: 14px !important;
  border-color: rgba(226,188,90,.26) !important;
  background: linear-gradient(135deg,#e9c465,#d3a03d) !important;
  color: #211707 !important;
  box-shadow: 0 12px 30px rgba(0,0,0,.24) !important;
}

/* Modernized auth + player modals without changing hooks/flows. */
.modal {
  border: 1px solid rgba(255,255,255,.085) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 88% 3%, rgba(128,86,217,.07), transparent 32%),
    linear-gradient(150deg,#15121b,#0c0a10 74%) !important;
  box-shadow: 0 38px 100px rgba(0,0,0,.52) !important;
}
.modal-backdrop,
.drawer-backdrop { background: rgba(3,3,6,.72); backdrop-filter: blur(10px); }
.modal-close {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: #c9c3ce;
}
.auth-modal { overflow: hidden; }
.auth-visual {
  border-right: 1px solid rgba(255,255,255,.065);
  background:
    radial-gradient(circle at 52% 28%, rgba(226,188,90,.08), transparent 31%),
    radial-gradient(circle at 70% 84%, rgba(128,86,217,.08), transparent 38%),
    #0f0d13;
}
.auth-visual > img {
  width: min(210px,74%) !important;
  height: 74px !important;
  object-fit: contain;
  filter: none;
}
.auth-visual > span { color: #b8974e; }
.auth-visual h2 { color: #f8f6f2; }
.auth-visual p { color: #8f8995; }
.auth-form-wrap { background: #121018; }
.auth-tabs {
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.025);
}
.auth-tabs button.active {
  background: rgba(226,188,90,.10) !important;
  color: #f4e4b1 !important;
  box-shadow: none !important;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="number"],
.auth-form select,
.auth-form textarea {
  min-height: 50px;
  border-color: rgba(255,255,255,.085);
  border-radius: 14px;
  background: #0d0b11;
  color: #f8f6f2;
}
.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  border-color: rgba(226,188,90,.38) !important;
  box-shadow: 0 0 0 3px rgba(226,188,90,.07) !important;
}
#verifyEmailCode {
  border-color: rgba(226,188,90,.24);
  background: linear-gradient(180deg,#0f0d13,#0b0a0e);
  color: #f3d98d;
}
.verification-resend-block,
.profile-email-safety {
  border-color: rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
}
.verification-trust-note { background: rgba(57,199,131,.055); color: #b9c9bf; }

.site-announcement {
  border-bottom-color: rgba(226,188,90,.12);
  background: linear-gradient(90deg,rgba(20,16,10,.96),rgba(13,11,16,.97));
}
.site-announcement > span { color: #e2bc5a; }

/* Mobile: shorter hero, compact discovery, native-feeling bottom bar. */
@media (max-width: 1080px) {
  .main { margin-left: 0; }
  .topbar { padding-inline: 14px; }
  .mobile-brand.player-header-logo {
    height: 54px;
    width: min(46vw,190px);
  }
  .mobile-brand.player-header-logo .player-header-logo-image { max-height: 54px !important; }
}

@media (max-width: 860px) {
  .content-wrap { padding-inline: 16px; }
  .player-benefits.player-benefits-condensed { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .discovery-bar { flex-direction: column-reverse; align-items: stretch; }
  .search-box { width: 100%; }
  .game-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  :root { --topbar: 62px; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .topbar {
    height: var(--topbar);
    padding: 0 10px;
    background: rgba(8,7,12,.94);
  }
  .topbar .mobile-menu-btn,
  .player-notification-bell,
  .avatar-btn,
  .icon-btn { min-width: 42px; min-height: 42px; }
  .mobile-brand.player-header-logo {
    width: min(52vw,182px);
    max-width: calc(100% - 196px);
    height: 54px;
  }
  .mobile-brand.player-header-logo .player-header-logo-image { max-height: 54px !important; }
  .content-wrap { padding: 10px 12px 32px; }

  .hero-slider {
    min-height: 382px !important;
    border-radius: 20px;
  }
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    padding: 22px 18px 16px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-content: stretch;
  }
  .hero-copy {
    align-self: end;
    max-width: 100%;
    padding-bottom: 22px;
  }
  .hero-copy h1,
  .hero-copy h2 {
    margin: 7px 0 9px;
    font-size: clamp(30px,9.5vw,40px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em;
  }
  .hero-copy p {
    max-width: 96%;
    font-size: 12.5px;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-kicker { font-size: 8.5px; }
  .hero-actions { margin-top: 14px; gap: 8px; }
  .hero-actions button { min-height: 42px; height: 42px; padding-inline: 14px; font-size: 11px; }
  .hero-copy > small,
  .hero-actions + small { display: none; }
  .hero-art { display: none; }
  .hero-controls { bottom: 9px; }
  .hero-slide.hero-mobile-smart-fallback .hero-background-picture { height: 48%; }
  .hero-slide.hero-mobile-smart-fallback .hero-copy { padding-top: 160px; padding-bottom: 20px; }
  .hero-background-shade {
    background:
      linear-gradient(180deg,rgba(5,4,8,.16) 0%,rgba(5,4,8,.28) 36%,rgba(5,4,8,.76) 68%,rgba(5,4,8,.94) 100%),
      linear-gradient(90deg,rgba(5,4,8,.34),rgba(5,4,8,.06));
  }

  .player-benefits.player-benefits-condensed { gap: 7px; margin: 9px 0 13px; }
  .player-benefits-condensed .player-benefit-card {
    min-height: 62px;
    padding: 8px 9px;
    gap: 8px;
    border-radius: 14px;
  }
  .player-benefits-condensed .player-benefit-icon {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
    border-radius: 10px;
    font-size: .9rem;
  }
  .player-benefits-condensed .player-benefit-copy strong { font-size: .76rem; }
  .player-benefits-condensed .player-benefit-copy span { font-size: .62rem; line-height: 1.22; }

  .discovery-bar {
    top: calc(var(--topbar) + 4px);
    margin-top: 9px;
    padding: 6px;
    gap: 6px;
    border-radius: 16px;
  }
  .search-box { height: 44px; border-radius: 13px; }
  .category-scroller { gap: 5px; padding-bottom: 1px; }
  .category-chip { height: 36px; padding: 0 10px; border-radius: 10px; font-size: 9.5px; }
  .category-chip span { font-size: 11px; }
  .main-game-library { padding-top: 17px; }
  .library-summary { margin-bottom: 10px; }
  .library-summary h2 { font-size: 22px; }
  .library-summary > small { font-size: 9px; }

  .game-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px !important; }
  .game-grid .game-card { border-radius: 15px !important; }
  .game-grid .game-card-thumb { aspect-ratio: 4/5 !important; height: auto !important; min-height: 0 !important; padding: 0 !important; }
  .game-grid .game-meta { min-height: 45px !important; padding: 7px 8px 8px !important; }
  .game-grid .game-meta strong { font-size: 10.5px !important; }
  .game-grid .game-meta small { display: block !important; font-size: 7.5px !important; }
  .game-grid .game-overlay { inset: auto 7px 7px 7px !important; }
  .game-grid .play-btn { height: 31px !important; border-radius: 9px !important; font-size: 8px !important; }
  .game-grid .favorite-btn { width: 28px; height: 28px; font-size: 14px; }

  .mobile-bottom-nav {
    right: 8px;
    left: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    height: 66px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 20px;
    background: rgba(12,10,15,.95);
    box-shadow: 0 18px 50px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.025);
    backdrop-filter: blur(22px) saturate(115%);
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-height: 54px;
    gap: 4px;
    border-radius: 14px;
    color: #716b77;
  }
  .mobile-bottom-nav .active {
    background: rgba(226,188,90,.075);
    color: #e2bc5a;
  }
  .mobile-bottom-nav span { font-size: 18px; }
  .mobile-bottom-nav small,
  .mobile-bottom-nav.support-active small { font-size: 7.8px; font-weight: 800; letter-spacing: .01em; }

  .modal { width: calc(100vw - 20px); max-height: calc(100dvh - 22px); border-radius: 22px !important; }
  .auth-form-wrap { padding: 46px 20px 24px; }
}

@media (max-width: 390px) {
  .content-wrap { padding-inline: 10px; }
  .hero-slider { min-height: 366px !important; }
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background { padding-inline: 16px; }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(28px,9.3vw,36px) !important; }
  .hero-slide.hero-mobile-smart-fallback .hero-copy { padding-top: 150px; }
  .player-benefits-condensed .player-benefit-copy strong { font-size: .72rem; }
  .player-benefits-condensed .player-benefit-copy span { font-size: .59rem; }
  .game-grid { gap: 8px !important; }
  .mobile-bottom-nav { right: 6px; left: 6px; }
}

@media (min-width: 861px) {
  .hero-slider { aspect-ratio: 8/3; min-height: 400px; max-height: 500px; }
}

@media (min-width: 1180px) {
  .game-grid { grid-template-columns: repeat(6,minmax(0,1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .game-grid .game-card,
  .game-grid .game-card-thumb > img,
  .category-chip,
  .mobile-bottom-nav a,
  .mobile-bottom-nav button { transition: none !important; }
}

/* =========================================================
   LuckyPlay V12.8.73 — mobile fit + game-art balance
   Refines the existing premium UI without changing backend behavior.
   ========================================================= */

/* Keep desktop hover restrained. */
.game-grid .game-card:hover .game-card-thumb > img {
  transform: scale(1.015);
}

@media (max-width: 760px) {
  /* More usable screen space while keeping native-app safe-area behavior. */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
  }

  /* Compact discovery stack: Search -> horizontal chips -> concise title/count. */
  .discovery-bar {
    top: calc(var(--topbar) + 3px) !important;
    margin-top: 7px !important;
    padding: 5px !important;
    gap: 5px !important;
    border-radius: 15px !important;
  }
  .search-box {
    height: 41px !important;
    border-radius: 12px !important;
  }
  .search-box kbd { display: none !important; }
  .category-scroller {
    gap: 5px !important;
    padding-bottom: 0 !important;
  }
  .category-chip {
    height: 34px !important;
    padding: 0 9px !important;
    border-radius: 10px !important;
    font-size: 9px !important;
  }
  .category-chip span { font-size: 10.5px !important; }

  /* Category-only filtering is already shown by the active chip and title.
     Keep this box available only for search/favorites state via app.js. */
  .filter-state {
    margin-top: 6px !important;
    padding: 7px 9px !important;
    border-radius: 10px !important;
    font-size: 9px !important;
  }
  .filter-state button {
    padding: 5px 7px !important;
    font-size: 8px !important;
  }

  .main-game-library { padding-top: 10px !important; }
  .library-summary {
    margin-bottom: 8px !important;
    align-items: end !important;
  }
  .library-summary .section-kicker { display: none !important; }
  .library-summary h2 {
    font-size: 19px !important;
    line-height: 1.05 !important;
  }
  .library-summary > small {
    font-size: 8.5px !important;
    line-height: 1 !important;
  }

  /* Preserve the 2-column layout, but shorten each media stage ~18%. */
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .game-grid .game-card {
    min-height: 0 !important;
    border-radius: 15px !important;
  }
  .game-grid .game-card-thumb {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 11 / 10 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 50% 42%, rgba(128,86,217,.07), transparent 60%),
      #09080d !important;
  }

  /* Show complete artwork. Portal/game-service marks get a controlled size boost
     so they do not look like tiny avatar icons, while normal posters stay safe. */
  .game-grid .game-card-thumb > img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: scale(1.04) !important;
    transform-origin: center center !important;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,.18));
  }
  .game-grid .portal-game-card .game-card-thumb > img {
    transform: scale(1.20) !important;
  }
  .game-grid .game-card:hover .game-card-thumb > img,
  .game-grid .game-card:focus-within .game-card-thumb > img {
    transform: scale(1.04) !important;
  }
  .game-grid .portal-game-card:hover .game-card-thumb > img,
  .game-grid .portal-game-card:focus-within .game-card-thumb > img {
    transform: scale(1.20) !important;
  }

  /* Only a light lower shade: do not hide logos/artwork. */
  .game-grid .game-card-thumb::after {
    inset: 66% 0 0 !important;
    background: linear-gradient(180deg, transparent, rgba(8,7,12,.08) 45%, rgba(8,7,12,.38)) !important;
  }

  /* Compact, full-width CTA keeps a clear touch target without dominating the card. */
  .game-grid .game-overlay {
    inset: auto 7px 7px 7px !important;
    display: block !important;
    pointer-events: none;
  }
  .game-grid .play-btn {
    width: 100% !important;
    min-width: 0 !important;
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 9px !important;
    border-radius: 10px !important;
    font-size: 8.5px !important;
    box-shadow: 0 6px 16px rgba(0,0,0,.20) !important;
    pointer-events: auto;
  }

  .game-grid .game-meta {
    min-height: 38px !important;
    padding: 5px 8px 6px !important;
    gap: 2px !important;
  }
  .game-grid .game-meta strong {
    font-size: 10.5px !important;
    line-height: 1.12 !important;
  }
  .game-grid .game-meta small {
    display: block !important;
    font-size: 7px !important;
    line-height: 1 !important;
  }
  .game-grid .favorite-btn {
    width: 29px !important;
    height: 29px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
  }
  .game-grid .game-badge {
    top: 7px !important;
    left: 7px !important;
    padding: 4px 6px !important;
    font-size: 7px !important;
  }

  /* Compact support pill: accessible, but never a large card-covering banner. */
  #floatingSupport.floating-support {
    right: 10px !important;
    bottom: calc(72px + env(safe-area-inset-bottom)) !important;
    max-width: calc(100vw - 20px) !important;
    gap: 0 !important;
  }
  #floatingSupport .support-bubble {
    display: none !important;
  }
  #floatingSupport #supportBtn {
    min-width: 88px !important;
    width: auto !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 12px !important;
    border-radius: 12px !important;
    font-size: 0 !important;
    letter-spacing: 0 !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.28) !important;
  }
  #floatingSupport #supportBtn::after {
    content: "SUPPORT";
    font-size: 9px !important;
    font-weight: 950 !important;
    letter-spacing: .02em !important;
  }
  #floatingSupport #supportBtn span {
    display: inline !important;
    margin-right: 5px !important;
    font-size: 9px !important;
    letter-spacing: 0 !important;
  }

  /* Exactly five legitimate mobile destinations. */
  .mobile-bottom-nav,
  .mobile-bottom-nav.support-active {
    right: 7px !important;
    left: 7px !important;
    bottom: calc(7px + env(safe-area-inset-bottom)) !important;
    height: 60px !important;
    padding: 4px !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    border-radius: 18px !important;
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-width: 0 !important;
    min-height: 50px !important;
    padding: 3px 1px !important;
    gap: 3px !important;
    border-radius: 12px !important;
  }
  .mobile-bottom-nav span { font-size: 17px !important; }
  .mobile-bottom-nav small,
  .mobile-bottom-nav.support-active small {
    font-size: 7.8px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
  }

}

@media (max-width: 390px) {
  .content-wrap { padding-inline: 9px !important; }
  .game-grid { gap: 8px !important; }
  .game-grid .game-card-thumb { aspect-ratio: 23 / 21 !important; }
  .game-grid .portal-game-card .game-card-thumb > img,
  .game-grid .portal-game-card:hover .game-card-thumb > img,
  .game-grid .portal-game-card:focus-within .game-card-thumb > img {
    transform: scale(1.18) !important;
  }
  .game-grid .play-btn {
    height: 36px !important;
    min-height: 36px !important;
    font-size: 8.2px !important;
  }
  .game-grid .game-meta {
    min-height: 36px !important;
    padding: 5px 7px !important;
  }
  #floatingSupport #supportBtn {
    min-width: 82px !important;
    height: 38px !important;
    min-height: 38px !important;
    padding-inline: 10px !important;
    font-size: 0 !important;
  }
  #floatingSupport #supportBtn::after { font-size: 8.5px !important; }
}

@media (hover: hover) and (pointer: fine) and (min-width: 761px) {
  .game-grid .game-card:hover .game-card-thumb > img {
    transform: scale(1.02);
  }
}

/* =========================================================
   LuckyPlay V12.8.74 — professional mobile composition
   Calmer, shorter, app-like lobby while preserving all behavior.
   ========================================================= */

@media (max-width: 760px) {
  :root { --topbar: 60px; }

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

  .topbar {
    height: var(--topbar) !important;
    padding-inline: 9px !important;
  }
  .topbar .mobile-menu-btn,
  .player-notification-bell,
  .avatar-btn,
  .icon-btn {
    min-width: 40px !important;
    width: 40px !important;
    min-height: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
  }
  .mobile-brand.player-header-logo {
    width: min(44vw, 158px) !important;
    max-width: calc(100% - 154px) !important;
    height: 46px !important;
  }
  .mobile-brand.player-header-logo .player-header-logo-image {
    max-height: 46px !important;
  }

  .content-wrap {
    padding: 8px 10px 26px !important;
  }

  /* Calm hero: mobile is user-controlled, not auto-rotating. */
  .hero-slider {
    min-height: 268px !important;
    height: 268px !important;
    max-height: 268px !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.025) !important;
  }
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    min-height: 268px !important;
    height: 268px !important;
    padding: 14px 14px 12px !important;
  }
  .hero-copy {
    align-self: end !important;
    max-width: 94% !important;
    padding-bottom: 16px !important;
  }
  .hero-kicker {
    font-size: 7.5px !important;
    letter-spacing: .15em !important;
  }
  .hero-copy h1,
  .hero-copy h2 {
    margin: 5px 0 7px !important;
    max-width: 95% !important;
    font-size: clamp(24px, 7.2vw, 30px) !important;
    line-height: 1.01 !important;
    letter-spacing: -.035em !important;
  }
  .hero-copy p {
    max-width: 92% !important;
    font-size: 10.5px !important;
    line-height: 1.38 !important;
    -webkit-line-clamp: 2 !important;
  }
  .hero-actions {
    margin-top: 9px !important;
    gap: 7px !important;
  }
  .hero-actions button {
    height: 36px !important;
    min-height: 36px !important;
    padding-inline: 12px !important;
    border-radius: 11px !important;
    font-size: 9px !important;
  }
  .hero-controls {
    right: 8px !important;
    bottom: 7px !important;
    padding: 4px 5px !important;
    gap: 4px !important;
    background: rgba(6,5,8,.52) !important;
  }
  .hero-arrow {
    width: 25px !important;
    height: 25px !important;
    font-size: 17px !important;
  }
  .hero-dots button {
    width: 5px !important;
    height: 5px !important;
  }
  .hero-dots button.active { width: 16px !important; }
  .hero-slide.hero-mobile-smart-fallback .hero-background-picture { height: 44% !important; }
  .hero-slide.hero-mobile-smart-fallback .hero-copy {
    padding-top: 92px !important;
    padding-bottom: 14px !important;
  }
  .hero-background-shade {
    background:
      linear-gradient(180deg,rgba(5,4,8,.08) 0%,rgba(5,4,8,.16) 32%,rgba(5,4,8,.68) 66%,rgba(5,4,8,.94) 100%),
      linear-gradient(90deg,rgba(5,4,8,.24),rgba(5,4,8,.03)) !important;
  }

  /* One quiet, horizontally scrollable trust strip instead of a 2x2 block. */
  .player-benefits.player-benefits-condensed {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 6px !important;
    margin: 7px 0 8px !important;
    padding: 0 0 2px !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .player-benefits.player-benefits-condensed::-webkit-scrollbar { display: none; }
  .player-benefits-condensed .player-benefit-card {
    flex: 0 0 148px !important;
    min-height: 48px !important;
    padding: 6px 8px !important;
    gap: 7px !important;
    border-radius: 12px !important;
    scroll-snap-align: start;
    box-shadow: none !important;
  }
  body.has-promo-offers .player-benefits-condensed .player-benefit-card:first-child {
    display: none !important;
  }
  .player-benefits-condensed .player-benefit-icon {
    flex-basis: 27px !important;
    width: 27px !important;
    height: 27px !important;
    border-radius: 9px !important;
    font-size: .78rem !important;
  }
  .player-benefits-condensed .player-benefit-copy {
    gap: 1px !important;
  }
  .player-benefits-condensed .player-benefit-copy strong {
    font-size: 9.5px !important;
    line-height: 1.08 !important;
    white-space: nowrap;
  }
  .player-benefits-condensed .player-benefit-copy span {
    font-size: 7.4px !important;
    line-height: 1.12 !important;
    white-space: nowrap;
  }

  /* Admin-configured offers stay visible but become a compact premium rail. */
  .additional-offers {
    margin-top: 7px !important;
  }
  .additional-offer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }
  .promo-offer-card {
    min-height: 64px !important;
    padding: 8px 9px !important;
    grid-template-columns: 34px minmax(0,1fr) auto !important;
    gap: 8px !important;
    border-radius: 14px !important;
    background:
      radial-gradient(circle at 92% 12%,rgba(128,86,217,.09),transparent 32%),
      linear-gradient(145deg,rgba(20,16,27,.97),rgba(12,10,16,.98)) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.16) !important;
  }
  .promo-offer-card::after { display: none !important; }
  .promo-offer-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    box-shadow: none !important;
  }
  .promo-offer-copy .section-kicker {
    font-size: 6.5px !important;
    letter-spacing: .13em !important;
  }
  .promo-offer-copy h2 {
    margin: 2px 0 2px !important;
    font-size: 13px !important;
    line-height: 1.05 !important;
    letter-spacing: -.02em !important;
  }
  .promo-offer-copy p {
    display: -webkit-box !important;
    margin: 0 !important;
    overflow: hidden !important;
    font-size: 8px !important;
    line-height: 1.2 !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .promo-offer-copy small { display: none !important; }
  .promo-offer-button {
    grid-column: auto !important;
    align-self: center !important;
    width: auto !important;
    min-width: 82px !important;
    min-height: 34px !important;
    height: 34px !important;
    padding: 0 9px !important;
    border-radius: 10px !important;
    font-size: 7.5px !important;
    white-space: nowrap;
    box-shadow: none !important;
  }

  /* Discovery no longer floats over the screen on phones. */
  .discovery-bar {
    position: static !important;
    top: auto !important;
    z-index: auto !important;
    margin: 8px 0 0 !important;
    padding: 0 !important;
    gap: 5px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .search-box {
    height: 40px !important;
    padding-inline: 11px !important;
    border-radius: 12px !important;
    background: #100e15 !important;
  }
  .category-scroller {
    gap: 4px !important;
    padding: 0 0 1px !important;
  }
  .category-chip {
    height: 31px !important;
    padding: 0 8px !important;
    border-radius: 9px !important;
    font-size: 8.6px !important;
  }
  .category-chip span { font-size: 10px !important; }
  .filter-state {
    margin-top: 5px !important;
    padding: 6px 8px !important;
  }

  .main-game-library {
    padding-top: 9px !important;
    scroll-margin-top: 68px !important;
  }
  .library-summary {
    min-height: 26px !important;
    margin-bottom: 7px !important;
  }
  .library-summary h2 {
    font-size: 18px !important;
    letter-spacing: -.025em !important;
  }
  .library-summary > small {
    font-size: 8px !important;
  }

  /* Compact two-column cards with calmer gold treatment. */
  .game-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 8px !important;
  }
  .game-grid .game-card,
  .game-grid .game-card:hover,
  .game-grid .game-card:focus-within {
    transform: none !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.02) !important;
  }
  .game-grid .game-card-thumb {
    aspect-ratio: 6 / 5 !important;
    border-radius: 13px 13px 0 0 !important;
  }
  .game-grid .game-card-thumb > img,
  .game-grid .game-card:hover .game-card-thumb > img,
  .game-grid .game-card:focus-within .game-card-thumb > img {
    object-fit: contain !important;
    object-position: center center !important;
    transform: scale(1.08) !important;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.16)) !important;
  }
  .game-grid .portal-game-card .game-card-thumb > img,
  .game-grid .portal-game-card:hover .game-card-thumb > img,
  .game-grid .portal-game-card:focus-within .game-card-thumb > img {
    transform: scale(1.12) !important;
  }
  .game-grid .game-card-thumb::after {
    inset: 70% 0 0 !important;
    background: linear-gradient(180deg,transparent,rgba(8,7,12,.30)) !important;
  }
  .game-grid .game-overlay {
    inset: auto 6px 6px 6px !important;
  }
  .game-grid .play-btn {
    height: 34px !important;
    min-height: 34px !important;
    border: 1px solid rgba(226,188,90,.30) !important;
    border-radius: 9px !important;
    background: rgba(226,188,90,.10) !important;
    color: #efd37f !important;
    box-shadow: none !important;
    font-size: 8px !important;
    letter-spacing: .045em !important;
    backdrop-filter: blur(7px);
  }
  .game-grid .game-meta {
    min-height: 34px !important;
    padding: 5px 7px !important;
    gap: 1px !important;
  }
  .game-grid .game-meta strong {
    font-size: 10px !important;
    line-height: 1.08 !important;
  }
  .game-grid .game-meta small {
    font-size: 6.8px !important;
  }
  .game-grid .favorite-btn {
    width: 28px !important;
    height: 28px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
  }
  .game-grid .game-badge {
    top: 6px !important;
    left: 6px !important;
    padding: 3px 5px !important;
    font-size: 6.5px !important;
  }

  /* One small support action above the nav, never a banner over content. */
  #floatingSupport.floating-support {
    right: 10px !important;
    bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    width: 48px !important;
    max-width: 48px !important;
  }
  #floatingSupport .support-bubble { display: none !important; }
  #floatingSupport #supportBtn {
    min-width: 48px !important;
    width: 48px !important;
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    font-size: 0 !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.30) !important;
  }
  #floatingSupport #supportBtn::after { content: none !important; }
  #floatingSupport #supportBtn .support-button-icon {
    display: block !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }
  #floatingSupport #supportBtn .support-button-label { display: none !important; }

  .mobile-bottom-nav,
  .mobile-bottom-nav.support-active {
    right: 7px !important;
    left: 7px !important;
    bottom: calc(6px + env(safe-area-inset-bottom)) !important;
    height: 58px !important;
    padding: 4px !important;
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
    border-radius: 17px !important;
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-height: 48px !important;
    height: 48px !important;
    gap: 2px !important;
    border-radius: 11px !important;
  }
  .mobile-bottom-nav span { font-size: 16px !important; }
  .mobile-bottom-nav small,
  .mobile-bottom-nav.support-active small {
    font-size: 7.2px !important;
  }
}

@media (max-width: 390px) {
  .hero-slider,
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    min-height: 252px !important;
    height: 252px !important;
    max-height: 252px !important;
  }
  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(23px, 7.1vw, 28px) !important;
  }
  .player-benefits-condensed .player-benefit-card { flex-basis: 142px !important; }
  .promo-offer-button { min-width: 76px !important; padding-inline: 7px !important; }
  .game-grid { gap: 7px !important; }
  .game-grid .game-card-thumb { aspect-ratio: 6 / 5 !important; }
}


/* =========================================================
   LuckyPlay V12.8.75 — reference-size professional mobile reset
   Uses the proven V12.8.70 mobile game-card density as the sizing baseline,
   while preserving the premium V12.8.71+ visual system and all behavior.
   ========================================================= */

@media (max-width: 760px) {
  /* Keep the phone layout stable and calm. */
  :root { --topbar: 60px; }
  .content-wrap { padding: 8px 10px 26px !important; }

  /* Compact hero: fixed geometry prevents the large, shifting mobile banner. */
  .hero-slider,
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    min-height: 220px !important;
    height: 220px !important;
    max-height: 220px !important;
  }
  .hero-slider {
    border-radius: 16px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.025) !important;
  }
  .hero-slide {
    padding: 12px !important;
    transition: opacity .18s ease !important;
  }
  .hero-copy {
    align-self: end !important;
    max-width: 94% !important;
    padding-bottom: 12px !important;
  }
  .hero-kicker { font-size: 7px !important; letter-spacing: .14em !important; }
  .hero-copy h1,
  .hero-copy h2 {
    margin: 4px 0 6px !important;
    max-width: 95% !important;
    font-size: clamp(22px, 6.6vw, 27px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.035em !important;
  }
  .hero-copy p {
    max-width: 92% !important;
    font-size: 9.5px !important;
    line-height: 1.32 !important;
    -webkit-line-clamp: 2 !important;
  }
  .hero-actions { margin-top: 7px !important; gap: 6px !important; }
  .hero-actions button {
    height: 32px !important;
    min-height: 32px !important;
    padding-inline: 10px !important;
    border-radius: 9px !important;
    font-size: 8.2px !important;
  }
  .hero-controls {
    right: 7px !important;
    bottom: 6px !important;
    padding: 3px 4px !important;
    gap: 3px !important;
  }
  .hero-arrow { width: 23px !important; height: 23px !important; font-size: 15px !important; }
  .hero-dots button { width: 4px !important; height: 4px !important; }
  .hero-dots button.active { width: 13px !important; }
  .hero-slide.hero-mobile-smart-fallback .hero-background-picture { height: 46% !important; }
  .hero-slide.hero-mobile-smart-fallback .hero-copy {
    padding-top: 70px !important;
    padding-bottom: 11px !important;
  }

  /* Fixed four-item trust strip: no scrolling/moving promotional rail. */
  .player-benefits.player-benefits-condensed {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    gap: 5px !important;
    margin: 7px 0 8px !important;
    padding: 0 !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }
  .player-benefits-condensed .player-benefit-card {
    min-width: 0 !important;
    min-height: 50px !important;
    padding: 6px 4px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 3px !important;
    border-radius: 11px !important;
    text-align: center !important;
    box-shadow: none !important;
  }
  .player-benefits-condensed .player-benefit-icon {
    flex: 0 0 22px !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 auto !important;
    border: 0 !important;
    background: transparent !important;
    font-size: 12px !important;
  }
  .player-benefits-condensed .player-benefit-copy { display: block !important; min-width: 0 !important; }
  .player-benefits-condensed .player-benefit-copy strong {
    display: block !important;
    font-size: 8px !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }
  .player-benefits-condensed .player-benefit-copy span { display: none !important; }

  /* Keep the real signup offer visible, but as one restrained banner. */
  .additional-offers { margin: 6px 0 7px !important; }
  .promo-offer-card {
    min-height: 56px !important;
    padding: 7px 8px !important;
    grid-template-columns: 30px minmax(0,1fr) auto !important;
    gap: 7px !important;
    border-radius: 12px !important;
  }
  .promo-offer-icon { width: 30px !important; height: 30px !important; border-radius: 9px !important; font-size: 13px !important; }
  .promo-offer-copy h2 { font-size: 12px !important; }
  .promo-offer-copy p { font-size: 7.5px !important; }
  .promo-offer-button { min-width: 74px !important; height: 31px !important; min-height: 31px !important; font-size: 7px !important; }

  /* Clean discovery surface with no sticky/boxed desktop feel. */
  .discovery-bar {
    position: static !important;
    margin: 7px 0 0 !important;
    padding: 0 !important;
    gap: 5px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .search-box { height: 38px !important; border-radius: 11px !important; }
  .category-scroller { gap: 4px !important; }
  .category-chip { height: 29px !important; padding-inline: 8px !important; border-radius: 8px !important; font-size: 8px !important; }
  .filter-state { margin-top: 4px !important; padding: 5px 7px !important; }

  .main-game-library { padding-top: 8px !important; }
  .library-summary {
    min-height: 23px !important;
    margin-bottom: 6px !important;
    align-items: center !important;
  }
  .library-summary .section-kicker { display: none !important; }
  .library-summary h2 { margin: 0 !important; font-size: 17px !important; }
  .library-summary > small { font-size: 8px !important; }

  /* V12.8.70 reference geometry: compact, recognizable game-service icons. */
  .game-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 9px !important;
  }
  .game-grid .game-card,
  .game-grid .game-card:hover,
  .game-grid .game-card:focus-within {
    --game-icon-size: 86px !important;
    min-height: 188px !important;
    transform: none !important;
    border: 1px solid rgba(255,255,255,.075) !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg,#141119 0%,#0e0c12 100%) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.02) !important;
  }
  .game-grid .game-card-thumb {
    min-height: 142px !important;
    height: 142px !important;
    aspect-ratio: auto !important;
    display: grid !important;
    place-items: center !important;
    padding: 11px 8px 42px !important;
    overflow: hidden !important;
    border-radius: 13px 13px 0 0 !important;
    background:
      radial-gradient(circle at 50% 42%,rgba(226,188,90,.06),transparent 48%),
      #0d0b11 !important;
  }
  .game-grid .game-card-thumb > img,
  .game-grid .portal-game-card .game-card-thumb > img,
  .game-grid .game-card:hover .game-card-thumb > img,
  .game-grid .game-card:focus-within .game-card-thumb > img,
  .game-grid .portal-game-card:hover .game-card-thumb > img,
  .game-grid .portal-game-card:focus-within .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: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    filter: none !important;
    border: 1px solid rgba(226,188,90,.22) !important;
    border-radius: 50% !important;
    background: #0b0910 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.32), 0 0 0 3px rgba(255,255,255,.018) !important;
  }
  .game-grid .game-card-thumb::after {
    inset: auto 0 0 !important;
    height: 44px !important;
    background: linear-gradient(180deg,transparent,rgba(7,6,10,.30)) !important;
  }
  .game-grid .game-overlay { inset: auto 8px 7px 8px !important; }
  .game-grid .play-btn {
    width: 100% !important;
    height: 32px !important;
    min-height: 32px !important;
    padding: 0 8px !important;
    border: 1px solid rgba(226,188,90,.25) !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg,rgba(226,188,90,.16),rgba(220,166,63,.08)) !important;
    color: #e9ca74 !important;
    box-shadow: none !important;
    font-size: 8.5px !important;
    letter-spacing: .04em !important;
    backdrop-filter: none !important;
    transform: none !important;
  }
  .game-grid .game-meta {
    min-height: 44px !important;
    padding: 7px 8px 8px !important;
    gap: 1px !important;
    text-align: center !important;
  }
  .game-grid .game-meta strong { font-size: 11.5px !important; line-height: 1.12 !important; }
  .game-grid .game-meta small { display: block !important; font-size: 7.5px !important; line-height: 1 !important; }
  .game-grid .favorite-btn { width: 27px !important; height: 27px !important; border-radius: 8px !important; font-size: 13px !important; }
  .game-grid .game-badge { top: 7px !important; left: 7px !important; padding: 3px 5px !important; font-size: 6.5px !important; }

  /* Small, quiet support affordance above a slim five-item nav. */
  #floatingSupport.floating-support {
    right: 9px !important;
    bottom: calc(66px + env(safe-area-inset-bottom)) !important;
    width: 44px !important;
    max-width: 44px !important;
  }
  #floatingSupport .support-bubble { display: none !important; }
  #floatingSupport #supportBtn {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.28) !important;
  }
  #floatingSupport #supportBtn .support-button-icon { font-size: 15px !important; }
  #floatingSupport #supportBtn .support-button-label { display: none !important; }

  .mobile-bottom-nav,
  .mobile-bottom-nav.support-active {
    right: 7px !important;
    left: 7px !important;
    bottom: calc(6px + env(safe-area-inset-bottom)) !important;
    height: 56px !important;
    padding: 3px !important;
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
    border-radius: 16px !important;
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-height: 46px !important;
    height: 46px !important;
    padding: 2px 1px !important;
    gap: 2px !important;
    border-radius: 10px !important;
  }
  .mobile-bottom-nav span { font-size: 15px !important; }
  .mobile-bottom-nav small,
  .mobile-bottom-nav.support-active small { font-size: 7px !important; }
}

@media (max-width: 420px) {
  .hero-slider,
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    min-height: 210px !important;
    height: 210px !important;
    max-height: 210px !important;
  }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(21px,6.4vw,25px) !important; }
  .hero-copy p { font-size: 9px !important; }

  .game-grid { gap: 8px !important; }
  .game-grid .game-card,
  .game-grid .game-card:hover,
  .game-grid .game-card:focus-within {
    --game-icon-size: 78px !important;
    min-height: 176px !important;
  }
  .game-grid .game-card-thumb {
    min-height: 132px !important;
    height: 132px !important;
    padding: 9px 7px 39px !important;
  }
  .game-grid .game-overlay { inset: auto 7px 6px 7px !important; }
  .game-grid .play-btn { height: 30px !important; min-height: 30px !important; font-size: 8.2px !important; }
  .game-grid .game-meta { min-height: 42px !important; padding: 6px 7px 7px !important; }
  .game-grid .game-meta strong { font-size: 11px !important; }
}

@media (max-width: 350px) {
  .content-wrap { padding-inline: 8px !important; }
  .hero-slider,
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    min-height: 200px !important;
    height: 200px !important;
    max-height: 200px !important;
  }
  .player-benefits.player-benefits-condensed { gap: 4px !important; }
  .player-benefits-condensed .player-benefit-card { min-height: 48px !important; padding-inline: 2px !important; }
  .player-benefits-condensed .player-benefit-copy strong { font-size: 7.4px !important; }
  .game-grid { gap: 7px !important; }
  .game-grid .game-card,
  .game-grid .game-card:hover,
  .game-grid .game-card:focus-within {
    --game-icon-size: 72px !important;
    min-height: 168px !important;
  }
  .game-grid .game-card-thumb { min-height: 126px !important; height: 126px !important; padding-bottom: 37px !important; }
  .game-grid .play-btn { height: 28px !important; min-height: 28px !important; }
  .game-grid .game-meta { min-height: 40px !important; }
  .game-grid .game-meta strong { font-size: 10px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none !important; }
}


/* =========================================================
   LuckyPlay V12.8.76 — static mobile hero + overscroll stability
   Keeps V12.8.75 card sizing unchanged while preventing accidental
   pull-to-refresh movement and all mobile Hero slide/fade motion.
   ========================================================= */

@media (max-width: 760px) {
  html,
  body {
    overscroll-behavior-y: none !important;
  }

  body,
  .app-shell,
  .main {
    overscroll-behavior-y: none !important;
  }

  .hero-slider {
    overscroll-behavior: none !important;
    touch-action: pan-y pinch-zoom !important;
  }

  .hero-slide {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .hero-slide:not(:first-child) {
    display: none !important;
  }

  #heroSlider:not(.hero-loading) .hero-slide:first-child {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .hero-controls {
    display: none !important;
  }

  .hero-background-media,
  .hero-background-picture,
  .hero-background-image,
  .hero-background-blur,
  .hero-background-shade,
  .hero-copy,
  .hero-actions {
    animation: none !important;
    transition: none !important;
  }

  #heroSlider.hero-loading {
    background: #0c0910 !important;
  }

  #heroSlider.hero-loading::before {
    animation: none !important;
    background: radial-gradient(circle at 50% 42%, rgba(116, 64, 154, .08), transparent 42%) !important;
  }
}



.recent-winner-card.is-empty {
  grid-template-columns: 44px minmax(0,1fr) auto;
  opacity: .88;
}
.recent-winner-card.is-empty .recent-winner-copy small { margin-top: 4px; }
.recent-winner-card.is-empty .recent-winner-status { color: #c9a84e; }

/* =========================================================
   LuckyPlay V12.8.77 — preserve all Hero banners on mobile
   Mobile Hero remains motionless unless the player taps an arrow/dot.
   Restores access to every configured Hero banner, keeps the Signup Bonus
   promotion visible, and preserves Recent Winners / Cashout Proof behavior.
   ========================================================= */

@media (max-width: 760px) {
  /* Keep every configured Hero slide available without autoplay or animation. */
  .hero-slider .hero-slide:not(:first-child) {
    display: grid !important;
  }

  #heroSlider:not(.hero-loading) .hero-slide,
  #heroSlider:not(.hero-loading) .hero-slide:first-child {
    display: grid !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  #heroSlider:not(.hero-loading) .hero-slide:not(.active),
  #heroSlider:not(.hero-loading) .hero-slide:first-child:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  #heroSlider:not(.hero-loading) .hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Manual controls only: visible when there is more than one banner. */
  .hero-controls:not([hidden]) {
    display: flex !important;
  }
  .hero-controls.single-slide {
    display: none !important;
  }

  /* Do not suppress the Signup Bonus trust card when the full offer is present. */
  body.has-promo-offers .player-benefits-condensed .player-benefit-card:first-child {
    display: flex !important;
  }
}

/* =========================================================
   LuckyPlay V12.8.78 — editorial Hero + 2x2 benefit grid
   Approved reference direction: dark editorial carousel, restrained gold,
   one Signup Bonus benefit placement, compact Recent Winners, and unchanged
   V12.8.75 game-card geometry / Cashout Proof behavior.
   ========================================================= */

/* Editorial Hero: LuckyPlay content remains the content; only the presentation changes. */
.hero {
  position: relative;
}
.hero-slider {
  min-height: 400px;
  border: 1px solid rgba(255,255,255,.075) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 88% 12%,rgba(117,70,160,.10),transparent 36%),
    radial-gradient(circle at 8% 100%,rgba(226,188,90,.045),transparent 34%),
    linear-gradient(145deg,#0b0910,#100c17 68%,#0b0910) !important;
  box-shadow: 0 22px 54px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.026) !important;
}
.hero-slide,
.hero-slide-one,
.hero-slide-two,
.hero-slide-three {
  grid-template-columns: minmax(0,1fr) !important;
  align-items: start !important;
  padding: clamp(38px,4.2vw,58px) clamp(34px,4vw,58px) 86px !important;
  background:
    radial-gradient(circle at 84% 16%,rgba(110,67,150,.095),transparent 35%),
    radial-gradient(circle at 12% 95%,rgba(226,188,90,.035),transparent 32%),
    linear-gradient(145deg,rgba(10,8,14,.985),rgba(16,12,23,.985)) !important;
}
.hero .hero-art {
  display: none !important;
}
.hero-background-media {
  z-index: 0 !important;
  opacity: .14 !important;
  filter: saturate(.55) contrast(1.04) !important;
}
.hero-background-blur {
  display: none !important;
}
.hero-background-picture,
.hero-background-image {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.hero-background-image {
  object-fit: cover !important;
  object-position: center !important;
}
.hero-background-shade {
  background:
    linear-gradient(90deg,rgba(7,6,10,.96) 0%,rgba(8,7,12,.91) 49%,rgba(9,7,13,.76) 100%),
    linear-gradient(180deg,rgba(8,7,12,.26),rgba(8,7,12,.82)) !important;
}
.hero-copy {
  align-self: start !important;
  max-width: 760px !important;
  padding: 0 !important;
}
.hero-font-luckyplay .hero-copy h1,
.hero-font-luckyplay .hero-copy h2,
.hero-font-modern .hero-copy h1,
.hero-font-modern .hero-copy h2,
.hero-font-condensed .hero-copy h1,
.hero-font-condensed .hero-copy h2,
.hero-font-strong .hero-copy h1,
.hero-font-strong .hero-copy h2,
.hero-font-elegant .hero-copy h1,
.hero-font-elegant .hero-copy h2 {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -.055em !important;
}
.hero-slide .hero-kicker {
  color: #d8ad4e !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
}
.hero-slide .hero-copy h1,
.hero-slide .hero-copy h2 {
  max-width: 720px !important;
  margin: 13px 0 15px !important;
  color: #fbfaf8 !important;
  font-size: clamp(44px,5vw,66px) !important;
  line-height: .98 !important;
  text-shadow: none !important;
}
.hero-slide .hero-copy p {
  max-width: 640px !important;
  color: #aaa5b0 !important;
  font-size: 15px !important;
  line-height: 1.56 !important;
}
.hero-actions {
  margin-top: 23px !important;
  gap: 10px !important;
}
.hero-actions button {
  min-height: 46px !important;
  padding-inline: 20px !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}
.hero-actions + small,
.hero-copy > small {
  margin-top: 16px !important;
  color: #77727d !important;
  font-size: 10px !important;
}
.hero-controls,
.hero-controls:not([hidden]) {
  right: auto !important;
  left: 50% !important;
  bottom: 20px !important;
  display: flex !important;
  padding: 5px !important;
  gap: 6px !important;
  border: 1px solid rgba(255,255,255,.075) !important;
  border-radius: 999px !important;
  background: rgba(9,7,12,.86) !important;
  box-shadow: 0 9px 24px rgba(0,0,0,.20), inset 0 1px rgba(255,255,255,.025) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transform: translateX(-50%) !important;
}
.hero-controls[hidden],
.hero-controls.single-slide {
  display: none !important;
}
.hero-arrow {
  width: 34px !important;
  height: 34px !important;
  border: 1px solid transparent !important;
  background: rgba(255,255,255,.055) !important;
  color: #d7d2dc !important;
  font-size: 22px !important;
}
.hero-arrow:hover {
  border-color: rgba(226,188,90,.17) !important;
  background: rgba(226,188,90,.07) !important;
  color: #f0cf76 !important;
}
.hero-dots {
  gap: 6px !important;
}
.hero-dots button {
  width: 6px !important;
  height: 6px !important;
  background: rgba(255,255,255,.26) !important;
  transition: none !important;
}
.hero-dots button.active {
  width: 22px !important;
  background: #dcb450 !important;
}

/* Premium benefits: four values, one canonical Signup Bonus placement. */
.player-benefits.player-benefits-condensed {
  display: grid !important;
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  gap: 10px !important;
  margin: 14px 0 18px !important;
  padding: 0 !important;
  overflow: visible !important;
}
.player-benefits-condensed .player-benefit-card,
body.has-promo-offers .player-benefits-condensed .player-benefit-card:first-child {
  min-width: 0 !important;
  min-height: 82px !important;
  padding: 14px 15px !important;
  display: grid !important;
  grid-template-columns: 34px minmax(0,1fr) !important;
  align-items: center !important;
  gap: 11px !important;
  border: 1px solid rgba(255,255,255,.075) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 90% 0%,rgba(112,70,155,.055),transparent 42%),
    linear-gradient(145deg,rgba(18,15,24,.97),rgba(11,9,15,.985)) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,.12), inset 0 1px rgba(255,255,255,.022) !important;
  text-align: left !important;
}
.player-benefits-condensed .player-benefit-card::before {
  display: none !important;
}
.player-benefits-condensed .player-benefit-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  flex-basis: 34px !important;
  margin: 0 !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #e1ba58 !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: none !important;
}
.player-benefits-condensed .player-benefit-copy {
  min-width: 0 !important;
  display: grid !important;
  gap: 4px !important;
}
.player-benefits-condensed .player-benefit-copy strong {
  display: block !important;
  color: #f7f5f1 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1.12 !important;
  white-space: normal !important;
}
.player-benefits-condensed .player-benefit-copy span {
  display: block !important;
  color: #8f8995 !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  white-space: normal !important;
}

/* Recent Winners remains, but without the duplicate parent heading/card treatment. */
.homepage-trust-zone {
  margin: 12px 0 14px !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.homepage-trust-zone .homepage-trust-heading {
  display: none !important;
}
.homepage-trust-zone .recent-winners-section {
  margin: 0 !important;
  padding: 12px !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 17px !important;
  background:
    radial-gradient(circle at 92% 0%,rgba(226,188,90,.045),transparent 36%),
    linear-gradient(145deg,rgba(17,14,23,.97),rgba(10,9,14,.985)) !important;
  box-shadow: none !important;
}

/* Search first, then the category rail, matching the approved mobile composition. */
@media (max-width: 760px) {
  .content-wrap {
    padding: 10px 10px 28px !important;
  }

  .hero-slider,
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    min-height: 338px !important;
    height: 338px !important;
    max-height: 338px !important;
  }
  .hero-slider {
    border-radius: 19px !important;
  }
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    padding: 29px 24px 72px !important;
    align-items: start !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .hero-copy,
  .hero-slide.hero-mobile-smart-fallback .hero-copy,
  .has-custom-hero-background .hero-copy,
  .has-mobile-hero-background .hero-copy {
    align-self: start !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .hero-background-media,
  .hero-background-picture,
  .hero-background-image,
  .hero-background-shade,
  .hero-copy,
  .hero-actions {
    animation: none !important;
    transition: none !important;
  }
  .hero-background-media,
  .hero-slide.hero-mobile-smart-fallback .hero-background-media {
    display: block !important;
    opacity: .12 !important;
  }
  .hero-slide.hero-mobile-smart-fallback .hero-background-picture {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
  }
  .hero-background-shade,
  .hero-slide.hero-mobile-smart-fallback .hero-background-shade {
    background:
      linear-gradient(90deg,rgba(7,6,10,.97) 0%,rgba(8,7,12,.91) 55%,rgba(10,8,14,.78) 100%),
      linear-gradient(180deg,rgba(8,7,12,.26),rgba(8,7,12,.84)) !important;
  }
  .hero-slide .hero-kicker {
    font-size: 9.5px !important;
    line-height: 1 !important;
    letter-spacing: .15em !important;
  }
  .hero-slide .hero-copy h1,
  .hero-slide .hero-copy h2,
  .hero-slide.hero-mobile-smart-fallback .hero-copy h1,
  .hero-slide.hero-mobile-smart-fallback .hero-copy h2 {
    margin: 12px 0 13px !important;
    max-width: 94% !important;
    font-size: clamp(31px,8.6vw,38px) !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
  }
  .hero-slide .hero-copy p,
  .hero-slide.hero-mobile-smart-fallback .hero-copy p {
    display: block !important;
    max-width: 96% !important;
    margin: 0 !important;
    overflow: visible !important;
    color: #aaa5b0 !important;
    font-size: 12.5px !important;
    line-height: 1.47 !important;
    -webkit-line-clamp: unset !important;
  }
  .hero-actions {
    margin-top: 19px !important;
    gap: 8px !important;
  }
  .hero-actions button {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
    font-size: 10.5px !important;
    font-weight: 850 !important;
  }
  .hero-actions + small,
  .hero-copy > small {
    margin-top: 14px !important;
    font-size: 9px !important;
    line-height: 1.3 !important;
  }
  .hero-controls:not([hidden]) {
    left: 50% !important;
    right: auto !important;
    bottom: 15px !important;
    display: flex !important;
    padding: 4px !important;
    gap: 5px !important;
    transform: translateX(-50%) !important;
  }
  .hero-arrow {
    width: 34px !important;
    height: 34px !important;
    font-size: 21px !important;
  }
  .hero-dots button {
    width: 6px !important;
    height: 6px !important;
  }
  .hero-dots button.active {
    width: 22px !important;
  }

  .player-benefits.player-benefits-condensed {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 8px !important;
    margin: 9px 0 11px !important;
  }
  .player-benefits-condensed .player-benefit-card,
  body.has-promo-offers .player-benefits-condensed .player-benefit-card:first-child {
    min-height: 78px !important;
    padding: 11px 10px !important;
    grid-template-columns: 30px minmax(0,1fr) !important;
    gap: 9px !important;
    border-radius: 15px !important;
  }
  .player-benefits-condensed .player-benefit-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    flex-basis: 30px !important;
    font-size: 17px !important;
  }
  .player-benefits-condensed .player-benefit-copy strong {
    font-size: 12px !important;
    line-height: 1.12 !important;
  }
  .player-benefits-condensed .player-benefit-copy span {
    display: block !important;
    font-size: 9.3px !important;
    line-height: 1.22 !important;
  }

  .homepage-trust-zone {
    margin: 10px 0 10px !important;
  }
  .homepage-trust-zone .recent-winners-section {
    padding: 10px !important;
    border-radius: 15px !important;
  }

  .discovery-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    margin-top: 9px !important;
  }
  .discovery-bar .search-box {
    order: -1 !important;
    width: 100% !important;
    max-width: none !important;
    height: 44px !important;
    border-radius: 13px !important;
  }
  .discovery-bar .category-scroller {
    order: 0 !important;
    width: 100% !important;
    gap: 5px !important;
  }
  .discovery-bar .category-chip {
    height: 34px !important;
    padding-inline: 10px !important;
    border-radius: 10px !important;
    font-size: 9px !important;
  }
}

@media (max-width: 420px) {
  .hero-slider,
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    min-height: 326px !important;
    height: 326px !important;
    max-height: 326px !important;
  }
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    padding: 25px 20px 68px !important;
  }
  .hero-slide .hero-copy h1,
  .hero-slide .hero-copy h2,
  .hero-slide.hero-mobile-smart-fallback .hero-copy h1,
  .hero-slide.hero-mobile-smart-fallback .hero-copy h2 {
    max-width: 96% !important;
    font-size: clamp(30px,8.3vw,35px) !important;
  }
  .hero-slide .hero-copy p,
  .hero-slide.hero-mobile-smart-fallback .hero-copy p {
    font-size: 11.8px !important;
  }
  .hero-actions { margin-top: 17px !important; }
  .hero-actions button {
    min-height: 40px !important;
    height: 40px !important;
    padding-inline: 14px !important;
    font-size: 10px !important;
  }
  .player-benefits.player-benefits-condensed {
    gap: 7px !important;
  }
  .player-benefits-condensed .player-benefit-card,
  body.has-promo-offers .player-benefits-condensed .player-benefit-card:first-child {
    min-height: 74px !important;
    padding: 10px 9px !important;
    grid-template-columns: 27px minmax(0,1fr) !important;
    gap: 8px !important;
  }
  .player-benefits-condensed .player-benefit-icon {
    width: 27px !important;
    height: 27px !important;
    min-width: 27px !important;
    flex-basis: 27px !important;
    font-size: 15px !important;
  }
  .player-benefits-condensed .player-benefit-copy strong { font-size: 11.2px !important; }
  .player-benefits-condensed .player-benefit-copy span { font-size: 8.7px !important; }
}

@media (max-width: 360px) {
  .hero-slider,
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    min-height: 310px !important;
    height: 310px !important;
    max-height: 310px !important;
  }
  .hero-slide,
  .hero-slide.has-custom-hero-background,
  .hero-slide.has-mobile-hero-background {
    padding: 22px 17px 64px !important;
  }
  .hero-slide .hero-copy h1,
  .hero-slide .hero-copy h2,
  .hero-slide.hero-mobile-smart-fallback .hero-copy h1,
  .hero-slide.hero-mobile-smart-fallback .hero-copy h2 {
    font-size: clamp(27px,8.1vw,31px) !important;
  }
  .hero-slide .hero-copy p,
  .hero-slide.hero-mobile-smart-fallback .hero-copy p { font-size: 10.7px !important; }
  .hero-actions button { padding-inline: 12px !important; font-size: 9.4px !important; }
  .player-benefits-condensed .player-benefit-card,
  body.has-promo-offers .player-benefits-condensed .player-benefit-card:first-child {
    min-height: 70px !important;
    padding: 9px 7px !important;
    grid-template-columns: 24px minmax(0,1fr) !important;
    gap: 6px !important;
  }
  .player-benefits-condensed .player-benefit-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    flex-basis: 24px !important;
    font-size: 14px !important;
  }
  .player-benefits-condensed .player-benefit-copy strong { font-size: 10.2px !important; }
  .player-benefits-condensed .player-benefit-copy span { font-size: 8px !important; }
}


/* =========================================================
   LuckyPlay V12.8.80 — smooth Hero autoplay + mobile swipe
   Auto-rotates enabled Admin Hero banners every 6 seconds with a
   soft opacity-only crossfade. Manual arrows, dots and mobile swipe
   pause autoplay briefly. Overscroll/pull-to-refresh protection stays.
   ========================================================= */

.hero-slide,
.hero-slide.active {
  transform: none !important;
  animation: none !important;
  transition: opacity 520ms cubic-bezier(.22,.61,.36,1) !important;
  will-change: opacity;
}

.hero-slide { z-index: 1; }
.hero-slide.active { z-index: 2; }

@media (max-width: 760px) {
  html,
  body,
  body .app-shell,
  body .main {
    overscroll-behavior-y: none !important;
  }

  .hero-slider {
    overscroll-behavior: none !important;
    touch-action: pan-y pinch-zoom !important;
  }

  #heroSlider:not(.hero-loading) .hero-slide,
  #heroSlider:not(.hero-loading) .hero-slide:first-child,
  #heroSlider:not(.hero-loading) .hero-slide:not(.active),
  #heroSlider:not(.hero-loading) .hero-slide:first-child:not(.active) {
    display: grid !important;
    visibility: visible !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transform: none !important;
    transition: opacity 520ms cubic-bezier(.22,.61,.36,1) !important;
  }

  #heroSlider:not(.hero-loading) .hero-slide.active,
  #heroSlider:not(.hero-loading) .hero-slide:first-child.active {
    visibility: visible !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-background-media,
  .hero-background-picture,
  .hero-background-image,
  .hero-background-blur,
  .hero-background-shade,
  .hero-copy,
  .hero-actions {
    animation: none !important;
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  #heroSlider:not(.hero-loading) .hero-slide {
    transition: none !important;
  }
}

/* =========================================================
   LuckyPlay V12.8.81 — Admin Hero image visibility fix
   Keep the V12.8.80 autoplay/fade behavior, but actually surface the
   desktop/mobile images saved in Admin instead of burying them under the
   editorial background treatment. Admin fit/position controls are honored.
   ========================================================= */
.hero-slide.has-custom-hero-background .hero-background-media,
.hero-slide.has-mobile-hero-background .hero-background-media {
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
}

.hero-slide.has-custom-hero-background .hero-background-image,
.hero-slide.has-mobile-hero-background .hero-background-image {
  opacity: 1 !important;
  object-fit: var(--hero-desktop-fit, cover) !important;
  object-position: var(--hero-desktop-position, center) !important;
  filter: saturate(.9) contrast(1.03) brightness(.74) !important;
}

.hero-slide.has-custom-hero-background .hero-background-shade,
.hero-slide.has-mobile-hero-background .hero-background-shade {
  background:
    linear-gradient(90deg,rgba(7,6,10,.88) 0%,rgba(8,7,12,.72) 46%,rgba(9,7,13,.34) 100%),
    linear-gradient(180deg,rgba(8,7,12,.06) 0%,rgba(8,7,12,.18) 55%,rgba(8,7,12,.50) 100%) !important;
}

@media (max-width: 760px) {
  .hero-slide.has-custom-hero-background .hero-background-image,
  .hero-slide.has-mobile-hero-background .hero-background-image {
    object-fit: var(--hero-mobile-fit, cover) !important;
    object-position: var(--hero-mobile-position, center center) !important;
    filter: saturate(.92) contrast(1.03) brightness(.70) !important;
  }

  .hero-slide.has-custom-hero-background .hero-background-shade,
  .hero-slide.has-mobile-hero-background .hero-background-shade,
  .hero-slide.hero-mobile-smart-fallback .hero-background-shade {
    background:
      linear-gradient(90deg,rgba(7,6,10,.84) 0%,rgba(8,7,12,.67) 58%,rgba(10,8,14,.38) 100%),
      linear-gradient(180deg,rgba(8,7,12,.08) 0%,rgba(8,7,12,.17) 50%,rgba(8,7,12,.54) 100%) !important;
  }
}

/* =========================================================
   LuckyPlay V12.8.82 — support visibility refinement
   Make Support easy to spot without returning to an oversized overlay,
   and surface the existing Live Support flow inside Contact Support.
   ========================================================= */
.support-channel-live-support {
  --channel: #d2a7ff;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background:
    radial-gradient(circle at 92% 10%, rgba(187, 123, 255, .14), transparent 34%),
    linear-gradient(145deg, rgba(92, 48, 141, .18), rgba(255,255,255,.025));
  border-color: rgba(195, 143, 255, .28);
}
.support-channel-live-support .support-channel-icon {
  color: #d5b1ff;
  border-color: rgba(205, 163, 255, .34);
  background: rgba(124, 72, 183, .18);
}
.support-channel-live-support .support-channel-icon svg {
  fill: currentColor;
  stroke: currentColor;
}
.support-live-tail {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #dfc4ff;
}
.support-live-tail i {
  font-style: normal;
  font-size: 18px;
  line-height: 1;
}
.support-live-tail .support-unread-badge {
  flex: 0 0 auto;
}

#floatingSupport #supportBtn .support-button-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}

@media (max-width: 760px) {
  /* Compact pill: clearly visible, but small enough not to cover game cards. */
  #floatingSupport.floating-support {
    right: 10px !important;
    bottom: calc(68px + env(safe-area-inset-bottom)) !important;
    width: 104px !important;
    max-width: 104px !important;
  }
  #floatingSupport .support-bubble { display: none !important; }
  #floatingSupport #supportBtn {
    width: 104px !important;
    min-width: 104px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border: 1px solid rgba(255, 221, 124, .48) !important;
    border-radius: 999px !important;
    background: linear-gradient(112deg, #f5ca55, #f09b2d) !important;
    color: #17100b !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.32), 0 0 0 1px rgba(255,205,91,.08) !important;
    font-size: 0 !important;
  }
  #floatingSupport #supportBtn .support-button-icon {
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
    color: #17100b !important;
    font-size: 0 !important;
  }
  #floatingSupport #supportBtn .support-button-icon svg {
    width: 17px !important;
    height: 17px !important;
  }
  #floatingSupport #supportBtn .support-button-label {
    display: block !important;
    margin: 0 !important;
    color: #17100b !important;
    font-size: 9px !important;
    font-weight: 1000 !important;
    letter-spacing: .06em !important;
    line-height: 1 !important;
  }

  .support-channel-live-support {
    min-height: 74px;
  }
  .support-channel-live-support .support-channel-copy small {
    color: #c6b4d8;
  }
}

/* V12.8.83 — Professional UX suite */
/* V12.8.98 — compact Continue Playing quick access.
   Keep the artwork thumbnail-sized even if a stale/global button or image rule is present. */
.quick-access-section{margin:14px 0 18px;padding:14px;border:1px solid rgba(255,255,255,.075);border-radius:18px;background:linear-gradient(145deg,rgba(17,13,24,.94),rgba(10,9,14,.94));box-shadow:0 16px 36px rgba(0,0,0,.18)}
.quick-access-heading{display:flex;align-items:end;justify-content:space-between;gap:12px;margin-bottom:10px}.quick-access-heading h2{margin:2px 0 0;font-size:18px;line-height:1.15}.quick-access-heading button{appearance:none;-webkit-appearance:none;min-width:0;width:auto;border:1px solid rgba(236,190,75,.22);border-radius:999px;background:rgba(236,190,75,.07);color:#c9bd9b;font:800 10px/1 inherit;letter-spacing:.03em;cursor:pointer;padding:7px 10px}.quick-access-heading button:active{transform:translateY(1px)}
.quick-game-rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(180px,1fr);gap:9px;overflow-x:auto;scroll-snap-type:x proximity;padding-bottom:2px;scrollbar-width:none}.quick-game-rail::-webkit-scrollbar{display:none}.quick-game-card{appearance:none;-webkit-appearance:none;scroll-snap-align:start;display:grid;width:100%;max-width:none;grid-template-columns:46px minmax(0,1fr) 12px;align-items:center;gap:10px;min-height:62px;padding:8px 10px;border:1px solid rgba(255,255,255,.07);border-radius:14px;background:linear-gradient(145deg,#100d15,#0b0910);color:#f7f4f8;text-align:left;cursor:pointer;overflow:hidden}.quick-game-card img{display:block;width:46px!important;min-width:46px!important;max-width:46px!important;height:46px!important;min-height:46px!important;max-height:46px!important;aspect-ratio:1/1;object-fit:cover;border-radius:11px;background:#08070b}.quick-game-card span{display:block;min-width:0;overflow:hidden}.quick-game-card strong,.quick-game-card small{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.quick-game-card strong{font-size:13px;line-height:1.12}.quick-game-card small{margin-top:4px;color:#a9a2ae;font-size:9px;text-transform:uppercase;letter-spacing:.07em}.quick-game-card i{font-style:normal;color:#e9b94f;font-size:18px;line-height:1}.quick-game-card.is-blocked{opacity:.68}
.game-availability-badge{position:absolute;z-index:3;right:8px;bottom:46px;display:inline-flex;align-items:center;gap:5px;padding:5px 7px;border:1px solid rgba(255,255,255,.1);border-radius:999px;background:rgba(7,7,10,.88);backdrop-filter:blur(8px);font-size:8px;font-weight:800;letter-spacing:.06em;color:#d8d3dc}.game-availability-badge i{width:6px;height:6px;border-radius:50%;background:#f0b94b}.game-availability-badge.is-maintenance i,.game-availability-badge.is-unavailable i{background:#d86c6c}.game-card.game-unavailable .game-card-thumb img{filter:saturate(.58) brightness(.72)}.game-card.game-unavailable .play-btn{background:rgba(255,255,255,.09)!important;color:#b8b2bd;border-color:rgba(255,255,255,.08);cursor:not-allowed}.game-card.game-unavailable .play-btn-icon{opacity:.55}
.game-grid-loading{pointer-events:none}.game-card-skeleton{height:188px;border-radius:16px;background:linear-gradient(110deg,#0e0b12 15%,#17121d 35%,#0e0b12 55%);background-size:220% 100%;animation:luckyplaySkeleton 1.25s linear infinite;border:1px solid rgba(255,255,255,.055)}@keyframes luckyplaySkeleton{to{background-position:-220% 0}}
.support-button-presence{width:8px;height:8px;border-radius:50%;background:#8a838f;box-shadow:0 0 0 3px rgba(255,255,255,.06)}.support-button-presence.is-on{background:#47cf88;box-shadow:0 0 0 3px rgba(71,207,136,.12)}.support-button-presence.is-off{background:#e19b4b}.floating-support #supportBtn{position:relative}.floating-support #supportButtonUnreadBadge{position:absolute;top:-7px;right:-5px;min-width:21px;height:21px;display:grid;place-items:center;padding:0 5px;border-radius:999px;background:#b74cff;color:#fff;border:2px solid #09080c;font-size:10px}.mobile-nav-unread{position:absolute;top:5px;right:calc(50% - 20px);min-width:17px;height:17px;padding:0 4px;border-radius:999px;display:grid;place-items:center;background:#b74cff;color:white;font-size:9px;line-height:1}.mobile-bottom-nav>button{position:relative}
@media(max-width:760px){.quick-access-section{margin:10px 0 14px;padding:11px;border-radius:15px}.quick-access-heading{align-items:center;margin-bottom:9px}.quick-access-heading h2{font-size:16px}.quick-access-heading button{padding:6px 9px;font-size:9px}.quick-game-rail{grid-auto-flow:row;grid-auto-columns:auto;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;overflow:visible;scroll-snap-type:none;padding-bottom:0}.quick-game-card{grid-template-columns:40px minmax(0,1fr) 10px;gap:8px;min-height:58px;padding:8px}.quick-game-card img{width:40px!important;min-width:40px!important;max-width:40px!important;height:40px!important;min-height:40px!important;max-height:40px!important}.quick-game-card strong{font-size:11px}.quick-game-card small{font-size:7.5px}.quick-game-card i{font-size:15px}.game-card-skeleton{height:188px}.game-availability-badge{right:6px;bottom:40px;padding:4px 6px;font-size:7px}.quick-game-card:only-child{grid-column:1/-1;max-width:100%}}
@media(max-width:420px){.game-card-skeleton{height:176px}.quick-game-rail{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}.quick-game-card{grid-template-columns:36px minmax(0,1fr) 9px;gap:7px;min-height:54px;padding:7px}.quick-game-card img{width:36px!important;min-width:36px!important;max-width:36px!important;height:36px!important;min-height:36px!important;max-height:36px!important}.quick-game-card strong{font-size:10.5px}.quick-game-card small{font-size:7px}.game-availability-badge{bottom:38px}}
@media(prefers-reduced-motion:reduce){.game-card-skeleton{animation:none}}

/* =========================================================
   LuckyPlay V12.8.99 — mobile safe-area + support/form polish
   Presentation only: no game, wallet, deposit, withdrawal, support,
   notification, Keep Playing, referral, or accounting logic changes.
   ========================================================= */
@media (max-width: 760px) {
  html {
    max-width: 100%;
    overflow-x: clip;
    scroll-padding-top: calc(var(--topbar) + env(safe-area-inset-top) + 12px);
    scroll-padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }
  body {
    min-width: 0 !important;
    width: 100%;
    max-width: 100%;
    overflow-x: clip !important;
    padding-bottom: calc(122px + env(safe-area-inset-bottom)) !important;
  }
  .app-shell,
  .main,
  .content-wrap {
    min-width: 0;
    max-width: 100%;
  }

  /* Respect notches/status bars when the Android WebView or browser is edge-to-edge. */
  .topbar {
    height: calc(var(--topbar) + env(safe-area-inset-top)) !important;
    min-height: calc(var(--topbar) + env(safe-area-inset-top)) !important;
    padding-top: env(safe-area-inset-top) !important;
    padding-left: max(9px, env(safe-area-inset-left)) !important;
    padding-right: max(9px, env(safe-area-inset-right)) !important;
  }
  .content-wrap {
    padding-left: max(10px, env(safe-area-inset-left)) !important;
    padding-right: max(10px, env(safe-area-inset-right)) !important;
  }

  /* Keep fixed controls inside safe areas and leave enough scroll room beneath them. */
  .mobile-bottom-nav,
  .mobile-bottom-nav.support-active {
    left: max(7px, env(safe-area-inset-left)) !important;
    right: max(7px, env(safe-area-inset-right)) !important;
    bottom: calc(7px + env(safe-area-inset-bottom)) !important;
  }
  #floatingSupport.floating-support {
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: calc(78px + env(safe-area-inset-bottom)) !important;
    width: 92px !important;
    max-width: 92px !important;
  }
  #floatingSupport .support-bubble { display: none !important; }
  #floatingSupport #supportBtn {
    width: 92px !important;
    min-width: 92px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 11px !important;
    gap: 6px !important;
    border-radius: 999px !important;
  }
  #floatingSupport #supportBtn .support-button-icon svg {
    width: 16px !important;
    height: 16px !important;
  }
  #floatingSupport #supportBtn .support-button-label {
    display: block !important;
    font-size: 8.5px !important;
    letter-spacing: .055em !important;
  }
  #floatingSupport #supportBtn .support-button-presence {
    width: 6px !important;
    height: 6px !important;
    flex: 0 0 6px !important;
  }

  /* Mobile form ergonomics: avoid iOS input zoom and give focused fields scroll clearance. */
  :where(
    input[type="text"], input[type="email"], input[type="password"],
    input[type="tel"], input[type="number"], input[type="search"],
    textarea, select
  ) {
    font-size: 16px !important;
    scroll-margin-top: calc(var(--topbar) + env(safe-area-inset-top) + 18px);
    scroll-margin-bottom: 184px;
  }

  /* Keep long labels/IDs from pushing the page wider than the viewport. */
  :where(.content-wrap, .modal, .support-modal, .game-card, .quick-game-card) {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  /* On narrow phones the headset remains obvious while freeing more card space. */
  #floatingSupport.floating-support {
    width: 46px !important;
    max-width: 46px !important;
    right: max(9px, env(safe-area-inset-right)) !important;
  }
  #floatingSupport #supportBtn {
    width: 46px !important;
    min-width: 46px !important;
    padding: 0 !important;
    gap: 3px !important;
  }
  #floatingSupport #supportBtn .support-button-label { display: none !important; }
  #floatingSupport #supportBtn .support-button-presence {
    position: absolute;
    right: 7px;
    top: 7px;
  }
}

/* Modern Android WebView/Chrome/Safari: clear fixed chrome while the keyboard field is active. */
@supports selector(body:has(input:focus)) {
  @media (max-width: 760px) {
    body:has(input:focus, textarea:focus, select:focus) #floatingSupport,
    body:has(input:focus, textarea:focus, select:focus) .mobile-bottom-nav {
      opacity: 0 !important;
      pointer-events: none !important;
      transform: translateY(18px) !important;
    }
  }
}



/* =========================================================
   LuckyPlay V12.9.00 — final mobile discovery polish
   Category-strip discoverability only. Floating Support stays unchanged.
   ========================================================= */
@media (max-width: 760px) {
  .discovery-bar .category-scroller {
    box-sizing: border-box;
    padding-right: 28px !important;
    scroll-padding-right: 28px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 22px), rgba(0,0,0,.62) calc(100% - 10px), transparent 100%);
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 22px), rgba(0,0,0,.62) calc(100% - 10px), transparent 100%);
  }
  .discovery-bar .category-chip {
    scroll-snap-align: start;
  }
}


/* V12.9.15 — Player navigation, profile & referral center */
@media (max-width: 900px) {
  body { padding-bottom: 108px; }
  .mobile-bottom-nav,
  .mobile-bottom-nav.support-active {
    left: 10px !important; right: 10px !important; bottom: max(9px, env(safe-area-inset-bottom)) !important;
    min-height: 78px !important; padding: 7px 8px !important;
    border-radius: 24px !important; border: 1px solid rgba(255,203,75,.22) !important;
    background: rgba(7,7,11,.97) !important; box-shadow: 0 -10px 34px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.025) inset !important;
    backdrop-filter: blur(20px) !important; z-index: 95 !important;
  }
  .mobile-bottom-nav > a,
  .mobile-bottom-nav > button {
    min-width: 0 !important; min-height: 64px !important; padding: 7px 4px !important;
    border-radius: 18px !important; gap: 4px !important; color: #aaa7b2 !important;
    font-weight: 850 !important; opacity: 1 !important;
  }
  .mobile-bottom-nav > a span,
  .mobile-bottom-nav > button span { font-size: 24px !important; line-height: 1 !important; color: #aaa7b2 !important; }
  .mobile-bottom-nav > a small,
  .mobile-bottom-nav > button small,
  .mobile-bottom-nav.support-active small { font-size: 10px !important; line-height: 1.1 !important; font-weight: 900 !important; letter-spacing: .015em !important; color: #aaa7b2 !important; }
  .mobile-bottom-nav > .active,
  .mobile-bottom-nav > a:active,
  .mobile-bottom-nav > button.is-active {
    background: linear-gradient(145deg, rgba(70,53,23,.68), rgba(25,21,16,.92)) !important;
    box-shadow: inset 0 0 0 1px rgba(255,201,63,.17), 0 0 24px rgba(255,186,35,.08) !important;
  }
  .mobile-bottom-nav > .active span,
  .mobile-bottom-nav > .active small,
  .mobile-bottom-nav > button.is-active span,
  .mobile-bottom-nav > button.is-active small { color: #f2c65a !important; }
}

.profile-center-v12915 { display:grid; gap:16px; width:min(680px,100%); }
.profile-identity-card { display:flex; align-items:center; gap:15px; padding:18px; border:1px solid rgba(255,201,65,.24); border-radius:20px; background:radial-gradient(circle at 88% 12%,rgba(255,185,42,.1),transparent 35%),linear-gradient(145deg,#11111a,#0b0a10); }
.profile-avatar-v12915 { width:62px; height:62px; flex:0 0 62px; display:grid; place-items:center; border-radius:20px; background:linear-gradient(145deg,#f7c13d,#b87b05); color:#0a0803; font-size:25px; font-weight:950; box-shadow:0 0 28px rgba(255,188,35,.16); }
.profile-identity-card h3 { margin:0 0 4px; color:#fff; font-size:20px; }.profile-identity-card p{margin:0 0 7px;color:#a7a3b2;overflow-wrap:anywhere}.profile-identity-card span{font-size:10px;font-weight:900;letter-spacing:.08em;color:#70dda3}
.profile-panel-v12915 { padding:18px; border:1px solid rgba(255,255,255,.09); border-radius:20px; background:#101019; box-shadow:inset 0 1px 0 rgba(255,255,255,.025); }
.profile-panel-title{display:grid;gap:3px;margin-bottom:15px}.profile-panel-title span{font-size:12px;font-weight:950;letter-spacing:.09em;color:#f0c359}.profile-panel-title small{color:#8f8a99}
.profile-panel-v12915 form{display:grid;gap:12px}.profile-panel-v12915 label{display:grid;gap:7px;color:#c8c3ce;font-size:11px;font-weight:850}.profile-panel-v12915 label>small{color:#817c8a;font-weight:600}.profile-panel-v12915 input{width:100%;min-height:52px;padding:0 14px;border-radius:14px;border:1px solid rgba(255,255,255,.10);background:#171821;color:#fff;font:inherit;outline:none}.profile-panel-v12915 input:focus{border-color:rgba(247,195,73,.55);box-shadow:0 0 0 3px rgba(247,195,73,.08)}.profile-panel-v12915 input[readonly]{color:#9d98a6;background:#13131b}
.profile-save-v12915,.profile-security-v12915{min-height:52px;border:0;border-radius:14px;font-weight:950;letter-spacing:.035em;cursor:pointer}.profile-save-v12915{background:linear-gradient(100deg,#f6d15d,#e8aa28);color:#15100a}.profile-security-v12915{background:linear-gradient(100deg,#272332,#1d1b25);color:#f3cf70;border:1px solid rgba(243,207,112,.22)}
.profile-referral-entry-v12915{width:100%;display:grid;grid-template-columns:42px 1fr auto;gap:12px;align-items:center;text-align:left;padding:15px 16px;border:1px solid rgba(255,197,45,.22);border-radius:18px;background:linear-gradient(145deg,#15131d,#0d0c13);color:#fff;cursor:pointer}.profile-referral-entry-v12915>span{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:rgba(255,190,30,.13);color:#f4c549;font-size:23px}.profile-referral-entry-v12915 div{display:grid;gap:3px}.profile-referral-entry-v12915 strong{font-size:12px;letter-spacing:.05em}.profile-referral-entry-v12915 small{color:#938e9d;font-size:9px}.profile-referral-entry-v12915>b{color:#e8b53c;font-size:24px}
.profile-danger-v12915{display:grid;gap:12px;padding:15px;border:1px solid rgba(255,75,110,.16);border-radius:17px;background:rgba(90,16,35,.055)}.profile-danger-v12915 div{display:grid;gap:4px}.profile-danger-v12915 strong{color:#ff7892;font-size:11px;letter-spacing:.06em}.profile-danger-v12915 small{color:#9d8d94;line-height:1.45}.profile-danger-v12915 button{min-height:44px;border:1px solid rgba(255,74,111,.28);border-radius:12px;background:transparent;color:#ff6687;font-weight:900}.profile-danger-v12915 button:disabled{opacity:.55}

.referral-center-v12915{width:min(780px,100%);gap:18px}.referral-hero-v12915{padding:22px;border:1px solid rgba(255,193,35,.45);border-radius:22px;background:radial-gradient(circle at 82% 20%,rgba(255,180,28,.17),transparent 38%),linear-gradient(145deg,#14131d,#0c0c13);box-shadow:0 0 34px rgba(255,184,26,.06)}.referral-active-pill{display:inline-flex;padding:7px 10px;border-radius:9px;border:1px solid rgba(58,218,143,.55);color:#48dfa0;font-size:10px;font-weight:950;letter-spacing:.07em}.referral-hero-v12915 h3{margin:16px 0 10px;color:#fff;font-size:clamp(24px,5vw,36px);line-height:1.04;letter-spacing:.01em}.referral-hero-v12915 h3 em{color:#f1c34a;font-style:normal}.referral-hero-v12915 p{margin:0;color:#a6a0ad;line-height:1.6}.referral-share-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}.referral-share-actions button{min-height:46px;padding:0 16px;border-radius:13px;border:1px solid rgba(255,255,255,.10);background:#17161f;color:#fff;font-weight:950}.referral-share-actions button:first-child{background:linear-gradient(100deg,#f5cf55,#e7a820);color:#151008;border:0}.referral-share-actions button:nth-child(2){background:linear-gradient(100deg,#21d5e9,#13aef2);color:#071117;border:0}.referral-code-card{padding:16px;border:1px solid rgba(255,255,255,.09);border-radius:18px;background:#10111a}.referral-code-card>label{display:block;margin-bottom:10px;color:#f0bd3b;font-size:10px;font-weight:950;letter-spacing:.07em}.referral-code-row{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:#0c0d14}.referral-code-row strong{color:#f2c650;font-size:17px;letter-spacing:.04em}.referral-code-row button{min-height:40px;padding:0 15px;border:0;border-radius:11px;background:#efb72c;color:#15100a;font-weight:950}

@media(max-width:520px){.profile-panel-v12915,.referral-hero-v12915{padding:15px}.profile-identity-card{padding:15px}.profile-avatar-v12915{width:54px;height:54px;flex-basis:54px}.referral-share-actions{display:grid;grid-template-columns:1fr 1fr}.referral-share-actions button:first-child{grid-column:1/-1}.referral-summary-grid-six{grid-template-columns:1fr 1fr!important}}


/* =========================================================
   LuckyPlay V12.9.16 — presence, referral sharing, profile photo, final bottom nav
   ========================================================= */
.player-presence{display:flex;align-items:center;gap:7px;min-width:0;color:#f3f1f5;font-weight:850;white-space:nowrap}
.player-presence-dot{width:9px;height:9px;flex:0 0 9px;border-radius:50%;background:#23de78;box-shadow:0 0 0 3px rgba(35,222,120,.10),0 0 12px rgba(35,222,120,.32)}
.player-presence-status{color:#35e987}.player-presence-separator{color:#67636d}.player-presence-greeting{color:#f4f2f6;max-width:96px;overflow:hidden;text-overflow:ellipsis}
.player-presence.is-offline .player-presence-dot{background:#8a8590;box-shadow:0 0 0 3px rgba(138,133,144,.10)}.player-presence.is-offline .player-presence-status{color:#aaa5af}
#avatarInitial.has-profile-photo{background-size:cover!important;background-position:center!important;color:transparent!important}
.referral-share-actions #whatsappReferralLink{background:linear-gradient(100deg,#12c968,#09a94f)!important;color:#fff!important;border:0!important}
.profile-photo-wrap{display:grid;justify-items:center;gap:8px;flex:0 0 auto}.profile-avatar-v12915.has-photo{background-size:cover;background-position:center;background-repeat:no-repeat;color:transparent}.profile-photo-edit{min-height:30px;padding:0 9px;border-radius:9px;border:1px solid rgba(255,199,61,.25);background:rgba(255,192,41,.08);color:#f3c551;font-size:8px;font-weight:950;letter-spacing:.05em}.profile-photo-remove{margin-top:8px;padding:0;border:0;background:transparent;color:#ff7690;font-size:9px;font-weight:850}.profile-identity-copy{min-width:0}.profile-identity-copy h3,.profile-identity-copy p{overflow-wrap:anywhere}
.mobile-nav-icon{display:grid!important;place-items:center}.mobile-nav-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
@media(max-width:900px){
  .topbar{position:sticky}.player-presence{font-size:11px}.player-presence-greeting{max-width:84px}
  .mobile-bottom-nav,.mobile-bottom-nav.support-active{min-height:86px!important;padding:7px 9px!important;border-radius:25px!important}
  .mobile-bottom-nav>a,.mobile-bottom-nav>button{min-height:70px!important;border-radius:19px!important;gap:6px!important}
  .mobile-bottom-nav .mobile-nav-icon svg{width:29px!important;height:29px!important}.mobile-bottom-nav small,.mobile-bottom-nav.support-active small{font-size:11px!important;font-weight:900!important}
  .mobile-bottom-nav>.active,.mobile-bottom-nav>button.is-active{background:linear-gradient(145deg,rgba(73,55,23,.82),rgba(28,23,15,.96))!important;box-shadow:inset 0 0 0 1px rgba(255,202,66,.23),0 0 28px rgba(255,185,35,.11)!important}
}
@media(max-width:520px){.topbar{gap:8px;padding-left:10px!important;padding-right:10px!important}.player-presence{gap:5px;font-size:10px}.player-presence-dot{width:8px;height:8px;flex-basis:8px}.player-presence-greeting{max-width:68px}.player-header-logo-image{max-width:112px!important}.profile-identity-card{align-items:flex-start}.profile-photo-wrap{width:62px}}
@media(max-width:390px){.player-presence{font-size:9px}.player-presence-greeting{max-width:56px}.player-presence-separator{display:none}.mobile-bottom-nav .mobile-nav-icon svg{width:25px!important;height:25px!important}.mobile-bottom-nav small,.mobile-bottom-nav.support-active small{font-size:9.5px!important}}


/* =========================================================
   LuckyPlay V12.9.17 — profile visual sync + compact presence
   ========================================================= */
.player-presence-status.sr-only,.player-presence .player-presence-separator{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.player-presence{gap:7px!important}.player-presence-greeting{max-width:104px!important}.player-presence.is-offline .player-presence-dot{background:#8d8792!important;box-shadow:0 0 0 3px rgba(141,135,146,.10),0 0 10px rgba(141,135,146,.15)!important}
.avatar-btn #avatarInitial{width:100%;height:100%;display:grid;place-items:center;border-radius:inherit;background-size:cover;background-position:center;background-repeat:no-repeat}
.mobile-profile-visual{width:34px!important;height:34px!important;border-radius:50%!important;background-position:center!important;background-size:cover!important;background-repeat:no-repeat!important;overflow:hidden!important;border:1px solid transparent}
.mobile-profile-visual.has-profile-visual{border-color:rgba(255,199,63,.46);box-shadow:0 0 15px rgba(255,190,43,.12)}.mobile-profile-visual.has-profile-visual svg{opacity:0!important}
.profile-visual-chooser-backdrop{position:fixed;inset:0;z-index:10050;background:rgba(5,4,8,.82);backdrop-filter:blur(9px);display:grid;place-items:end center;padding:18px}
.profile-visual-chooser{width:min(620px,100%);max-height:min(82vh,760px);overflow:auto;border-radius:26px;border:1px solid rgba(255,198,57,.22);background:linear-gradient(160deg,#17131f,#0d0a12 65%);box-shadow:0 -18px 60px rgba(0,0,0,.55);padding:20px;color:#fff}
.profile-visual-chooser-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;margin-bottom:16px}.profile-visual-chooser-head span,.profile-avatar-heading span{color:#f2c459;font-size:10px;font-weight:950;letter-spacing:.12em}.profile-visual-chooser-head h3{margin:5px 0 0;font-size:23px}.profile-visual-chooser-head button{width:42px;height:42px;border-radius:14px;border:1px solid rgba(255,255,255,.09);background:#211c29;color:#fff;font-size:25px}
.profile-visual-source-grid{display:grid;grid-template-columns:1fr 1fr;gap:11px}.profile-visual-source-grid>button{min-height:88px;border-radius:17px;border:1px solid rgba(255,255,255,.09);background:#14111a;color:#fff;display:grid;grid-template-columns:38px 1fr;grid-template-rows:auto auto;text-align:left;align-items:center;padding:13px 15px;column-gap:10px}.profile-visual-source-grid strong{grid-row:1/3;font-size:25px;color:#f2c459}.profile-visual-source-grid span{font-weight:950}.profile-visual-source-grid small{color:#9f98aa;font-size:10px}.profile-avatar-heading{margin:20px 0 10px}.profile-avatar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.profile-avatar-preset{border:1px solid rgba(255,255,255,.08);border-radius:16px;background:#121018;padding:8px;color:#beb8c5;display:grid;gap:6px;justify-items:center}.profile-avatar-preset span{width:58px;height:58px;border-radius:17px;background-size:cover;background-position:center}.profile-avatar-preset small{font-size:9px;font-weight:850}.profile-avatar-preset:active,.profile-avatar-preset:focus-visible{border-color:rgba(255,198,66,.6);box-shadow:0 0 0 2px rgba(255,198,66,.12)}
.profile-visual-footer{display:flex;gap:10px;justify-content:flex-end;margin-top:18px}.profile-remove-visual{margin-right:auto;border:0;background:transparent;color:#ff7d93;font-size:11px;font-weight:900}.profile-visual-footer .ghost-btn{min-height:42px}
@media(max-width:520px){.profile-visual-chooser-backdrop{padding:8px}.profile-visual-chooser{border-radius:24px 24px 14px 14px;padding:16px}.profile-avatar-grid{grid-template-columns:repeat(4,1fr)}.profile-avatar-preset span{width:50px;height:50px}.profile-visual-source-grid>button{padding:11px;min-height:80px}.player-presence-greeting{max-width:82px!important}.mobile-profile-visual{width:31px!important;height:31px!important}}
@media(max-width:370px){.profile-avatar-grid{grid-template-columns:repeat(3,1fr)}.player-presence-greeting{max-width:66px!important}}

/* =========================================================
   LuckyPlay V12.9.18 — compact presence hotfix
   The connection state remains in the DOM for accessibility, while
   the visual header intentionally renders only status dot + greeting.
   ========================================================= */
#playerPresenceStatus,
.player-presence-status,
.player-presence-separator {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.player-presence { gap: 7px !important; }
.player-presence-dot {
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  flex: 0 0 9px !important;
  border-radius: 999px !important;
  background: #23de78 !important;
  box-shadow: 0 0 0 3px rgba(35,222,120,.10), 0 0 12px rgba(35,222,120,.32) !important;
}
.player-presence.is-offline .player-presence-dot {
  background: #8d8792 !important;
  box-shadow: 0 0 0 3px rgba(141,135,146,.10), 0 0 10px rgba(141,135,146,.15) !important;
}
@media (max-width: 520px) {
  .player-presence-dot { width: 8px !important; height: 8px !important; flex-basis: 8px !important; }
}


/* V12.9.20 - Live Chat notification reminder */
.live-support-notification-reminder{margin-top:12px;padding:11px 12px;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px;border:1px solid rgba(255,201,74,.15);border-radius:13px;background:rgba(255,201,74,.045)}
.live-support-notification-reminder>span{font-size:17px}
.live-support-notification-reminder strong{display:block;color:#f1d17b;font-size:10px}
.live-support-notification-reminder p{margin:3px 0 0;color:#a99faf;font-size:9px;line-height:1.4}
.live-support-notification-reminder button{min-height:34px;padding:0 10px;border:1px solid rgba(255,201,74,.22);border-radius:9px;background:rgba(255,201,74,.09);color:#f4d77e;font:inherit;font-size:8px;font-weight:950;cursor:pointer}
@media(max-width:430px){.live-support-notification-reminder{grid-template-columns:auto minmax(0,1fr)}.live-support-notification-reminder button{grid-column:1/-1;width:100%;min-height:40px}}

/* V12.9.22 RELEASE - floating Live Chat safe-area positioning */
body.live-support-open #floatingSupport{display:none!important}
@media(max-width:900px){
  #floatingSupport.floating-support{right:10px!important;bottom:calc(112px + env(safe-area-inset-bottom))!important;z-index:94!important}
}
@media(max-width:390px){
  #floatingSupport.floating-support{right:8px!important;bottom:calc(108px + env(safe-area-inset-bottom))!important}
}

/* =========================================================
   LuckyPlay V12.9.22 RELEASE — Android download entry points
   Browser-only Android CTAs; the native app hides them and uses its updater.
   ========================================================= */
#topAppBtn.download-app-entry:not(.hidden) {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255, 201, 74, .18);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
  color: #f1c65b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}
#topAppBtn.download-app-entry svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#topAppBtn.download-app-entry span { display: none !important; }
#topAppBtn.download-app-entry:hover,
#topAppBtn.download-app-entry:focus-visible {
  border-color: rgba(255, 201, 74, .42);
  background: rgba(255, 201, 74, .08);
  outline: none;
}

.android-browser-download-promo {
  margin: 16px 0 2px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 201, 74, .17);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 201, 74, .055), rgba(155, 92, 255, .035));
}
.android-browser-download-promo > div { min-width: 0; display: grid; gap: 3px; }
.android-browser-download-promo span {
  color: #e5b84d;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .11em;
}
.android-browser-download-promo strong {
  color: #d7d1dd;
  font-size: 11px;
  line-height: 1.45;
}
.android-browser-download-promo button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 201, 74, .28);
  border-radius: 11px;
  background: linear-gradient(135deg, #f3c653, #ee9f22);
  color: #211407;
  font: inherit;
  font-size: 9px;
  font-weight: 950;
  white-space: nowrap;
  cursor: pointer;
}

.profile-android-download {
  width: 100%;
  margin-top: 12px;
  min-height: 72px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 201, 74, .18);
  border-radius: 15px;
  background: rgba(255, 201, 74, .045);
  color: #fff;
  text-align: left;
  cursor: pointer;
}
.profile-android-download > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 201, 74, .1);
  color: #f4c653;
  font-size: 20px;
}
.profile-android-download > div { min-width: 0; display: grid; gap: 3px; }
.profile-android-download strong { color: #f1c65b; font-size: 10px; letter-spacing: .06em; }
.profile-android-download small { color: #9e98a8; font-size: 9px; line-height: 1.4; }
.profile-android-download b { color: #f1c65b; font-size: 9px; letter-spacing: .04em; }

@media (max-width: 640px) {
  .topbar #topAppBtn.download-app-entry:not(.hidden) { display: grid !important; }
  #topAppBtn.download-app-entry:not(.hidden) { width: 38px; min-width: 38px; height: 38px; border-radius: 12px; }
  #topAppBtn.download-app-entry svg { width: 18px; height: 18px; }
  .android-browser-download-promo { grid-template-columns: 1fr; padding: 12px; }
  .android-browser-download-promo button { width: 100%; }
}
@media (max-width: 370px) {
  #topAppBtn.download-app-entry:not(.hidden) { width: 35px; min-width: 35px; height: 35px; }
  .profile-android-download { grid-template-columns: 34px minmax(0, 1fr); }
  .profile-android-download b { grid-column: 1 / -1; text-align: center; padding-top: 3px; }
}


/* LuckyPlay V12.9.01 — hide duplicate floating Live Chat while Support UI is open. */
body.support-ui-open #floatingSupport{display:none!important}

/* v12.9.24 — returning-player experience + Live Support v2 */
.returning-player-hub{margin:18px 0 26px;display:grid;gap:14px}
.returning-player-heading{display:flex;align-items:end;justify-content:space-between;gap:16px}
.returning-player-heading h2{margin:3px 0 0;color:#fff;font-size:clamp(18px,2.4vw,25px);letter-spacing:-.02em}
.returning-player-heading>small{max-width:430px;color:#8f8798;font-size:10px;line-height:1.5;text-align:right}
.returning-player-heading button{min-height:36px;padding:0 12px;border:1px solid rgba(244,198,83,.2);border-radius:10px;background:rgba(244,198,83,.055);color:#edca70;font:inherit;font-size:8px;font-weight:950;letter-spacing:.08em;cursor:pointer}
.since-last-visit-card{padding:16px;border:1px solid rgba(244,198,83,.16);border-radius:18px;background:linear-gradient(145deg,rgba(244,198,83,.055),rgba(131,74,211,.035)),#100f14;box-shadow:0 16px 50px rgba(0,0,0,.16)}
.since-last-visit-list{margin-top:12px;display:grid;gap:7px}
.since-last-visit-list>button{width:100%;min-height:58px;padding:10px 11px;display:grid;grid-template-columns:32px minmax(0,1fr) auto;align-items:center;gap:10px;border:1px solid rgba(255,255,255,.065);border-radius:13px;background:rgba(255,255,255,.025);color:#fff;text-align:left;font:inherit;cursor:pointer}
.since-last-visit-list>button:hover{border-color:rgba(244,198,83,.18);background:rgba(244,198,83,.04)}
.since-last-visit-list>button>span{width:32px;height:32px;display:grid;place-items:center;border-radius:10px;background:rgba(244,198,83,.08);color:#f0ca69;font-size:13px;font-weight:950}
.since-last-visit-list>button>div{min-width:0;display:grid;gap:3px}
.since-last-visit-list strong{font-size:10px;color:#f5f1f7}
.since-last-visit-list small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#91899a;font-size:9px}
.since-last-visit-list time{color:#7d7585;font-size:8px;white-space:nowrap}
.for-you-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.for-you-grid>button{min-height:105px;padding:15px 14px;display:grid;grid-template-rows:auto auto 1fr;align-content:start;gap:6px;border:1px solid rgba(255,255,255,.07);border-radius:17px;background:linear-gradient(150deg,rgba(255,255,255,.04),rgba(255,255,255,.012));color:#fff;text-align:left;font:inherit;cursor:pointer;transition:transform .15s ease,border-color .15s ease,background .15s ease}
.for-you-grid>button:hover{transform:translateY(-1px);border-color:rgba(244,198,83,.2);background:linear-gradient(150deg,rgba(244,198,83,.065),rgba(131,74,211,.025))}
.for-you-grid>button>span{width:30px;height:30px;display:grid;place-items:center;border-radius:10px;background:rgba(244,198,83,.085);color:#efc866;font-size:13px}
.for-you-grid strong{font-size:11px;letter-spacing:.01em}
.for-you-grid small{color:#8f8797;font-size:9px;line-height:1.4}
.your-luckyplay-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.your-luckyplay-card{min-height:76px;padding:12px 14px;display:grid;grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"tag arrow" "title arrow" "meta arrow";align-items:center;gap:2px 10px;border:1px solid rgba(131,74,211,.14);border-radius:15px;background:rgba(131,74,211,.035);color:#fff;text-align:left;font:inherit;cursor:pointer}
.your-luckyplay-card:hover{border-color:rgba(181,128,255,.24);background:rgba(131,74,211,.055)}
.your-luckyplay-card>span{grid-area:tag;color:#b98aff;font-size:7px;font-weight:950;letter-spacing:.12em}
.your-luckyplay-card>strong{grid-area:title;font-size:10px}
.your-luckyplay-card>small{grid-area:meta;color:#8d8496;font-size:8px;line-height:1.35}
.your-luckyplay-card>i{grid-area:arrow;color:#d8b2ff;font-style:normal;font-size:22px}
.service-status-card{padding:13px 14px;display:flex;align-items:center;justify-content:space-between;gap:16px;border:1px solid rgba(255,255,255,.065);border-radius:15px;background:#0e0d11}
.service-status-card>div:first-child{display:grid;gap:3px}
.service-status-card>div:first-child>strong{color:#fff;font-size:10px}
.service-status-items{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:7px}
.service-status-items>span{min-height:34px;padding:6px 9px;display:grid;grid-template-columns:7px auto;grid-template-areas:"dot name" "dot detail";align-items:center;column-gap:6px;border:1px solid rgba(255,255,255,.06);border-radius:10px;background:rgba(255,255,255,.02)}
.service-status-items i{grid-area:dot;width:7px;height:7px;border-radius:50%;background:#53d98a;box-shadow:0 0 0 3px rgba(83,217,138,.08)}
.service-status-items .is-warning i{background:#e9b94d;box-shadow:0 0 0 3px rgba(233,185,77,.08)}
.service-status-items b{grid-area:name;color:#e9e4ec;font-size:8px}
.service-status-items small{grid-area:detail;color:#827a89;font-size:7px}
.player-activity-modal{width:min(620px,calc(100vw - 24px));max-height:min(760px,calc(100dvh - 28px));overflow:hidden}
.player-activity-modal>p{margin:5px 0 13px;color:#938a9d;font-size:10px}
.player-activity-list{max-height:min(590px,calc(100dvh - 170px));overflow:auto;display:grid;gap:7px;padding-right:2px;overscroll-behavior:contain}
.player-activity-row{width:100%;min-height:64px;padding:10px 11px;display:grid;grid-template-columns:34px minmax(0,1fr) auto;align-items:center;gap:10px;border:1px solid rgba(255,255,255,.065);border-radius:13px;background:rgba(255,255,255,.025);color:#fff;text-align:left;font:inherit;cursor:pointer}
.player-activity-row:hover{border-color:rgba(244,198,83,.16);background:rgba(244,198,83,.035)}
.player-activity-row>span{width:34px;height:34px;display:grid;place-items:center;border-radius:10px;background:rgba(244,198,83,.075);color:#f0ca69;font-size:13px;font-weight:950}
.player-activity-row>div{min-width:0;display:grid;gap:2px}
.player-activity-row small{color:#a481ef;font-size:7px;font-weight:950;letter-spacing:.1em}
.player-activity-row strong{font-size:10px;color:#f4eff6}
.player-activity-row p{margin:0;color:#8d8594;font-size:9px;line-height:1.4}
.player-activity-row time{color:#746d7c;font-size:8px;white-space:nowrap}
.player-activity-empty{min-height:150px;padding:24px 14px;display:grid;place-content:center;gap:5px;text-align:center;color:#8e8597;font-size:10px}
.player-activity-empty strong{color:#e9e2ed;font-size:11px}.player-activity-empty span{color:#898090;font-size:9px}

.live-support-v2{width:min(720px,calc(100vw - 24px));max-height:min(850px,calc(100dvh - 24px));overflow:auto;padding:0}
.live-support-v2>.modal-close{z-index:5;top:14px;right:14px}
.live-support-v2-header{min-height:82px;padding:15px 52px 14px 17px;display:grid;grid-template-columns:44px minmax(0,1fr) auto;align-items:center;gap:11px;border-bottom:1px solid rgba(255,255,255,.065);background:linear-gradient(135deg,rgba(244,198,83,.055),rgba(131,74,211,.035))}
.live-support-brand-avatar{width:44px;height:44px;display:grid;place-items:center;border:1px solid rgba(244,198,83,.16);border-radius:14px;background:#161319;overflow:hidden}
.live-support-brand-avatar img{width:32px;height:32px;object-fit:contain}
.live-support-v2-header h2{margin:2px 0 3px;color:#fff;font-size:18px}
.live-support-v2-header p{margin:0;display:flex;align-items:center;gap:7px;color:#918898;font-size:9px}
#liveSupportConnectionDot{width:7px;height:7px;display:inline-block;border-radius:50%;background:#4fd382;box-shadow:0 0 0 3px rgba(79,211,130,.08)}
#liveSupportConnectionDot.is-offline{background:#d6a44a;box-shadow:0 0 0 3px rgba(214,164,74,.08)}
.live-support-v2 .live-support-player-card{margin:14px 15px 12px;padding:0;border:0;background:transparent;box-shadow:none}
.live-support-v2 .live-support-player-heading{padding:0 2px;margin-bottom:3px}
.live-support-v2 .live-support-player-heading>div{display:flex;align-items:center;gap:8px}.live-support-v2 .live-support-player-heading span{font-size:7px}.live-support-v2 .live-support-player-heading strong{font-size:8px;color:#d6b864}
.live-support-v2 #liveSupportPlayerMessage{margin:2px 2px 10px;color:#8e8596;font-size:9px}
.live-support-quick-help{margin:9px 0 10px;padding:11px;border:1px solid rgba(255,255,255,.055);border-radius:14px;background:rgba(255,255,255,.018)}
.live-support-quick-help>span{display:block;margin-bottom:8px;color:#81798a;font-size:7px;font-weight:950;letter-spacing:.12em}
.live-support-quick-help>div{display:flex;flex-wrap:wrap;gap:6px}
.live-support-quick-help button{min-height:35px;padding:0 10px;border:1px solid rgba(255,255,255,.075);border-radius:999px;background:#151218;color:#bbb2c2;font:inherit;font-size:8px;font-weight:850;cursor:pointer}
.live-support-quick-help button:hover,.live-support-quick-help button.active{border-color:rgba(244,198,83,.25);background:rgba(244,198,83,.075);color:#f0cc71}
.live-support-context-card{margin:8px 0 10px;padding:10px 38px 10px 11px;position:relative;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:10px;border:1px solid rgba(181,128,255,.18);border-radius:13px;background:linear-gradient(135deg,rgba(131,74,211,.085),rgba(244,198,83,.025))}
.live-support-context-card>div{min-width:0;display:grid;gap:2px}.live-support-context-card span{color:#b98aff;font-size:7px;font-weight:950;letter-spacing:.11em}.live-support-context-card strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#f4eff8;font-size:10px}.live-support-context-card small{color:#90879a;font-size:8px}.live-support-context-card>b{padding:5px 7px;border:1px solid rgba(244,198,83,.14);border-radius:8px;background:rgba(244,198,83,.04);color:#e6c46a;font-size:8px;letter-spacing:.05em;white-space:nowrap}.live-support-context-card>button{position:absolute;top:7px;right:7px;width:25px;height:25px;border:0;border-radius:8px;background:rgba(255,255,255,.04);color:#8d8595;cursor:pointer}
.live-support-v2 .live-support-message-thread{position:relative;min-height:260px;max-height:min(430px,46dvh);padding:13px 10px;display:flex;flex-direction:column;gap:7px;border:1px solid rgba(255,255,255,.06);border-radius:15px;background:radial-gradient(circle at 20% -15%,rgba(244,198,83,.035),transparent 40%),#0c0b0e;overflow:auto;overscroll-behavior:contain}
.live-support-v2 .live-support-message{width:auto;max-width:min(78%,480px);padding:9px 10px 8px;display:block;border-radius:14px;box-shadow:0 8px 22px rgba(0,0,0,.09)}
.live-support-v2 .live-support-message.from-admin{align-self:flex-start;border:1px solid rgba(244,198,83,.13);border-bottom-left-radius:5px;background:#18150f}
.live-support-v2 .live-support-message.from-player{align-self:flex-end;border:1px solid rgba(181,128,255,.15);border-bottom-right-radius:5px;background:#1b1326}
.live-support-message-meta{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:12px!important}.live-support-v2 .live-support-message-meta strong{font-size:8px}.live-support-v2 .live-support-message-meta small{display:flex;align-items:center;gap:4px;color:#776f7e;font-size:7px}.live-support-v2 .live-support-message p{margin-top:4px;color:#ddd6e1;font-size:10px;line-height:1.48}
.live-support-read-state{color:#b98aff;font-style:normal;font-size:7px;letter-spacing:-.06em}
.live-support-day-separator,.live-support-new-divider{align-self:stretch;display:flex;align-items:center;gap:8px;margin:4px 0;color:#6f6876;font-size:7px;font-weight:950;letter-spacing:.11em}.live-support-day-separator:before,.live-support-day-separator:after,.live-support-new-divider:before,.live-support-new-divider:after{content:"";height:1px;flex:1;background:rgba(255,255,255,.055)}.live-support-new-divider{color:#d6b864}.live-support-new-divider:before,.live-support-new-divider:after{background:rgba(244,198,83,.13)}
.live-support-v2-empty{min-height:220px;display:grid;place-content:center;justify-items:center;gap:6px;padding:25px!important}.live-support-v2-empty>span{font-size:21px}.live-support-v2-empty>strong{color:#e9e2ed;font-size:11px}.live-support-v2-empty>p{margin:0;max-width:300px;color:#817988;font-size:9px;line-height:1.5}
.live-support-scroll-latest{position:absolute;left:50%;transform:translateX(-50%);margin-top:-40px;z-index:3;min-height:30px;padding:0 10px;border:1px solid rgba(244,198,83,.18);border-radius:999px;background:#211b12;color:#ebc96f;font:inherit;font-size:7px;font-weight:950;box-shadow:0 8px 20px rgba(0,0,0,.3);cursor:pointer}
.live-support-composer-status{min-height:26px;padding:7px 2px 2px;color:#716a78;font-size:7px;line-height:1.35}
.live-support-composer-v2{margin-top:4px;padding:6px;grid-template-columns:minmax(0,1fr) auto;gap:6px;border:1px solid rgba(255,255,255,.075);border-radius:15px;background:#111014}
.live-support-composer-v2 textarea{min-height:46px;max-height:130px;padding:10px 9px;border:0!important;border-radius:10px!important;background:transparent!important;box-shadow:none!important;color:#fff;resize:vertical}
.live-support-composer-v2 textarea:focus{outline:none}.live-support-composer-v2 button{min-width:78px;min-height:46px;padding:0 11px!important;display:flex;align-items:center;justify-content:center;gap:6px;border-radius:11px!important}.live-support-composer-v2 button span{font-size:8px;font-weight:950}.live-support-composer-v2 button i{font-style:normal;font-size:12px}

@media(max-width:760px){
  .for-you-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.your-luckyplay-grid{grid-template-columns:1fr}.service-status-card{align-items:flex-start;flex-direction:column}.service-status-items{justify-content:flex-start;width:100%}.returning-player-heading>small{display:none}
}
@media(max-width:430px){
  .returning-player-hub{margin-top:13px;gap:12px}.since-last-visit-card{padding:13px;border-radius:16px}.returning-player-heading{align-items:center}.returning-player-heading h2{font-size:17px}.for-you-grid{gap:7px}.for-you-grid>button{min-height:96px;padding:12px;border-radius:14px}.your-luckyplay-card{min-height:70px;padding:10px 12px}.service-status-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.service-status-items>span{width:100%}.since-last-visit-list>button,.player-activity-row{grid-template-columns:30px minmax(0,1fr);gap:8px}.since-last-visit-list time,.player-activity-row time{grid-column:2;text-align:left}.since-last-visit-list>button>span,.player-activity-row>span{width:30px;height:30px}.player-activity-modal{width:calc(100vw - 14px);max-height:calc(100dvh - 14px)}
  .live-support-v2{width:calc(100vw - 10px);max-height:calc(100dvh - max(10px,env(safe-area-inset-bottom)));border-radius:18px}.live-support-v2-header{min-height:75px;padding:12px 46px 12px 13px;grid-template-columns:38px minmax(0,1fr) auto}.live-support-brand-avatar{width:38px;height:38px;border-radius:12px}.live-support-brand-avatar img{width:28px;height:28px}.live-support-v2 .live-support-player-card{margin:11px 10px 9px}.live-support-quick-help{padding:9px}.live-support-quick-help>div{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.live-support-quick-help button{width:100%;padding:0 7px}.live-support-v2 .live-support-message-thread{min-height:240px;max-height:42dvh;padding:10px 8px}.live-support-v2 .live-support-message{max-width:88%}.live-support-composer-v2{position:sticky;bottom:max(0px,env(safe-area-inset-bottom));z-index:2;background:#111014}.live-support-composer-v2 button{min-width:65px}.live-support-context-card{grid-template-columns:1fr;padding-right:38px}.live-support-context-card>b{justify-self:start}.live-support-notification-reminder{margin-top:8px}
}

/* v12.9.24 — categorized Notification Center */
.player-notification-filters{padding:9px 10px 7px;display:flex;gap:5px;overflow:auto;border-bottom:1px solid rgba(255,255,255,.055);scrollbar-width:none}.player-notification-filters::-webkit-scrollbar{display:none}.player-notification-filters button{min-height:31px;padding:0 9px;flex:0 0 auto;border:1px solid rgba(255,255,255,.075);border-radius:999px;background:rgba(255,255,255,.025);color:#8f8599;font:inherit;font-size:7px;font-weight:950;letter-spacing:.08em;cursor:pointer}.player-notification-filters button:hover,.player-notification-filters button.active{border-color:rgba(245,185,64,.24);background:rgba(245,185,64,.075);color:#efc967}.player-notification-category{margin-right:6px;padding:2px 5px;border-radius:999px;background:rgba(181,128,255,.08);color:#bd92f1;font-size:7px;letter-spacing:.06em}.player-notification-item-copy small{display:flex;align-items:center;flex-wrap:wrap;gap:3px}
@media(max-width:430px){.player-notification-filters{padding-left:8px;padding-right:8px}.player-notification-filters button{min-height:34px;padding:0 10px}}
