/* Social Spin Fest — light social casino floor */

:root {
  --felt: #2d1b4e;
  --felt-deep: #1f1235;
  --felt-light: #4a2d7a;
  --gold: #f5b800;
  --gold-bright: #ffe566;
  --gold-dark: #b8860b;
  --casino-red: #e63946;
  --casino-green: #1a6b4a;
  --bg: #fffef8;
  --bg-cream: #fff8e7;
  --card: #ffffff;
  --ink: #1a1228;
  --ink-soft: #3d3450;
  --muted: #6b6280;
  --line: rgba(45, 27, 78, 0.12);
  --display: "Bebas Neue", Impact, sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --wrap: 1180px;
  --radius: 14px;
  --radius-pill: 999px;
  --header-h: 72px;
  --dock-h: 68px;
  --jackpot-glow: 0 0 40px rgba(245, 184, 0, 0.45);
  --felt-shadow: 0 16px 48px rgba(45, 27, 78, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
a { color: var(--felt-light); font-weight: 600; text-decoration: none; }
a:hover { color: var(--casino-red); }
.tabular { font-variant-numeric: tabular-nums; }
.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: 0.02em; color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; z-index: 9999;
  padding: 10px 18px; background: var(--gold); color: var(--felt-deep); font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Jackpot CTA buttons */
.btn-jackpot,
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--felt-deep);
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  box-shadow: var(--jackpot-glow), inset 0 2px 0 rgba(255,255,255,.5), 0 4px 0 #9a7209;
  transition: transform 0.15s, box-shadow 0.15s;
  overflow: hidden;
}
.btn-jackpot:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 56px rgba(245,184,0,.55), inset 0 2px 0 rgba(255,255,255,.5), 0 6px 0 #9a7209;
}
.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.45) 50%, transparent 60%);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}
.btn-jackpot-sm, .btn-primary-sm { min-height: 38px; padding: 8px 20px; font-size: 12px; }
.btn-jackpot-xl, .btn-primary-lg { min-height: 58px; padding: 18px 40px; font-size: 16px; }
.btn-jackpot-block, .btn-primary-block { width: 100%; }

.btn-felt,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--felt);
  background: var(--card);
  color: var(--felt);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-felt:hover,
.btn-secondary:hover {
  background: var(--felt);
  color: var(--gold-bright);
}
.btn-felt-sm, .btn-secondary-sm { min-height: 36px; padding: 8px 16px; font-size: 12px; }
.btn-felt-block, .btn-secondary-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: linear-gradient(180deg, var(--felt-deep) 0%, var(--felt) 100%);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(31, 18, 53, 0.4);
}
.site-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-brand img { height: 36px; width: auto; }
.site-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.site-nav a:hover { color: var(--gold-bright); }
.site-header-end {
  display: flex;
  align-items: center;
  gap: 12px;
}
.live-pulse {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-bright);
  padding: 6px 12px;
  background: rgba(0,0,0,.25);
  border-radius: var(--radius-pill);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 50% { opacity: 0.4; } }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.nav-burger span { width: 20px; height: 2px; background: #fff; }

/* ========== HERO — casino floor stage ========== */
.casino-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--felt-deep) 0%, var(--felt) 35%, #3d2568 70%, var(--bg-cream) 100%);
}
.casino-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-spotlight {
  position: absolute;
  width: 50%;
  height: 70%;
  top: 0;
  opacity: 0.35;
  background: radial-gradient(ellipse at center top, rgba(255, 230, 120, 0.5) 0%, transparent 70%);
}
.hero-spotlight-l { left: 0; }
.hero-spotlight-r { right: 0; }
.hero-diamond-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%);
  background-size: 24px 24px;
}
.float-chip {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px dashed rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 6px var(--casino-red), 0 8px 20px rgba(0,0,0,.3);
  animation: float-chip 6s ease-in-out infinite;
}
.float-chip-1 { top: 18%; left: 6%; background: var(--casino-red); animation-delay: 0s; }
.float-chip-2 { top: 55%; right: 8%; background: var(--gold); border-color: var(--gold-dark); animation-delay: -2s; width: 36px; height: 36px; }
.float-chip-3 { bottom: 28%; left: 12%; background: var(--casino-green); animation-delay: -4s; width: 32px; height: 32px; }
.float-chip-4 { top: 30%; right: 18%; background: #2563eb; animation-delay: -1s; width: 28px; height: 28px; }
@keyframes float-chip {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(12deg); }
}

.led-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  margin-top: 8px;
}
.led-scroll-area {
  flex: 1;
  overflow: hidden;
}
.led-badge {
  flex-shrink: 0;
  padding: 6px 14px;
  background: var(--casino-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 4px;
  animation: led-pulse 2s ease infinite;
}
@keyframes led-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(230, 57, 70, 0.6); }
  50% { box-shadow: 0 0 24px rgba(230, 57, 70, 0.9); }
}
.led-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  white-space: nowrap;
  animation: led-scroll 25s linear infinite;
}
@keyframes led-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.casino-hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 24px 0 32px;
}
.jackpot-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 184, 0, 0.4);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-bright);
}
.ribbon-spark { color: var(--gold); animation: spin-spark 4s linear infinite; }
@keyframes spin-spark { to { transform: rotate(360deg); } }

.jackpot-headline { margin: 0 0 16px; line-height: 0.95; }
.jackpot-pre {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.jackpot-amount {
  display: block;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--gold-bright);
  text-shadow:
    0 2px 0 var(--gold-dark),
    0 4px 0 rgba(0,0,0,.2),
    0 0 60px rgba(245, 184, 0, 0.5);
  line-height: 0.9;
}
.jackpot-coins {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #fff;
  margin-top: 4px;
}
.hero-lead {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 28em;
}
.hero-legal {
  margin: 0 0 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.hero-lead a, .hero-legal a { color: var(--gold-bright); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.trust-icon { font-size: 1.1rem; }

/* Slot machine showcase */
.slot-showcase {
  display: flex;
  justify-content: center;
  perspective: 800px;
}
.slot-machine {
  width: min(100%, 300px);
  background: linear-gradient(180deg, #c41e3a 0%, #8b1530 100%);
  border-radius: 20px;
  padding: 12px;
  box-shadow: var(--felt-shadow), 0 0 0 4px var(--gold), 0 0 0 8px var(--felt-deep);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: slot-idle 4s ease-in-out infinite;
}
@keyframes slot-idle {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-6deg) rotateX(2deg) translateY(-8px); }
}
.slot-top {
  text-align: center;
  padding: 8px;
  background: var(--felt-deep);
  border-radius: 12px 12px 0 0;
  position: relative;
}
.slot-lights {
  display: block;
  height: 6px;
  margin-bottom: 6px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  animation: lights-blink 0.8s steps(2) infinite;
}
@keyframes lights-blink { 50% { opacity: 0.5; } }
.slot-brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.slot-window {
  margin: 8px 0;
  padding: 20px 16px;
  background: linear-gradient(180deg, #0a0612 0%, #1a1228 100%);
  border-radius: 8px;
  border: 3px solid var(--gold-dark);
  text-align: center;
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.reel {
  width: 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 2.8rem;
  color: var(--gold-bright);
  background: linear-gradient(180deg, #2a1f3d 0%, #0f0a18 100%);
  border-radius: 8px;
  border: 2px solid rgba(245, 184, 0, 0.3);
  text-shadow: 0 0 20px rgba(245, 184, 0, 0.6);
}
.reel-win {
  animation: reel-win 0.6s ease infinite alternate;
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(245, 184, 0, 0.5);
}
@keyframes reel-win {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.slot-win-label {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--casino-red);
}
.slot-win-amount {
  margin: 0;
  font-family: var(--display);
  font-size: 3rem;
  color: var(--gold-bright);
  line-height: 1;
  text-shadow: 0 0 30px rgba(245, 184, 0, 0.6);
}
.slot-win-sub {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.slot-base {
  height: 24px;
  background: #6b1020;
  border-radius: 0 0 12px 12px;
  position: relative;
}
.slot-lever {
  position: absolute;
  right: -20px;
  top: -40px;
  width: 12px;
  height: 50px;
  background: linear-gradient(90deg, #888, #ccc, #888);
  border-radius: 6px;
  box-shadow: 2px 4px 8px rgba(0,0,0,.4);
}
.slot-lever::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--casino-red);
  border: 3px solid var(--gold);
}

/* Promo tickets */
.promo-tickets {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px 0 24px;
}
.ticket {
  position: relative;
  padding: 22px 20px 22px 28px;
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--line);
  box-shadow: var(--felt-shadow);
  transition: transform 0.2s;
}
.ticket:hover { transform: translateY(-4px) rotate(-0.5deg); }
.ticket-gold {
  border-color: var(--gold);
  background: linear-gradient(145deg, #fff 0%, #fff8e0 100%);
  box-shadow: var(--jackpot-glow), var(--felt-shadow);
}
.ticket-stub {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: repeating-linear-gradient(
    180deg,
    var(--felt) 0 6px,
    transparent 6px 12px
  );
  border-radius: var(--radius) 0 0 var(--radius);
}
.ticket-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--felt-light);
  margin-bottom: 6px;
}
.ticket-title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: var(--felt);
}
.ticket p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
}

/* Winners */
.winners-band { position: relative; z-index: 2; padding-bottom: 20px; }
.winners-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--card);
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--jackpot-glow);
}
.winners-crown { font-size: 1.5rem; }
.winners-label {
  flex-shrink: 0;
  padding: 6px 12px;
  background: var(--felt);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 6px;
}
.winners-track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.flux-marquee {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: winners-scroll 35s linear infinite;
}
.flux-marquee:hover { animation-play-state: paused; }
@keyframes winners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.flux-win { white-space: nowrap; font-size: 14px; color: var(--muted); font-weight: 500; }
.flux-win-amt { color: var(--gold-dark); font-weight: 800; }
.winners-stat { text-align: right; flex-shrink: 0; }
.winners-num {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--felt);
  line-height: 1;
}
.winners-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.hero-footnote {
  position: relative;
  z-index: 2;
  margin: 0 auto 28px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* Game floor */
.casino-floor { padding: 0 0 72px; background: var(--bg); }
.floor-banner {
  background: linear-gradient(135deg, var(--casino-green) 0%, #0f4d32 100%);
  padding: 32px 0;
  margin-bottom: 28px;
  border-block: 4px solid var(--gold);
}
.floor-banner-inner { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.section-title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink);
}
.section-title-light { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.2); }
.section-title-center { text-align: center; }
.section-desc { margin: 0; color: var(--muted); max-width: 36em; }
.section-desc-light { color: rgba(255,255,255,.85); margin-inline: auto; }
.section-desc-center { text-align: center; margin-inline: auto; }

.vault-head { margin-bottom: 20px; }
.vault-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.filter-pill {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--line);
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--felt);
  background: var(--felt);
  color: var(--gold-bright);
  box-shadow: 0 4px 16px rgba(45, 27, 78, 0.25);
}

.vault-rail-wrap { position: relative; }
.vault-rail {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px;
}
.vault-rail::-webkit-scrollbar { display: none; }
.vault-rail-inner {
  display: flex;
  gap: 18px;
  width: max-content;
}
.vault-tile {
  flex: 0 0 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--card);
  border: 3px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(45, 27, 78, 0.1);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  animation: tile-pop 0.4s ease both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
@keyframes tile-pop {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.vault-tile:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: var(--jackpot-glow), 0 16px 40px rgba(45, 27, 78, 0.2);
}
.vault-tile-hot {
  border-color: var(--casino-red);
  box-shadow: 0 0 24px rgba(230, 57, 70, 0.25);
}
.vault-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.vault-hot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 10px;
  background: var(--casino-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 4px;
  animation: hot-pulse 1.5s ease infinite;
}
@keyframes hot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.vault-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.vault-tile:hover .vault-cover { transform: scale(1.08); }
.vault-thumb.has-cover .vault-initials { display: none; }
.vault-initials {
  font-family: var(--display);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.35);
}
.vault-body { padding: 14px 16px; }
.vault-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--felt-light);
}
.vault-title {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin: 4px 0;
}
.vault-meta { font-size: 12px; color: var(--muted); }
.vault-play {
  display: block;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--felt-light) 0%, var(--felt) 100%);
  color: var(--gold-bright);
  border-top: 2px solid var(--gold-dark);
}
.vault-scrollbar { margin-top: 12px; }
.vault-scrollbar-track {
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  cursor: pointer;
}
.vault-scrollbar-thumb {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--casino-red));
  cursor: grab;
}
body.vault-rail-dragging { cursor: grabbing; user-select: none; }

/* Deal cards */
.pathway {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 100%);
}
.pathway-header { text-align: center; margin-bottom: 40px; }
.deal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.deal-card {
  position: relative;
  padding: 28px 22px;
  background: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--line);
  text-align: center;
  box-shadow: 0 8px 28px rgba(45, 27, 78, 0.08);
  transition: transform 0.2s;
}
.deal-card:hover { transform: translateY(-6px); }
.deal-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fff5d6 100%);
  box-shadow: var(--jackpot-glow);
  transform: scale(1.03);
}
.deal-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.deal-num {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--felt-light);
  margin-bottom: 8px;
}
.deal-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--felt);
}
.deal-card p { margin: 0; font-size: 14px; color: var(--muted); }

/* Chip tiers */
.ascension {
  padding: 80px 0;
  background: var(--felt-deep);
  color: #fff;
}
.ascension .section-tag { color: var(--gold); }
.ascension .section-title { color: #fff; }
.ascension .section-desc { color: rgba(255,255,255,.7); }
.chip-ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.chip-tier {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.2s;
}
.chip-tier:hover { background: rgba(255, 255, 255, 0.1); }
.poker-chip {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.8rem;
  color: #fff;
  border: 6px dashed rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 4px 12px rgba(255, 255, 255, 0.2);
}
.chip-bronze .poker-chip { background: linear-gradient(145deg, #cd7f32, #8b4513); }
.chip-silver .poker-chip { background: linear-gradient(145deg, #e8e8e8, #9ca3af); color: var(--felt-deep); }
.chip-gold .poker-chip {
  background: linear-gradient(145deg, var(--gold-bright), var(--gold-dark));
  color: var(--felt-deep);
  box-shadow: var(--jackpot-glow), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.chip-tier h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: var(--gold-bright);
}
.chip-tier p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, 0.75); }

/* FAQ */
.prism {
  padding: 80px 0;
  background: var(--card);
  border-top: 4px solid var(--gold);
}
.prism-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.prism-contact { margin-top: 12px; font-size: 14px; }
.prism-item {
  margin-bottom: 10px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}
.prism-item summary {
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--felt);
}
.prism-item summary::-webkit-details-marker { display: none; }
.prism-item summary::after {
  content: "+";
  float: right;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--gold-dark);
}
.prism-item[open] summary::after { content: "−"; }
.prism-item[open] summary { background: var(--bg-cream); }
.prism-item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--muted);
}

/* Mega CTA */
.mega-cta,
.invite-banner {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}
.mega-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(245, 184, 0, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, var(--felt) 0%, var(--felt-deep) 100%);
}
.mega-cta-inner,
.invite-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.mega-cta-tag,
.invite-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.mega-cta-title,
.invite-title {
  margin: 0 0 12px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.mega-cta-text,
.invite-text {
  margin: 0 0 28px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32em;
  margin-inline: auto;
}

/* Footer */
.site-footer,
.seal-footer,
.nebula-footer {
  padding: 48px 0 36px;
  background: #0f0a18;
  color: rgba(255, 255, 255, 0.75);
  border-top: 4px solid var(--gold);
}
.site-footer-inner,
.seal-inner,
.nebula-inner { display: grid; gap: 28px; }
.site-footer a, .seal-footer a, .nebula-footer a { color: var(--gold-bright); }
.site-footer-tagline,
.seal-tagline,
.nebula-tagline { margin: 10px 0 0; font-size: 13px; opacity: 0.65; }
.site-footer-links,
.seal-links,
.nebula-links { display: flex; flex-wrap: wrap; gap: 10px; }
.site-footer-links a,
.seal-links a,
.nebula-links a,
.seal-chip {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
.site-footer-disclaimer,
.seal-disclaimer,
.nebula-disclaimer {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.6;
}
.site-footer-rg-label,
.seal-rg-label,
.nebula-rg-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.site-footer-rg-links,
.seal-rg-logos,
.nebula-rg-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.site-footer-rg-links img,
.nebula-rg-link img,
.seal-rg-logo {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

/* Dock + cookies */
.dock-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, var(--felt-deep), var(--felt));
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}
body.cookie-banner-visible .dock-bar {
  bottom: var(--cookie-banner-offset, 0);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 160;
  padding: 16px;
  background: var(--card);
  border-top: 3px solid var(--felt);
  transform: translateY(100%);
  transition: transform 0.3s;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.15);
}
.cookie-banner.active { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner-text { margin: 0; flex: 1; min-width: 200px; font-size: 13px; color: var(--muted); }
.cookie-banner-actions { display: flex; gap: 12px; align-items: center; }
.cookie-banner-dismiss {
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 10, 24, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-backdrop.active { opacity: 1; visibility: visible; }
.modal-panel {
  position: relative;
  width: min(100%, 440px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 4px solid var(--gold);
  box-shadow: var(--jackpot-glow), var(--felt-shadow);
}
.modal-panel h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--felt);
}
.modal-lede { margin: 0 0 20px; font-size: 14px; color: var(--muted); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--felt);
  font-size: 22px;
  cursor: pointer;
}
.age-actions { display: flex; flex-direction: column; gap: 10px; }

.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.form-row input,
.form-row select,
.dob-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 15px;
}
.form-row input:focus,
.form-row select:focus,
.dob-select:focus {
  outline: none;
  border-color: var(--felt);
  box-shadow: 0 0 0 3px rgba(45, 27, 78, 0.15);
}
.field-invalid input,
.dob-invalid .dob-select { border-color: var(--casino-red); }
.field-error,
.dob-error,
.form-error { margin: 6px 0 0; font-size: 12px; color: var(--casino-red); font-weight: 600; }
.form-success { margin: 8px 0 0; font-size: 13px; color: var(--casino-green); font-weight: 700; }
.dob-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 8px; }
.dob-hint { font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Legal + game */
.legal-body { background: var(--bg); padding-bottom: 48px; }
.legal-masthead {
  padding: 16px 20px;
  background: var(--felt);
  border-bottom: 3px solid var(--gold);
}
.legal-masthead img { height: 36px; }
.legal-wrap { width: min(100% - 32px, 720px); margin: 32px auto; }
.legal-wrap h1 { font-family: var(--display); font-size: 2.5rem; color: var(--felt); }
.legal-wrap h2 { margin: 32px 0 12px; font-family: var(--display); font-size: 1.5rem; color: var(--felt-light); }
.legal-wrap p, .legal-wrap li { color: var(--muted); font-size: 15px; }
.callout-box {
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
  background: var(--bg-cream);
  color: var(--ink-soft);
  font-size: 14px;
}

.game-page-body { min-height: 100vh; display: flex; flex-direction: column; }
.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--felt);
  border-bottom: 3px solid var(--gold);
}
.game-header .site-brand img { height: 34px; }
.game-back { color: var(--gold-bright); font-weight: 600; font-size: 14px; }
.game-frame-wrap { flex: 1; min-height: calc(100vh - 64px); }
.game-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 64px);
  border: none;
  background: #111;
}

/* Responsive */
@media (min-width: 960px) {
  .live-pulse { display: flex; }
  .header-join { display: inline-flex; }
}
@media (max-width: 959px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: var(--felt-deep);
    border-bottom: 3px solid var(--gold);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 199;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-burger { display: flex; }
  .casino-hero-stage {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions, .hero-chips-row { justify-content: center; }
  .hero-lead, .hero-legal { margin-inline: auto; }
  .slot-showcase { order: -1; margin-bottom: 16px; }
  .slot-machine { transform: none; animation: none; }
  .promo-tickets { grid-template-columns: 1fr; }
  .deal-cards, .chip-ladder { grid-template-columns: 1fr; }
  .deal-card-featured { transform: none; }
  .prism-grid { grid-template-columns: 1fr; }
  .float-chip { display: none; }
}
@media (max-width: 640px) {
  .dock-bar { display: block; }
  .resort-page main { padding-bottom: calc(var(--dock-h) + 16px + var(--cookie-banner-offset, 0px)); }
  .winners-stat { display: none; }
  .header-join { display: none; }
  .led-text { display: none; }
}
