/* ============================================
   AURA GAMBLE — Casino Royale Stylesheet
   ============================================ */

:root {
  --plum: #1A0A1E;
  --plum-light: #2A1530;
  --amber: #FFAA2B;
  --amber-glow: rgba(255, 170, 43, 0.6);
  --ruby: #9B1B30;
  --champagne: #F5ECD7;
  --mauve: #6B5060;
  --emerald: #00875A;
  --font-display: 'Bodoni Moda', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Victor Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--plum);
  color: var(--champagne);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Velvet texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.008) 0px,
    rgba(255,255,255,0.008) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ---- PARTICLES ---- */
.particle {
  position: fixed;
  border-radius: 50%;
  background: var(--amber);
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) translateX(var(--drift));
    opacity: 0;
  }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  background: rgba(26, 10, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 170, 43, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: var(--amber);
  text-shadow: 0 0 20px rgba(255, 170, 43, 0.4);
  text-decoration: none;
  letter-spacing: 4px;
}

.nav-ca {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ca-address {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--champagne);
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-address:hover {
  opacity: 1;
}

.ca-copy {
  background: none;
  border: none;
  color: var(--champagne);
  opacity: 0.5;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s, color 0.2s;
}

.ca-copy:hover {
  opacity: 1;
  color: var(--amber);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  color: var(--champagne);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s, filter 0.2s;
  display: flex;
  align-items: center;
}

.nav-social:hover {
  opacity: 1;
  color: var(--amber);
  filter: drop-shadow(0 0 6px rgba(255,170,43,0.4));
}

.nav-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.score-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--mauve);
  letter-spacing: 2px;
}

.score-value {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
  text-shadow: 0 0 12px rgba(255, 170, 43, 0.5);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 12px rgba(255,170,43,0.5); }
  50% { text-shadow: 0 0 20px rgba(255,170,43,0.8); }
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--champagne);
  background: rgba(26,10,30,0.95);
  border: 1px solid rgba(255,170,43,0.2);
  padding: 10px 24px;
  border-radius: 8px;
  z-index: 3000;
  transition: bottom 0.3s ease;
  backdrop-filter: blur(10px);
}

.toast.show {
  bottom: 32px;
}

/* ---- FLASH OVERLAY ---- */
.flash-overlay {
  position: fixed;
  inset: 0;
  background: var(--amber);
  opacity: 0;
  pointer-events: none;
  z-index: 2500;
  transition: opacity 0.15s;
}

.flash-overlay.flash {
  opacity: 0.3;
}

/* ---- HALL (generic) ---- */
.hall {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  overflow: hidden;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(26,10,30,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.hall > *:not(.vignette) {
  position: relative;
  z-index: 2;
}

/* ---- HALL I — ENTRANCE ---- */
.hall-entrance {
  gap: 20px;
  text-align: center;
  background: url('static/aura.png') center center / cover no-repeat;
}

.hall-entrance .vignette {
  background: radial-gradient(ellipse at center, rgba(26,10,30,0.55) 0%, rgba(26,10,30,0.92) 100%);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 20vw, 180px);
  color: var(--champagne);
  letter-spacing: 12px;
  line-height: 1;
  margin-bottom: -10px;
}

.hero-figure {
  width: clamp(200px, 40vw, 320px);
  height: auto;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 30px rgba(255,170,43,0.4));
  animation: figure-glow 3s ease-in-out infinite;
}

@keyframes figure-glow {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(255,170,43,0.3)) drop-shadow(0 0 60px rgba(255,170,43,0.15));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255,170,43,0.5)) drop-shadow(0 0 80px rgba(255,170,43,0.25)) drop-shadow(0 0 120px rgba(255,170,43,0.1));
  }
}

/* Pulse rings */
.pulse-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 170, 43, 0.3);
  animation: pulse-ring 4s ease-out infinite;
}

.ring:nth-child(2) { animation-delay: 1.3s; }
.ring:nth-child(3) { animation-delay: 2.6s; }

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--amber);
  max-width: 500px;
}

.enter-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--amber);
  background: transparent;
  border: 1px solid var(--amber);
  padding: 14px 40px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 12px;
}

.enter-btn:hover {
  background: rgba(255, 170, 43, 0.1);
  box-shadow: 0 0 20px rgba(255, 170, 43, 0.2), inset 0 0 20px rgba(255, 170, 43, 0.05);
}

/* ---- SECTION DIVIDERS ---- */
.hall-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 24px;
  background: var(--plum);
  position: relative;
}

.divider-line {
  width: min(180px, 20vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,170,43,0.3), transparent);
}

.divider-motif {
  color: var(--amber);
  font-size: 12px;
  opacity: 0.6;
  text-shadow: 0 0 12px rgba(255,170,43,0.4);
  flex-shrink: 0;
}

.motif-suit {
  font-size: 16px;
}

.motif-chip {
  font-size: 20px;
  border: 1px dashed rgba(255,170,43,0.3);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  box-shadow: 0 0 10px rgba(255,170,43,0.15);
}

.motif-dots {
  letter-spacing: 6px;
  font-size: 14px;
}

/* ---- CASINO FLOATING DECORATIONS ---- */
.casino-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.decor-suit {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: var(--size);
  opacity: 0;
  animation: decor-float var(--dur) var(--delay) ease-in-out infinite;
  filter: blur(0.5px);
}

@keyframes decor-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.06;
  }
  25% {
    transform: translateY(-15px) rotate(8deg);
    opacity: 0.12;
  }
  50% {
    transform: translateY(-5px) rotate(-5deg);
    opacity: 0.08;
  }
  75% {
    transform: translateY(-20px) rotate(12deg);
    opacity: 0.1;
  }
}

.decor-chip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 2px dashed rgba(255,170,43,0.12);
  opacity: 0;
  animation: decor-chip-spin var(--dur) var(--delay) linear infinite;
}

@keyframes decor-chip-spin {
  0%, 100% {
    transform: rotate(0deg);
    opacity: 0.08;
  }
  50% {
    transform: rotate(180deg);
    opacity: 0.15;
  }
}

.decor-die {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(245,236,215,0.08);
  border-radius: 5px;
  opacity: 0;
  animation: decor-die-tilt var(--dur) var(--delay) ease-in-out infinite;
}

.decor-die .dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(245,236,215,0.15);
}

.dot-center { top: 50%; left: 50%; transform: translate(-50%,-50%); }
.dot-tl { top: 5px; left: 5px; }
.dot-br { bottom: 5px; right: 5px; }

@keyframes decor-die-tilt {
  0%, 100% {
    transform: rotate(-8deg) scale(1);
    opacity: 0.06;
  }
  50% {
    transform: rotate(8deg) scale(1.05);
    opacity: 0.12;
  }
}

/* ---- HALL II — THE TABLE + SCOREBOARD (combined) ---- */
.hall-combined {
  padding: 80px 40px;
}

.combined-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
}

.combined-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.combined-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

@media (max-width: 960px) {
  .combined-layout {
    flex-direction: column;
    gap: 48px;
  }
}

.hall-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--mauve);
  text-transform: uppercase;
}

.roulette-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheel-pointer {
  position: relative;
  z-index: 10;
  margin-bottom: -14px;
  filter: drop-shadow(0 0 8px rgba(255,170,43,0.6));
}

.roulette-container {
  perspective: 800px;
}

.roulette-wheel {
  width: 380px;
  height: 380px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(20deg) rotate(0deg);
  transition: none;
}

.roulette-wheel.spinning {
  transition: transform cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

#wheelCanvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

.spin-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 6px;
  color: var(--amber);
  background: transparent;
  border: 2px solid var(--amber);
  padding: 16px 60px;
  cursor: pointer;
  transition: all 0.3s;
}

.spin-btn:hover:not(:disabled) {
  box-shadow: 0 0 30px rgba(255, 170, 43, 0.3), inset 0 0 30px rgba(255, 170, 43, 0.05);
  transform: scale(1.05);
}

.spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.spin-btn.spinning-text {
  letter-spacing: 12px;
}

/* ---- TICKET OVERLAY ---- */
.ticket-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.4s, visibility 0.4s;
}

.ticket-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ticket-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.aura-ticket {
  position: relative;
  display: flex;
  width: min(420px, 90vw);
  height: 240px;
  border-radius: 16px;
  border: 1px solid rgba(255, 170, 43, 0.3);
  background: linear-gradient(135deg, rgba(255,170,43,0.08) 0%, rgba(26,10,30,0.95) 100%);
  overflow: hidden;
  animation: ticket-in 0.5s ease-out;
}

@keyframes ticket-in {
  from {
    transform: scale(0.8) rotateX(10deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotateX(0);
    opacity: 1;
  }
}

.ticket-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 4px;
}

.ticket-header {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--mauve);
  text-transform: uppercase;
}

.ticket-score {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--amber);
  text-shadow: 0 0 30px rgba(255, 170, 43, 0.6);
  line-height: 1;
}

.ticket-score.void {
  color: var(--ruby);
  text-shadow: 0 0 30px rgba(155, 27, 48, 0.6);
  font-size: 48px;
}

.ticket-score.jackpot {
  color: var(--emerald);
  text-shadow: 0 0 30px rgba(0,135,90,0.6), 0 0 60px rgba(0,135,90,0.3);
  animation: jackpot-glow 0.6s ease-in-out 3;
}

@keyframes jackpot-glow {
  0%, 100% { text-shadow: 0 0 30px rgba(0,135,90,0.6); }
  50% { text-shadow: 0 0 50px rgba(0,135,90,0.9), 0 0 80px rgba(255,170,43,0.4); }
}

.ticket-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--champagne);
  letter-spacing: 2px;
}

.ticket-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.ticket-meta span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mauve);
}

.ticket-perf {
  width: 0;
  border-right: 2px dashed rgba(255, 170, 43, 0.2);
  align-self: stretch;
}

.ticket-stub {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 8px;
}

.stub-text {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--mauve);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.stub-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--amber);
  opacity: 0.6;
}

.ticket-actions {
  position: relative;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.spin-again-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--amber);
  background: transparent;
  border: 1px solid var(--amber);
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.spin-again-btn:hover {
  background: rgba(255, 170, 43, 0.1);
  box-shadow: 0 0 16px rgba(255, 170, 43, 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 56px);
  color: var(--amber);
  text-shadow: 0 0 30px rgba(255, 170, 43, 0.3);
  letter-spacing: 4px;
  text-align: center;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mauve);
  text-align: center;
}

.scoreboard-wrap {
  width: min(600px, 90vw);
  overflow-x: auto;
}

.scoreboard {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
}

.scoreboard thead th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--mauve);
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 170, 43, 0.1);
}

.scoreboard tbody tr {
  transition: background 0.2s;
}

.scoreboard tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.scoreboard tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.scoreboard tbody tr.best-row {
  background: rgba(255, 170, 43, 0.08);
  box-shadow: 0 0 20px rgba(255, 170, 43, 0.1);
}

.scoreboard tbody tr.best-row td {
  color: var(--amber);
  text-shadow: 0 0 8px rgba(255, 170, 43, 0.3);
}

.scoreboard td {
  padding: 10px 16px;
  color: var(--champagne);
}

.total-session {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
}

.total-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--mauve);
  text-transform: uppercase;
}

.total-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--amber);
  text-shadow: 0 0 30px rgba(255, 170, 43, 0.5);
}

/* ---- HALL IV — THE VIDEO ---- */
.hall-video {
  padding: 80px 24px;
}

.video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(680px, 90vw);
}

.video-desc {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 17px);
  color: var(--champagne);
  opacity: 0.85;
  line-height: 1.7;
  text-align: center;
}

.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,170,43,0.15);
  box-shadow: 0 0 40px rgba(255,170,43,0.08), 0 0 80px rgba(26,10,30,0.6);
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- HALL V — BUY IN ---- */
.hall-buyin {
  gap: 40px;
}

.chip-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -20px;
}

.chip {
  width: min(280px, 80vw);
  height: min(280px, 80vw);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  border: 3px solid;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  margin-top: -40px;
}

.chip:first-child {
  margin-top: 0;
}

.chip:hover {
  transform: translateY(-8px);
  z-index: 10;
}

.chip-ruby {
  background: rgba(155, 27, 48, 0.15);
  border-color: var(--ruby);
  z-index: 4;
}
.chip-ruby:hover { box-shadow: 0 8px 30px rgba(155, 27, 48, 0.3); }

.chip-plum {
  background: rgba(42, 21, 48, 0.8);
  border-color: var(--mauve);
  z-index: 3;
}
.chip-plum:hover { box-shadow: 0 8px 30px rgba(107, 80, 96, 0.3); }

.chip-amber {
  background: rgba(255, 170, 43, 0.05);
  border-color: var(--amber);
  z-index: 2;
}
.chip-amber:hover { box-shadow: 0 8px 30px rgba(255, 170, 43, 0.3); }

.chip-emerald {
  background: rgba(0, 135, 90, 0.1);
  border-color: var(--emerald);
  z-index: 1;
}
.chip-emerald:hover { box-shadow: 0 8px 30px rgba(0, 135, 90, 0.3); }

.chip-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--champagne);
  line-height: 1;
}

.chip-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--champagne);
  opacity: 0.8;
  line-height: 1.5;
}

/* ---- FOOTER ---- */
.footer {
  padding: 60px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: linear-gradient(to bottom, var(--plum), #120814);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--amber);
  text-shadow: 0 0 20px rgba(255, 170, 43, 0.3);
  animation: glow-pulse 4s ease-in-out infinite;
}

.footer-ca {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mauve);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-ca:hover {
  color: var(--champagne);
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }
.fade-in:nth-child(7) { transition-delay: 0.6s; }
.fade-in:nth-child(8) { transition-delay: 0.7s; }
.fade-in:nth-child(9) { transition-delay: 0.8s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .casino-decor {
    display: none;
  }

  .navbar {
    padding: 0 12px;
    height: 48px;
  }

  .nav-logo {
    font-size: 22px;
  }

  .nav-ca {
    display: none;
  }

  .roulette-wheel {
    width: 280px;
    height: 280px;
  }

  .chip {
    width: min(240px, 75vw);
    height: min(240px, 75vw);
  }

  .aura-ticket {
    width: 90vw;
    height: auto;
    min-height: 200px;
  }

  .ticket-score {
    font-size: 48px;
  }

  .ticket-stub {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .roulette-wheel {
    width: 240px;
    height: 240px;
  }

  .spin-btn {
    font-size: 18px;
    padding: 12px 40px;
  }

  .chip {
    width: min(200px, 70vw);
    height: min(200px, 70vw);
    padding: 20px;
  }

  .chip-num {
    font-size: 36px;
  }

  .chip-text {
    font-size: 12px;
  }

  .ticket-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle,
  .ring {
    display: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
