/* Vegas Party Social Entertainment - styles.css */
/* Colors: black, hot magenta, electric blue, champagne gold, deep violet, warm white */

:root {
  --black: #0a0a0a;
  --magenta: #FF0066;
  --electric-blue: #00D4FF;
  --gold: #D4AF37;
  --violet: #2D0050;
  --warm-white: #FFF8F0;
  --dark-surface: #111111;
  --card-bg: #1a1a1a;
  --border-glow: rgba(255, 0, 102, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--magenta);
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   1. PARTY WRISTBAND ENTRY (Header)
   ======================================== */

.wristband-entry {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--dark-surface) 0%, #1a0028 100%);
  border-bottom: 2px solid var(--magenta);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(255, 0, 102, 0.2);
}

.wristband-entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(255, 0, 102, 0.03) 20px,
    rgba(255, 0, 102, 0.03) 21px
  );
  pointer-events: none;
}

.wristband-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wristband-nav {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.nav-chip {
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--warm-white);
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}

.nav-chip:hover {
  border-color: var(--magenta);
  background: rgba(255, 0, 102, 0.1);
  color: var(--magenta);
}

.age-stamp {
  background: var(--magenta);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  border: 2px solid var(--gold);
  transform: rotate(-3deg);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--magenta);
  color: var(--magenta);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ========================================
   2. EVENT MAP INTRO
   ======================================== */

.event-map {
  padding: 8rem 2rem 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at center, #1a0028 0%, var(--black) 70%);
}

.event-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 0, 102, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(0, 212, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.map-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.map-zone {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.2rem 0.8rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.map-zone:hover {
  border-color: var(--magenta);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 0, 102, 0.2);
}

.map-zone-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.6rem;
}

.map-zone-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--warm-white);
}

.map-heading {
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-heading h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-heading p {
  font-size: 1.05rem;
  color: rgba(255, 248, 240, 0.7);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-route {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--magenta), #cc0052);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 0, 102, 0.4);
}

.cta-route:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 0, 102, 0.5);
  color: white;
}

.map-age-badge {
  margin-top: 1.5rem;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ========================================
   3. MAIN FLOOR MOMENT
   ======================================== */

.main-floor {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.main-floor::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(
      rgba(255, 0, 102, 0.03) 0% 25%,
      transparent 0% 50%
    ) 0 0 / 60px 60px;
  animation: floorPulse 4s ease-in-out infinite alternate;
}

@keyframes floorPulse {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.floor-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 0, 102, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 8s linear infinite;
}

@keyframes gridShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.floor-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.floor-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--warm-white);
}

.floor-content > p {
  font-size: 1rem;
  color: rgba(255, 248, 240, 0.7);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.floor-notices {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}

.floor-notice {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floor-notice--entertainment {
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
}

.floor-notice--no-money {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.floor-notice--age {
  border: 1px solid var(--magenta);
  color: var(--magenta);
}

.floor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.floor-card {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

.floor-card:hover {
  border-color: var(--electric-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.15);
}

.floor-card-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.8rem;
}

.floor-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.floor-card p {
  font-size: 0.8rem;
  color: rgba(255, 248, 240, 0.6);
}

/* ========================================
   4. REEL ROOM ENTRANCE
   ======================================== */

.reel-entrance {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--black) 0%, #1a0010 50%, var(--black) 100%);
}

.velvet-rope {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--gold), var(--magenta), transparent);
  border-radius: 2px;
  position: relative;
}

.velvet-rope::before,
.velvet-rope::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.velvet-rope::before { left: 0; }
.velvet-rope::after { right: 0; }

.reel-entrance h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold);
}

.reel-entrance > p {
  color: rgba(255, 248, 240, 0.7);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}

.reel-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.reel-info-item {
  padding: 1rem;
  background: rgba(255, 0, 102, 0.05);
  border: 1px solid rgba(255, 0, 102, 0.2);
  border-radius: 10px;
}

.reel-info-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.3rem;
}

.reel-info-item p {
  font-size: 0.8rem;
  color: rgba(255, 248, 240, 0.7);
}

.btn-open-reel {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), #b8941e);
  color: var(--black);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-open-reel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* ========================================
   5. THE REEL ROOM
   ======================================== */

.reel-room {
  padding: 4rem 1rem;
  background: radial-gradient(ellipse at center, #1a0028 0%, var(--black) 60%);
  position: relative;
  overflow: hidden;
}

.reel-room::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 102, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.reel-booth {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(26, 26, 26, 0.95);
  border: 2px solid rgba(255, 0, 102, 0.3);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow:
    0 0 40px rgba(255, 0, 102, 0.1),
    0 0 80px rgba(45, 0, 80, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.reel-booth-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reel-display {
  background: #050505;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 0.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.reel-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.reel-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.reel-cell svg {
  width: 70%;
  height: 70%;
}

.reel-cell.winning {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  animation: cellWin 0.5s ease-in-out;
}

@keyframes cellWin {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.reel-cell.spinning {
  animation: spinBlur 0.1s linear infinite;
}

@keyframes spinBlur {
  0% { opacity: 0.4; transform: translateY(-2px); }
  50% { opacity: 0.7; transform: translateY(2px); }
  100% { opacity: 0.4; transform: translateY(-2px); }
}

.reel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.btn-spin {
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--magenta), #cc0052);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 0, 102, 0.4);
}

.btn-spin:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 0, 102, 0.5);
}

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

.btn-auto {
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid var(--electric-blue);
  color: var(--electric-blue);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-auto:hover {
  background: rgba(0, 212, 255, 0.1);
}

.btn-auto.active {
  background: var(--electric-blue);
  color: var(--black);
}

.reel-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.reel-stat {
  text-align: center;
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.reel-stat-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 248, 240, 0.5);
  margin-bottom: 0.2rem;
}

.reel-stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}

.win-lines-panel {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
}

.win-lines-panel h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.5);
  margin-bottom: 0.4rem;
}

.win-result {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--magenta);
  min-height: 1.4rem;
}

/* Light sweep animation */
.light-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
  animation: sweep 6s ease-in-out infinite;
}

@keyframes sweep {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Confetti */
.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
}

@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}

/* ========================================
   6. SPIN MEMORY STRIP
   ======================================== */

.spin-memory {
  padding: 3rem 2rem;
  background: var(--dark-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spin-memory h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--warm-white);
}

.memory-strip {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--magenta) var(--dark-surface);
}

.memory-strip::-webkit-scrollbar {
  height: 4px;
}

.memory-strip::-webkit-scrollbar-track {
  background: var(--dark-surface);
}

.memory-strip::-webkit-scrollbar-thumb {
  background: var(--magenta);
  border-radius: 2px;
}

.memory-frame {
  flex-shrink: 0;
  width: 140px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
  position: relative;
}

.memory-frame.win {
  border-color: var(--gold);
}

.memory-frame.loss {
  border-color: rgba(255, 255, 255, 0.1);
}

.memory-symbols {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.memory-symbols svg {
  width: 18px;
  height: 18px;
}

.memory-result {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.memory-result.win { color: var(--gold); }
.memory-result.loss { color: rgba(255, 248, 240, 0.4); }

.memory-multiplier {
  font-size: 0.6rem;
  color: var(--electric-blue);
  margin-top: 0.2rem;
}

/* ========================================
   7. PRIZE BAR COUNTER
   ======================================== */

.prize-bar {
  padding: 5rem 2rem;
  position: relative;
  background: linear-gradient(180deg, var(--black) 0%, #0a0a1a 50%, var(--black) 100%);
}

.prize-bar h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.prize-bar > p {
  text-align: center;
  color: rgba(255, 248, 240, 0.6);
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.bar-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.bar-item {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bar-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
}

.bar-item-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 248, 240, 0.5);
  margin-bottom: 0.5rem;
}

.bar-item-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.bar-item-icon {
  width: 24px;
  height: 24px;
  margin: 0.5rem auto 0;
  opacity: 0.4;
}

/* ========================================
   8. AFTERPARTY WALL
   ======================================== */

.afterparty-wall {
  padding: 5rem 2rem;
  position: relative;
}

.afterparty-wall h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--warm-white);
}

.afterparty-wall > p {
  text-align: center;
  color: rgba(255, 248, 240, 0.6);
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.poster-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.poster-sticker {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.2rem;
  transform: rotate(var(--rotation, 0deg));
  transition: all 0.3s;
}

.poster-sticker:nth-child(odd) { --rotation: -1deg; }
.poster-sticker:nth-child(even) { --rotation: 1deg; }
.poster-sticker:nth-child(3n) { --rotation: -2deg; }

.poster-sticker:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--magenta);
}

.poster-type {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--magenta);
  margin-bottom: 0.4rem;
}

.poster-content {
  font-size: 0.85rem;
  color: var(--warm-white);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.poster-detail {
  font-size: 0.7rem;
  color: rgba(255, 248, 240, 0.5);
}

/* ========================================
   9. HOST NOTES
   ======================================== */

.host-notes {
  padding: 5rem 2rem;
  background: var(--dark-surface);
}

.host-notes h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--warm-white);
}

.host-notes > p {
  text-align: center;
  color: rgba(255, 248, 240, 0.6);
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.host-note-card {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.host-note-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 20px;
  height: 4px;
  background: var(--magenta);
  border-radius: 0 0 2px 2px;
}

.host-note-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--electric-blue);
  padding-top: 0.3rem;
}

.host-note-card p {
  font-size: 0.82rem;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.6;
}

/* ========================================
   10. BACKSTAGE QUESTIONS
   ======================================== */

.backstage-faq {
  padding: 5rem 2rem;
}

.backstage-faq h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--warm-white);
}

.backstage-faq > p {
  text-align: center;
  color: rgba(255, 248, 240, 0.6);
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.backstage-passes {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.backstage-pass {
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.backstage-pass:hover {
  border-color: rgba(255, 0, 102, 0.3);
}

.backstage-pass-header {
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.backstage-pass-header h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--warm-white);
}

.backstage-pass-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 0, 102, 0.1);
  border: 1px solid var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.backstage-pass-toggle svg {
  width: 12px;
  height: 12px;
  stroke: var(--magenta);
  transition: transform 0.3s;
}

.backstage-pass.open .backstage-pass-toggle svg {
  transform: rotate(180deg);
}

.backstage-pass-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.backstage-pass.open .backstage-pass-content {
  max-height: 300px;
}

.backstage-pass-answer {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

/* ========================================
   11. FINAL NIGHT CALL
   ======================================== */

.final-call {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--black) 0%, #1a0020 50%, var(--black) 100%);
}

.final-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 0, 102, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.final-call-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.final-call h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.final-call-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.final-call-item {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.7);
  padding: 0.5rem;
}

.final-call .cta-route {
  margin-top: 1rem;
}

.final-call-disclaimer {
  margin-top: 2rem;
  font-size: 0.7rem;
  color: rgba(255, 248, 240, 0.4);
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* ========================================
   12. FOOTER
   ======================================== */

.site-footer {
  padding: 3rem 2rem 2rem;
  background: var(--dark-surface);
  border-top: 2px solid rgba(255, 0, 102, 0.2);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.01) 30px,
    rgba(255, 255, 255, 0.01) 31px
  );
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.footer-responsible {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-responsible h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.responsible-link {
  font-size: 0.78rem;
  color: var(--electric-blue);
}

.responsible-link span {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 248, 240, 0.5);
  margin-top: 0.1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 248, 240, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--magenta);
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 248, 240, 0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-age {
  padding: 0.2rem 0.6rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 248, 240, 0.4);
}

/* ========================================
   MODAL
   ======================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--warm-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.modal-box h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--warm-white);
}

.modal-box p {
  font-size: 0.85rem;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* ========================================
   SECONDARY PAGES
   ======================================== */

.page-content {
  padding: 7rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--warm-white);
}

.page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 0.8rem;
  color: var(--gold);
}

.page-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.6rem;
  color: var(--electric-blue);
}

.page-content p {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.75);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
  margin: 0.8rem 0 1.2rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.75);
  line-height: 1.8;
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content a {
  color: var(--electric-blue);
}

.page-content a:hover {
  color: var(--magenta);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .wristband-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-surface);
    border-bottom: 2px solid var(--magenta);
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .wristband-nav.open {
    display: flex;
  }

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

  .map-zones {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-heading h1 {
    font-size: 1.8rem;
  }

  .floor-cards {
    grid-template-columns: 1fr;
  }

  .reel-info-grid {
    grid-template-columns: 1fr;
  }

  .reel-booth {
    padding: 1.2rem 0.8rem;
    border-radius: 16px;
  }

  .reel-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .reel-controls {
    flex-direction: column;
  }

  .btn-spin {
    width: 100%;
  }

  .btn-auto {
    width: 100%;
  }

  .bar-menu {
    grid-template-columns: 1fr 1fr;
  }

  .poster-wall {
    grid-template-columns: 1fr;
  }

  .poster-sticker {
    transform: rotate(0deg);
  }

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

  .responsible-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .wristband-entry {
    padding: 0.5rem 1rem;
  }

  .wristband-logo {
    font-size: 1rem;
  }

  .event-map {
    padding: 6rem 1rem 3rem;
  }

  .map-zones {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .reel-grid {
    gap: 2px;
  }

  .reel-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .bar-menu {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding: 6rem 1rem 3rem;
  }
}

/* ========================================
   UTILITY ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scorePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.score-pop {
  animation: scorePop 0.3s ease-out;
}

@keyframes vipPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
}
