/**
 * Build The Invisible — Live Awards Reveal Experience & Victory Studio Booth
 * Visual Design System, Metallic Themes (Bronze/Silver/Gold), Shutter Blade Animation & Supernova Particle Disperse
 */

:root {
  --bg-dark: #030509;
  --bg-surface: #0a0d14;
  --bg-card: rgba(13, 17, 26, 0.88);
  --border-line: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(56, 189, 248, 0.45);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --cyan-primary: #38bdf8;
  --cyan-glow: rgba(56, 189, 248, 0.55);
  --blue-primary: #2563eb;
  --gold-primary: #ffd700;
  --gold-glow: rgba(255, 215, 0, 0.65);
  --silver-primary: #e2e8f0;
  --silver-glow: rgba(226, 232, 240, 0.55);
  --bronze-primary: #f59e0b;
  --bronze-glow: rgba(245, 158, 11, 0.55);
  --magenta-primary: #ec4899;
  --emerald-primary: #10b981;
  --purple-primary: #a855f7;

  --mrbd-green: #00ff88;
  --mrbd-glow: rgba(0, 255, 136, 0.5);

  --font-mono: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
}

/* Background Atmosphere */
.universe-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 50%, black 45%, transparent 95%);
}

.spotlight-beam {
  position: fixed;
  top: -50%;
  left: 50%;
  width: 700px;
  height: 200%;
  transform: translateX(-50%) rotate(0deg);
  background: radial-gradient(ellipse at 50% 20%, rgba(56, 189, 248, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 2;
  transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.65;
}

.spotlight-beam.bronze {
  background: radial-gradient(ellipse at 50% 20%, rgba(245, 158, 11, 0.28), transparent 70%);
  width: 850px;
  opacity: 0.9;
}

.spotlight-beam.silver {
  background: radial-gradient(ellipse at 50% 20%, rgba(226, 232, 240, 0.32), transparent 70%);
  width: 900px;
  opacity: 0.95;
}

.spotlight-beam.gold {
  background: radial-gradient(ellipse at 50% 20%, rgba(255, 215, 0, 0.38), transparent 70%);
  width: 1000px;
  opacity: 1;
  animation: sweepSpotlight 8s infinite alternate ease-in-out;
}

@keyframes sweepSpotlight {
  0% { transform: translateX(-65%) rotate(-8deg); }
  100% { transform: translateX(-35%) rotate(8deg); }
}

/* Confetti Layer */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
}

/* Top Navigation Bar */
.awards-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 40;
  border-bottom: 1px solid var(--border-line);
  background: rgba(3, 5, 9, 0.88);
  backdrop-filter: blur(24px);
}

.brand-unit {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan-primary);
  box-shadow: 0 0 16px var(--cyan-primary);
  animation: pulseDot 2.4s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 24px var(--cyan-primary); }
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--border-line);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-line);
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.top-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.top-btn.sound-toggle {
  color: var(--cyan-primary);
  border-color: rgba(56, 189, 248, 0.3);
}

.top-btn.sound-toggle.muted {
  color: var(--text-muted);
  border-color: var(--border-line);
}

.top-btn.camera-btn {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.4);
  color: var(--cyan-primary);
  font-weight: 600;
}

.top-btn.camera-btn:hover {
  background: rgba(56, 189, 248, 0.25);
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* Stage Viewport */
.stage-viewport {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 76px 40px 60px;
}

.ceremony-scene {
  position: absolute;
  inset: 70px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95) translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.ceremony-scene.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

/* ==========================================================================
   META RAY-BAN DISPLAY NATIVE REVEAL HUD & THEME STYLING
   ========================================================================== */
.mrbd-waveguide-frame {
  position: relative;
  width: 100%;
  max-width: 1040px;
  background: rgba(10, 14, 22, 0.88);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 28px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.85), inset 0 0 35px rgba(56, 189, 248, 0.06);
  backdrop-filter: blur(32px);
  overflow: visible;
  z-index: 5;
  transition: border-color 0.8s ease, box-shadow 0.8s ease;
}

/* Placement Theme Variants for Waveguide Frame */
.theme-bronze .mrbd-waveguide-frame {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.25), inset 0 0 35px rgba(245, 158, 11, 0.08);
}
.theme-bronze .mrbd-corner {
  border-color: #f59e0b !important;
}

.theme-silver .mrbd-waveguide-frame {
  border-color: rgba(226, 232, 240, 0.65);
  box-shadow: 0 0 60px rgba(226, 232, 240, 0.3), inset 0 0 35px rgba(226, 232, 240, 0.1);
}
.theme-silver .mrbd-corner {
  border-color: #e2e8f0 !important;
}

.theme-gold .mrbd-waveguide-frame {
  border-color: rgba(255, 215, 0, 0.75);
  box-shadow: 0 0 70px rgba(255, 215, 0, 0.35), inset 0 0 40px rgba(255, 215, 0, 0.15);
}
.theme-gold .mrbd-corner {
  border-color: #ffd700 !important;
}

/* Monocular HUD Corner Ticks */
.mrbd-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 2;
}
.mrbd-corner.top-left {
  top: 14px;
  left: 14px;
  border-top: 3px solid var(--cyan-primary);
  border-left: 3px solid var(--cyan-primary);
}
.mrbd-corner.top-right {
  top: 14px;
  right: 14px;
  border-top: 3px solid var(--cyan-primary);
  border-right: 3px solid var(--cyan-primary);
}
.mrbd-corner.bottom-left {
  bottom: 14px;
  left: 14px;
  border-bottom: 3px solid var(--cyan-primary);
  border-left: 3px solid var(--cyan-primary);
}
.mrbd-corner.bottom-right {
  bottom: 14px;
  right: 14px;
  border-bottom: 3px solid var(--cyan-primary);
  border-right: 3px solid var(--cyan-primary);
}

/* Monocular Waveguide Scan Laser */
.mrbd-scan-laser {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-primary), #ffffff, var(--cyan-primary), transparent);
  box-shadow: 0 0 25px var(--cyan-primary);
  pointer-events: none;
  opacity: 0;
  z-index: 3;
}

.mrbd-scan-active .mrbd-scan-laser {
  animation: slowLaserSweep 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slowLaserSweep {
  0% { top: 0%; opacity: 1; }
  85% { top: 100%; opacity: 0.9; }
  100% { top: 100%; opacity: 0; }
}

/* Neural Wrist Pinch Wave Ring */
.neural-pinch-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  border: 2px solid var(--cyan-primary);
  box-shadow: 0 0 35px var(--cyan-glow);
  pointer-events: none;
  opacity: 0;
  z-index: 3;
}

.pinch-active .neural-pinch-ring {
  animation: slowPinchWave 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slowPinchWave {
  0% { transform: translate(-50%, -50%) scale(0.2); opacity: 1; border-width: 4px; }
  70% { opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(10); opacity: 0; border-width: 1px; }
}

/* ==========================================================================
   01. OPENING STAGE
   ========================================================================== */
.opening-wrap {
  text-align: center;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.ceremony-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--cyan-primary);
  text-transform: uppercase;
  padding: 6px 18px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 999px;
  animation: glowKicker 3s infinite alternate ease-in-out;
}

@keyframes glowKicker {
  0% { box-shadow: 0 0 10px rgba(56, 189, 248, 0.1); }
  100% { box-shadow: 0 0 25px rgba(56, 189, 248, 0.35); }
}

.main-awards-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 30%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.main-awards-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-primary);
  -webkit-text-fill-color: var(--cyan-primary);
  filter: drop-shadow(0 0 25px var(--cyan-glow));
}

.opening-lead {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.5;
}

.opening-meta-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-line);
  border-radius: 12px;
}

.opening-meta-strip b {
  color: var(--text-primary);
  font-weight: 600;
}

.cta-pulse-prompt {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--cyan-primary);
  cursor: pointer;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  transition: all 0.3s ease;
  animation: bouncePrompt 2s infinite ease-in-out;
}

.cta-pulse-prompt:hover {
  background: rgba(56, 189, 248, 0.25);
  transform: scale(1.04);
}

@keyframes bouncePrompt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ==========================================================================
   02. FULLSCREEN CINEMATIC HONORABLE MENTIONS STAGE
   ========================================================================== */
.mentions-fullscreen-wrap {
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mentions-header {
  text-align: center;
}

.mentions-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mentions-nav-indicator {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.mention-hero-showcase {
  width: 100%;
  padding: 38px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.mention-icon-huge {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  background: #020617;
  border: 2px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
}

.mention-icon-huge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mention-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.category-badge-pill {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}

.mention-project-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.05;
}

.team-highlight-banner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--cyan-primary);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.theme-bronze .team-highlight-banner { border-left-color: #f59e0b; }
.theme-silver .team-highlight-banner { border-left-color: #e2e8f0; }
.theme-gold .team-highlight-banner { border-left-color: #ffd700; }

.team-highlight-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--cyan-primary);
  text-transform: uppercase;
}

.theme-bronze .team-highlight-name { color: #f59e0b; }
.theme-silver .team-highlight-name { color: #e2e8f0; }
.theme-gold .team-highlight-name { color: #ffd700; }

.team-builders-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: #f1f5f9;
}

.team-builders-row b {
  color: #94a3b8;
  font-weight: 600;
}

.mention-reason-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.5;
}

.mention-ai-remarks-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  position: relative;
  z-index: 10;
}

.ai-remark-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 15, 26, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  color: #f1f5f9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(56, 189, 248, 0.15);
}

.mentions-pagination {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.mention-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.mention-dot.active {
  background: var(--cyan-primary);
  box-shadow: 0 0 10px var(--cyan-primary);
  width: 48px;
}

/* ==========================================================================
   03. WINNER REVEALS & SUPERNOVA DISPERSION
   ========================================================================== */
#scene-winner {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.winner-reveal-wrap {
  width: 100%;
  height: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

/* ==========================================================================
   02. CINEMA-GRADE FULLSCREEN RIPPLE REVEAL & SHOCKWAVE SYSTEM
   ========================================================================== */

/* Fullscreen Ripple Blast Wave (Overlay on Reveal Moment) */
.fullscreen-ripple-blast {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 80;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.fullscreen-ripple-blast.blast-active {
  opacity: 1;
}

.blast-wave {
  position: absolute;
  border-radius: 50%;
  border: 4px solid #ffffff;
  opacity: 0;
  transform: scale(0);
}

.blast-active .blast-wave.wave-1 {
  animation: fullscreenRippleBlast 0.95s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

.blast-active .blast-wave.wave-2 {
  animation: fullscreenRippleBlast 0.95s cubic-bezier(0.1, 0.9, 0.2, 1) 0.12s forwards;
  border-color: var(--cyan-primary);
}

.blast-active .blast-wave.wave-3 {
  animation: fullscreenRippleBlast 0.95s cubic-bezier(0.1, 0.9, 0.2, 1) 0.24s forwards;
  border-color: var(--gold-primary);
}

.blast-chromatic-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
}

.blast-active .blast-chromatic-ring {
  animation: chromaticWaveDistort 0.9s ease-out forwards;
}

@keyframes fullscreenRippleBlast {
  0% {
    width: 60px;
    height: 60px;
    transform: scale(0.2);
    opacity: 1;
    border-width: 14px;
    filter: brightness(3);
  }
  40% {
    opacity: 0.9;
    border-width: 8px;
    filter: brightness(2) blur(2px);
  }
  100% {
    width: 60px;
    height: 60px;
    transform: scale(38);
    opacity: 0;
    border-width: 1px;
    filter: brightness(1) blur(12px);
  }
}

@keyframes chromaticWaveDistort {
  0% { transform: scale(0.5); opacity: 0.9; box-shadow: 0 0 100px #fff; }
  100% { transform: scale(25); opacity: 0; box-shadow: 0 0 200px rgba(56, 189, 248, 0); }
}

/* Fullscreen Concentric Ripple Field in Suspense Stage */
.suspense-box {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 5;
  margin: 0 auto;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.suspense-box.hidden {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  position: absolute;
}

.fullscreen-ripple-field {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

/* Background ripples for Honorable Mentions */
.mentions-ripple-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.mentions-ripple-bg .ripple-ring {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: inset 0 0 25px rgba(56, 189, 248, 0.06), 0 0 40px rgba(56, 189, 248, 0.1);
  opacity: 0.22;
}

.ripple-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(56, 189, 248, 0.25);
  box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.05), 0 0 30px rgba(56, 189, 248, 0.08);
  animation: ambientRippleSurge 5s infinite cubic-bezier(0.2, 0.6, 0.4, 1);
  opacity: 0.2;
}

/* Progressive Geometric Ripple Scaling */
.ripple-ring.ring-1 { width: 140px; height: 140px; animation-delay: 0.0s; }
.ripple-ring.ring-2 { width: 260px; height: 260px; animation-delay: 0.4s; }
.ripple-ring.ring-3 { width: 420px; height: 420px; animation-delay: 0.8s; }
.ripple-ring.ring-4 { width: 620px; height: 620px; animation-delay: 1.2s; }
.ripple-ring.ring-5 { width: 880px; height: 880px; animation-delay: 1.6s; }
.ripple-ring.ring-6 { width: 1180px; height: 1180px; animation-delay: 2.0s; }
.ripple-ring.ring-7 { width: 1540px; height: 1540px; animation-delay: 2.4s; }
.ripple-ring.ring-8 { width: 1960px; height: 1960px; animation-delay: 2.8s; }

/* Themed Ripple Accents */
.theme-bronze .ripple-ring {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: inset 0 0 25px rgba(245, 158, 11, 0.08), 0 0 35px rgba(217, 119, 6, 0.12);
}

.theme-silver .ripple-ring {
  border-color: rgba(226, 232, 240, 0.4);
  box-shadow: inset 0 0 25px rgba(226, 232, 240, 0.08), 0 0 35px rgba(56, 189, 248, 0.15);
}

.theme-gold .ripple-ring {
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow: inset 0 0 35px rgba(255, 215, 0, 0.12), 0 0 50px rgba(255, 215, 0, 0.2);
}

@keyframes ambientRippleSurge {
  0% { transform: scale(0.92); opacity: 0.15; }
  50% { transform: scale(1.08); opacity: 0.45; }
  100% { transform: scale(0.92); opacity: 0.15; }
}

/* Drum Roll Energetic Wave Surging Across Fullscreen */
.drumroll-active .ripple-ring {
  animation: drumrollRippleSurge 0.5s infinite cubic-bezier(0.1, 0.8, 0.3, 1) !important;
}

.drumroll-active .ripple-ring.ring-1 { animation-delay: 0.0s !important; }
.drumroll-active .ripple-ring.ring-2 { animation-delay: 0.06s !important; }
.drumroll-active .ripple-ring.ring-3 { animation-delay: 0.12s !important; }
.drumroll-active .ripple-ring.ring-4 { animation-delay: 0.18s !important; }
.drumroll-active .ripple-ring.ring-5 { animation-delay: 0.24s !important; }
.drumroll-active .ripple-ring.ring-6 { animation-delay: 0.30s !important; }
.drumroll-active .ripple-ring.ring-7 { animation-delay: 0.36s !important; }
.drumroll-active .ripple-ring.ring-8 { animation-delay: 0.42s !important; }

@keyframes drumrollRippleSurge {
  0% { transform: scale(0.7); opacity: 0.8; border-width: 4px; }
  100% { transform: scale(1.4); opacity: 0.05; border-width: 1px; }
}

/* Center Mystery Ripple Core */
.mystery-ripple-core {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.18), rgba(6, 11, 23, 0.95));
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(56, 189, 248, 0.25);
  animation: rippleCorePulse 2.2s infinite ease-in-out;
  position: relative;
  z-index: 6;
  margin-bottom: 4px;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.mystery-ripple-core.core-fadeout {
  animation: blueCircleFadeout 0.65s cubic-bezier(0.1, 0.9, 0.2, 1) forwards !important;
}

@keyframes blueCircleFadeout {
  0% { transform: scale(1); opacity: 1; filter: brightness(2); }
  50% { transform: scale(1.8); opacity: 0.5; filter: brightness(3) blur(6px); }
  100% { transform: scale(2.8); opacity: 0; filter: blur(16px); }
}

.drumroll-active .mystery-ripple-core {
  animation: drumrollCoreSurge 0.1s infinite alternate ease-in-out;
  filter: brightness(1.5);
}

.theme-gold .mystery-ripple-core {
  border-color: #ffd700;
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.5);
}

.theme-silver .mystery-ripple-core {
  border-color: #e2e8f0;
  box-shadow: 0 0 50px rgba(226, 232, 240, 0.4);
}

.theme-bronze .mystery-ripple-core {
  border-color: #f59e0b;
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.4);
}

@keyframes rippleCorePulse {
  0%, 100% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; filter: brightness(1.15); }
}

@keyframes drumrollCoreSurge {
  0% { transform: scale(0.96) rotate(-2deg); }
  100% { transform: scale(1.14) rotate(2deg); }
}

.suspense-place-tag {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0;
  position: relative;
  z-index: 6;
}

.suspense-teaser {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 6;
}

.screen-rumble-1 {
  animation: rumbleScreen 0.05s infinite alternate ease-in-out;
}
.screen-rumble-2 {
  animation: rumbleScreen 0.035s infinite alternate ease-in-out;
}

@keyframes rumbleScreen {
  0% { transform: translate(-3px, 2px); }
  100% { transform: translate(3px, -2px); }
}

.suspense-place-tag {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.suspense-teaser {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  max-width: 540px;
}

/* Revealed Phase */
.revealed-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  opacity: 0;
  transform: scale(0.88) translateY(40px);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  position: relative;
  z-index: 5;
}

.revealed-box.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.place-crown-badge {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 8px 26px;
  border-radius: 999px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.badge-gold {
  background: linear-gradient(135deg, #ffd700, #b45309);
  color: #000;
  box-shadow: 0 0 45px var(--gold-glow);
}

.badge-silver {
  background: linear-gradient(135deg, #ffffff, #64748b);
  color: #000;
  box-shadow: 0 0 40px var(--silver-glow);
}

.badge-bronze {
  background: linear-gradient(135deg, #f59e0b, #78350f);
  color: #000;
  box-shadow: 0 0 35px var(--bronze-glow);
}

.winner-hero-card {
  width: 100%;
  padding: 38px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 5;
}

.winner-artwork-wrap {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  background: #020617;
  border: 2px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
}

.winner-artwork-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.winner-project-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.05;
}

.winner-score-pill {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  align-self: flex-start;
}

.theme-bronze .winner-score-pill { background: rgba(245, 158, 11, 0.15); border-color: #f59e0b; color: #f59e0b; }
.theme-silver .winner-score-pill { background: rgba(226, 232, 240, 0.15); border-color: #e2e8f0; color: #e2e8f0; }
.theme-gold .winner-score-pill { background: rgba(255, 215, 0, 0.15); border-color: #ffd700; color: #ffd700; }

.winner-reason-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ==========================================================================
   FLOATING REMARKS ANCHORED TIGHTLY TO VICTORY CARD (TOP LAYER)
   ========================================================================== */
.floating-praise-zone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999 !important;
}

.floating-praise-bubble {
  position: absolute;
  background: rgba(6, 10, 18, 0.96);
  border: 1.5px solid rgba(56, 189, 248, 0.7);
  border-radius: 14px;
  padding: 11px 16px;
  max-width: 320px;
  backdrop-filter: blur(28px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(56, 189, 248, 0.3);
  opacity: 0;
  transform: translateY(24px) scale(0.88) rotate(var(--base-rot, 0deg));
  animation: floatPraiseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatPraiseDrift 5s infinite alternate ease-in-out;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  pointer-events: none;
  z-index: 99999 !important;
}

.theme-bronze .floating-praise-bubble {
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(245, 158, 11, 0.35);
}

.theme-silver .floating-praise-bubble {
  border-color: rgba(226, 232, 240, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(226, 232, 240, 0.35);
}

.theme-gold .floating-praise-bubble {
  border-color: rgba(255, 215, 0, 0.9);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 215, 0, 0.45);
}

@keyframes floatPraiseIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
  }
}

@keyframes floatPraiseDrift {
  0% { transform: translateY(0) rotate(var(--base-rot, 0deg)); }
  100% { transform: translateY(-8px) rotate(calc(var(--base-rot, 0deg) + 1.2deg)); }
}

.praise-bubble-emoji {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.praise-quote-text {
  font-size: 14px;
  font-weight: 500;
  color: #f8fafc;
  line-height: 1.5;
}

/* First place golden aura */
.winner-first-glow {
  position: absolute;
  inset: -40px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.22), transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: goldenAura 3s infinite alternate ease-in-out;
}

@keyframes goldenAura {
  0% { transform: scale(0.96); opacity: 0.5; }
  100% { transform: scale(1.06); opacity: 1; }
}

/* Camera Flash Animation */
.camera-flash-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 100000;
}

.flash-active {
  animation: flashSnap 0.55s ease-out;
}

@keyframes flashSnap {
  0% { opacity: 0.95; }
  100% { opacity: 0; }
}

/* ==========================================================================
   04. FINAL CINEMATIC PODIUM STAGE (PROGRESSIVE RISE CHOREOGRAPHY)
   ========================================================================== */
.podium-stage-wrap {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.podium-header {
  text-align: center;
  opacity: 0;
  transform: translateY(-25px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.ceremony-scene.active .podium-header {
  opacity: 1;
  transform: translateY(0);
}

.podium-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.podium-header p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.podium-structure {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: flex-end;
  margin-top: 6px;
  padding: 0 20px;
}

.podium-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(110px) scale(0.92);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.podium-col.pillar-risen {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.podium-winner-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-line);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 16px;
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: all 0.5s ease;
}

.podium-col.rank-1 .podium-winner-card {
  border-color: rgba(255, 215, 0, 0.55);
  box-shadow: 0 0 45px rgba(255, 215, 0, 0.35), 0 25px 50px rgba(0, 0, 0, 0.7);
  transform: translateY(-10px);
}

.podium-col.rank-2 .podium-winner-card {
  border-color: rgba(226, 232, 240, 0.45);
}

.podium-col.rank-3 .podium-winner-card {
  border-color: rgba(245, 158, 11, 0.45);
}

.podium-card-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.podium-thumb {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #030712;
  border: 1px solid var(--border-line);
  overflow: hidden;
  margin: 4px 0;
}

.podium-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podium-project-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.podium-team-name {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-primary);
  letter-spacing: 0.08em;
}

.podium-members {
  font-size: 12px;
  color: var(--text-secondary);
}

.podium-score {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 10px;
  border-radius: 6px;
  margin-top: 4px;
}

.podium-pillar {
  width: 100%;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.2);
  height: 0px !important;
  overflow: hidden;
  transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.podium-col.rank-1.pillar-risen .podium-pillar {
  height: 170px !important;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.35) 0%, rgba(20, 20, 25, 0.95) 100%);
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-bottom: none;
  color: var(--gold-primary);
}

.podium-col.rank-2.pillar-risen .podium-pillar {
  height: 130px !important;
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.25) 0%, rgba(20, 20, 25, 0.95) 100%);
  border: 1px solid rgba(226, 232, 240, 0.4);
  border-bottom: none;
  color: var(--silver-primary);
}

.podium-col.rank-3.pillar-risen .podium-pillar {
  height: 100px !important;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.25) 0%, rgba(20, 20, 25, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-bottom: none;
  color: var(--bronze-primary);
}

.podium-footer-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.podium-footer-actions.visible {
  opacity: 1;
  transform: translateY(0);
}

.podium-btn-primary {
  background: linear-gradient(135deg, var(--cyan-primary), var(--blue-primary));
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.podium-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.6);
}

/* ==========================================================================
   05. INTEGRATED VICTORY STUDIO BOOTH (LIVE VIEW INSIDE CARD)
   ========================================================================== */
.polaroid-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 8, 0.94);
  backdrop-filter: blur(36px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 16px;
}

.polaroid-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.polaroid-chamber-integrated {
  width: 95vw;
  max-width: 1180px;
  max-height: 94vh;
  background: rgba(8, 12, 20, 0.96);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.98), 0 0 60px rgba(56, 189, 248, 0.2);
  overflow-y: auto;
  position: relative;
}

/* Studio Header Bar */
.studio-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-title-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 4px 0 0;
}

.modal-close-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-line);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.modal-close-icon-btn:hover {
  background: rgba(244, 63, 94, 0.2);
  border-color: #f43f5e;
  color: #ffffff;
  transform: scale(1.08);
}

/* Studio Split 2-Column Grid */
.studio-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 960px) {
  .studio-split-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Left Column: Customized Congratulatory Tribute Panel */
.studio-tribute-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.tribute-glass-card {
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.85) 0%, rgba(6, 10, 20, 0.95) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 20px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(56, 189, 248, 0.05);
  position: relative;
  overflow: hidden;
  flex: 1;
  transition: all 0.3s ease;
}

.tribute-header-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.tribute-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.tribute-badge.badge-gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(180, 83, 9, 0.3));
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.tribute-badge.badge-silver {
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.2), rgba(100, 116, 139, 0.3));
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 0 15px rgba(226, 232, 240, 0.3);
}

.tribute-badge.badge-bronze {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(120, 53, 15, 0.3));
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.tribute-badge.badge-community {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(88, 28, 135, 0.3));
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.6);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.tribute-badge.badge-mention {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(2, 132, 199, 0.3));
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.tribute-category-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tribute-hero-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tribute-project-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.tribute-team-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  flex-wrap: wrap;
}

.tribute-team-name {
  color: #38bdf8;
  font-weight: 800;
  text-transform: uppercase;
}

.tribute-meta-sep {
  color: rgba(255, 255, 255, 0.2);
}

.tribute-members {
  color: #cbd5e1;
}

.tribute-body-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tribute-section-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #94a3b8;
  text-transform: uppercase;
}

.tribute-message {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 14.5px;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
  font-weight: 400;
}
.tribute-message strong {
  color: #ffffff;
}

.tribute-quotes-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tribute-quote-bubble {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--cyan-primary);
  border-radius: 4px 12px 12px 4px;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  font-style: italic;
}
.tribute-quote-bubble.gold-accent {
  border-left-color: #ffd700;
}
.tribute-quote-bubble.silver-accent {
  border-left-color: #e2e8f0;
}
.tribute-quote-bubble.bronze-accent {
  border-left-color: #f59e0b;
}

.tribute-quote-bubble .quote-emoji {
  font-size: 16px;
  font-style: normal;
  flex-shrink: 0;
}

.tribute-specs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tribute-spec-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: #94a3b8;
}

.tribute-guide-card {
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tribute-guide-card .guide-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.tribute-guide-card .guide-text {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 12px;
  line-height: 1.45;
  color: #94a3b8;
}

.tribute-guide-card .guide-text strong {
  color: #f8fafc;
}

.studio-booth-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.modal-close-icon-btn:hover {
  background: rgba(244, 63, 94, 0.25);
  border-color: #f43f5e;
  color: #fff;
  transform: rotate(90deg);
}

/* Studio Frame & Photo Source Controls Bar */
.studio-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 14px;
}

.team-selector-compact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}

.selector-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--cyan-primary);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.custom-select {
  width: 100%;
  min-height: 38px;
  background: rgba(10, 15, 26, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-select:hover {
  border-color: var(--cyan-primary);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.dock-btn-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dock-btn-upload:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--cyan-primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.control-pills-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pills-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-pills, .filter-pills {
  display: flex;
  gap: 4px;
}

.theme-pill, .filter-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-line);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-pill.active, .filter-pill.active {
  background: rgba(56, 189, 248, 0.25);
  border-color: var(--cyan-primary);
  color: #fff;
  font-weight: 700;
}

/* Center Stage: The Live Card with Embedded Viewfinder */
.studio-card-stage {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.polaroid-card {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  padding: 14px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(-0.5deg);
}

/* Theme 1: Classic Film */
.polaroid-card.theme-polaroid {
  background: #fbf9f4;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0,0,0,0.12);
}
.polaroid-card.theme-polaroid .polaroid-footer-text { color: #1e293b; }
.polaroid-card.theme-polaroid .polaroid-project-line { color: #0f172a; }
.polaroid-card.theme-polaroid .polaroid-team-line { color: #475569; }

/* ==========================================================================
   05. META RAY-BAN DISPLAY VICTORY WAVEGUIDE SIMULATOR STUDIO
   ========================================================================== */
.polaroid-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 15, 0.92);
  backdrop-filter: blur(36px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.polaroid-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mrbd-simulator-chamber {
  width: 100%;
  max-width: 580px;
  background: rgba(6, 10, 20, 0.95);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.98), 0 0 60px rgba(56, 189, 248, 0.2);
  border-radius: 28px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}

.mrbd-studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.mrbd-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan-primary);
  text-transform: uppercase;
  display: block;
}

.mrbd-studio-header h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

.custom-mrbd-select {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #f8fafc;
  border-radius: 10px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.custom-mrbd-select:hover {
  border-color: var(--cyan-primary);
  box-shadow: 0 0 15px var(--cyan-glow);
}

/* Authentic Clean Victory Photo Card */
.victory-photo-card {
  background: #040814;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(56, 189, 248, 0.12);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
}

.victory-photo-card.is-winner-gold {
  background: linear-gradient(165deg, rgba(255, 215, 0, 0.16) 0%, rgba(28, 20, 6, 0.98) 45%, rgba(10, 8, 2, 1) 100%) !important;
  border: 2px solid rgba(255, 215, 0, 0.8) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(255, 215, 0, 0.25) !important;
}
.victory-photo-card.is-winner-gold .card-team-subtitle {
  color: #ffd700;
}

.victory-photo-card.is-winner-silver {
  background: linear-gradient(165deg, rgba(226, 232, 240, 0.16) 0%, rgba(20, 26, 36, 0.98) 45%, rgba(8, 12, 18, 1) 100%) !important;
  border: 2px solid rgba(226, 232, 240, 0.8) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(226, 232, 240, 0.25) !important;
}
.victory-photo-card.is-winner-silver .card-team-subtitle {
  color: #e2e8f0;
}

.victory-photo-card.is-winner-bronze {
  background: linear-gradient(165deg, rgba(245, 158, 11, 0.16) 0%, rgba(32, 18, 8, 0.98) 45%, rgba(12, 6, 2, 1) 100%) !important;
  border: 2px solid rgba(245, 158, 11, 0.8) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(245, 158, 11, 0.25) !important;
}
.victory-photo-card.is-winner-bronze .card-team-subtitle {
  color: #f59e0b;
}

.victory-photo-card.is-frame-attendees {
  background: linear-gradient(165deg, rgba(168, 85, 247, 0.22) 0%, rgba(26, 16, 44, 0.98) 45%, rgba(10, 6, 22, 1) 100%) !important;
  border: 2px solid rgba(168, 85, 247, 0.85) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(168, 85, 247, 0.3) !important;
}
.victory-photo-card.is-frame-attendees .card-team-subtitle {
  color: #c084fc;
}

.victory-photo-card.is-mention-cyan {
  background: linear-gradient(165deg, rgba(56, 189, 248, 0.16) 0%, rgba(12, 24, 44, 0.98) 45%, rgba(4, 10, 20, 1) 100%) !important;
  border: 2px solid rgba(56, 189, 248, 0.7) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(56, 189, 248, 0.2) !important;
}
.victory-photo-card.is-mention-cyan .card-team-subtitle {
  color: #38bdf8;
}

/* 4:3 Wide Cinematic Camera Viewfinder Frame */
.victory-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.9);
}

#cameraStream {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  z-index: 1;
}

#polaroidCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

#polaroidCanvas.captured-active {
  opacity: 1;
  pointer-events: auto;
}

/* Subtle Optical Corner Brackets */
/* Subtle Optical Corner Brackets */
.card-optic-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(56, 189, 248, 0.7);
  z-index: 10;
  pointer-events: none;
}
.card-optic-corner.top-left { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.card-optic-corner.top-right { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.card-optic-corner.bottom-left { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.card-optic-corner.bottom-right { bottom: 10px; right: 10px; border-left: none; border-top: none; }

/* Mechanical Shutter Iris Blade Overlay */
.shutter-iris-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shutter-iris-overlay.snap-blade-active {
  animation: shutterSnapAnimation 0.35s ease-in-out;
}

@keyframes shutterSnapAnimation {
  0% { opacity: 0; transform: scale(1.3) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(45deg); background: #000; }
  100% { opacity: 0; transform: scale(1.4) rotate(90deg); }
}

/* Prominent Floating Award Badge on Photo - Placed with Generous Margin to Avoid Corner Bracket Overlap */
.victory-badge-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 15;
  backdrop-filter: blur(16px);
}

.victory-badge-stamp.badge-gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(180, 83, 9, 0.95));
  color: #000;
  border: 1.5px solid #fff;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
}

.victory-badge-stamp.badge-silver {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(100, 116, 139, 0.95));
  color: #000;
  border: 1.5px solid #fff;
  box-shadow: 0 0 25px rgba(226, 232, 240, 0.7);
}

.victory-badge-stamp.badge-bronze {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(120, 53, 15, 0.95));
  color: #000;
  border: 1.5px solid #fff;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.7);
}

.victory-badge-stamp.badge-community {
  background: linear-gradient(135deg, #9333ea, #6b21a8);
  color: #ffffff;
  border: 1.5px solid #f3e8ff;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
}

.victory-badge-stamp.badge-mention {
  background: rgba(15, 23, 42, 0.92);
  border: 1.5px solid var(--cyan-primary);
  color: var(--cyan-primary);
  box-shadow: 0 0 25px var(--cyan-glow);
}

/* 3s High-Visibility Cyber Countdown HUD Overlay */
.camera-countdown-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(3, 7, 18, 0.75) 0%, rgba(2, 6, 23, 0.9) 100%);
  backdrop-filter: blur(10px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 900;
  color: #38bdf8;
  text-shadow: 0 0 35px rgba(56, 189, 248, 0.9), 0 0 70px rgba(8, 120, 249, 0.8), 0 4px 20px #000;
  transition: opacity 0.15s ease, transform 0.15s ease;
  transform: scale(0.65);
}

.camera-countdown-overlay.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  animation: countdownPulse 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes countdownPulse {
  0% { transform: scale(1.4); opacity: 0.1; }
  35% { transform: scale(1); opacity: 1; filter: brightness(1.2); }
  100% { transform: scale(0.85); opacity: 0.85; }
}

/* Bottom Card Metadata Strip */
.victory-card-footer {
  background: #030712;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-footer-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-project-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-team-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-footer-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 6px;
  margin-top: 2px;
}

/* Clean, Structured Native Action Control Dock */
.studio-action-dock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.studio-primary-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.studio-share-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}

.dock-btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0 14px;
  user-select: none;
  box-sizing: border-box;
}

.dock-btn.snap-btn {
  flex: 2;
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 18px rgba(244, 63, 94, 0.4);
}
.dock-btn.snap-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 63, 94, 0.65);
}

.dock-btn.download-btn {
  flex: 1.6;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.4);
}
.dock-btn.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(56, 189, 248, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}

.dock-btn.secondary-btn {
  flex: 1;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  backdrop-filter: blur(12px);
}
.dock-btn.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.dock-btn.share-btn {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  backdrop-filter: blur(12px);
  padding: 0 10px;
}
.dock-btn.share-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.dock-btn.share-btn.linkedin-btn:hover {
  background: rgba(10, 102, 194, 0.25);
  border-color: #0a66c2;
  color: #60a5fa;
  box-shadow: 0 4px 16px rgba(10, 102, 194, 0.3);
}

.dock-btn.share-btn.x-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.copy-toast {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-primary);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-height: 16px;
}
.copy-toast.show {
  opacity: 1;
}

.social-copy-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #fff;
}

.social-copy-btn.insta:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: #dd2a7b;
  color: #fff;
}

.copy-toast {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan-primary);
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.copy-toast.show {
  opacity: 1;
}

/* ==========================================================================
   06. PRESENTER CONTROLS & HUD
   ========================================================================== */
.presenter-hud {
  position: fixed;
  bottom: 16px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 14, 22, 0.92);
  border: 1px solid var(--border-line);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hud-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hud-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.hud-divider {
  width: 1px;
  height: 14px;
  background: var(--border-line);
}

.hud-shortcut-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Restart Confirmation Modal */
.restart-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.restart-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.restart-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-surface);
  border: 1px solid var(--border-line);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.restart-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.restart-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

.restart-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn-confirm-restart {
  flex: 1;
  background: #e11d48;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
}

.btn-cancel-restart {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-line);
  padding: 10px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .mention-hero-showcase,
  .winner-hero-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
  }
  
  .mention-icon-huge,
  .winner-artwork-wrap {
    margin: 0 auto;
    width: 160px;
    height: 160px;
  }

  .podium-structure {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .studio-bottom-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   07. BUILD THE INVISIBLE DECK COHESION PASS
   ========================================================================== */
:root {
  --paper: #f4f6f8;
  --white: #ffffff;
  --ink: #101522;
  --muted: #718096;
  --line: #d9e0e8;
  --blue: #0878f9;
  --blue-dark: #0556bf;
  --cyan: #17d4e4;
  --yellow: #e5f46b;

  --bg-dark: var(--paper);
  --bg-surface: var(--white);
  --bg-card: rgba(255, 255, 255, 0.9);
  --border-line: var(--line);
  --border-glow: rgba(8, 120, 249, 0.26);
  --text-primary: var(--ink);
  --text-secondary: var(--muted);
  --text-muted: var(--muted);
  --cyan-primary: var(--cyan);
  --cyan-glow: rgba(23, 212, 228, 0.24);
  --blue-primary: var(--blue);
  --gold-primary: var(--yellow);
  --gold-glow: rgba(229, 244, 107, 0.38);
  --silver-primary: #dbe4ec;
  --silver-glow: rgba(113, 128, 150, 0.18);
  --bronze-primary: var(--blue-dark);
  --bronze-glow: rgba(8, 120, 249, 0.2);
  --magenta-primary: var(--cyan);
  --emerald-primary: var(--blue);
  --purple-primary: var(--blue-dark);
  --mrbd-green: var(--yellow);
  --mrbd-glow: rgba(229, 244, 107, 0.32);
}

html,
body {
  background: var(--paper);
  color: var(--ink);
}

body {
  background-image:
    linear-gradient(rgba(16, 21, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 34, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.universe-canvas {
  opacity: 0.16;
  mix-blend-mode: multiply;
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(16, 21, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 34, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: none;
  opacity: 0.8;
}

.spotlight-beam,
.spotlight-beam.bronze,
.spotlight-beam.silver,
.spotlight-beam.gold {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(23, 212, 228, 0.34), transparent 62%),
    linear-gradient(90deg, transparent, rgba(8, 120, 249, 0.09), transparent);
  opacity: 0.72;
  width: min(980px, 78vw);
  filter: blur(1px);
}

.spotlight-beam.gold {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(229, 244, 107, 0.44), transparent 56%),
    radial-gradient(ellipse at 50% 26%, rgba(8, 120, 249, 0.16), transparent 70%);
}

.awards-topbar {
  height: 78px;
  padding: 0 38px;
  background: rgba(244, 246, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.brand-unit {
  gap: 11px;
  color: var(--ink);
}

.brand-dot {
  width: 34px;
  height: 32px;
  border-radius: 2px;
  background: var(--blue);
  box-shadow: none;
  animation: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-dot::after {
  content: "BTI";
  color: #ffffff;
  font: 700 13px var(--font-mono);
  letter-spacing: 0;
}

.brand-title {
  font: 800 12px var(--font-display);
  letter-spacing: 0.04em;
}

.brand-subtitle {
  border-left-color: var(--line);
  color: var(--muted);
  font: 10px var(--font-mono);
  letter-spacing: 0.08em;
}

.topbar-actions {
  gap: 7px;
}

.top-btn {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  box-shadow: none;
  font: 700 10px var(--font-mono);
  letter-spacing: 0.04em;
  padding: 0 12px;
}

.top-btn:hover,
.top-btn.sound-toggle,
.top-btn.camera-btn,
.top-btn.sound-toggle:not(.muted) {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(8, 120, 249, 0.11);
}

.top-btn.sound-toggle.muted {
  color: var(--muted);
  border-color: var(--line);
  background: var(--white);
}

.stage-viewport {
  padding-top: 78px;
}

.ceremony-scene {
  inset: 78px 0 0;
  padding: clamp(28px, 4.4vw, 64px) 5.2vw 54px;
}

.ceremony-kicker,
.mentions-counter,
.mrbd-kicker {
  color: var(--blue);
  font: 700 10px var(--font-mono);
  letter-spacing: 0.08em;
  border-color: rgba(8, 120, 249, 0.22);
}

.opening-wrap {
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.main-awards-title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(62px, 9vw, 138px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: none;
}

.main-awards-title em,
.podium-header h2 em,
.winner-project-title em {
  color: var(--blue);
  font-style: normal;
}

.opening-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  text-shadow: none;
}

.opening-meta-strip {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  color: var(--muted);
  box-shadow: none;
}

.opening-meta-strip b {
  color: var(--blue);
}

.cta-pulse-prompt,
.podium-btn-primary,
.btn-confirm-restart {
  border: 1px solid var(--blue);
  border-radius: 2px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(8, 120, 249, 0.18);
  text-shadow: none;
}

.cta-pulse-prompt:hover,
.podium-btn-primary:hover,
.btn-confirm-restart:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.mentions-fullscreen-wrap,
.winner-reveal-wrap,
.podium-stage-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.mentions-header h2,
.podium-header h2,
.suspense-place-tag {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
  text-shadow: none;
}

.mentions-nav-indicator,
.podium-header p,
.suspense-teaser,
.mention-reason-text,
.winner-reason-text {
  color: var(--muted);
  text-shadow: none;
}

.fullscreen-ripple-field,
.fullscreen-ripple-blast {
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.ripple-ring,
.blast-wave,
.blast-chromatic-ring,
.neural-pinch-ring {
  border-color: rgba(8, 120, 249, 0.28);
  box-shadow: 0 0 24px rgba(23, 212, 228, 0.08);
}

.mrbd-waveguide-frame {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(16, 21, 34, 0.1);
}

.mrbd-corner {
  border-color: var(--blue);
}

.mrbd-scan-laser {
  background: linear-gradient(90deg, transparent, rgba(23, 212, 228, 0.34), transparent);
  opacity: 0.55;
}

.mention-hero-showcase,
.winner-hero-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mention-icon-huge,
.winner-artwork-wrap,
.podium-thumb {
  background: #dfe8f0;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: none;
}

.mention-icon-huge img,
.winner-artwork-wrap img,
.podium-thumb img {
  mix-blend-mode: multiply;
}

.category-badge-pill,
.place-crown-badge,
.winner-score-pill,
.podium-card-badge,
.tribute-badge,
.victory-badge-stamp,
.selector-badge,
.tribute-spec-pill {
  border-radius: 2px;
  letter-spacing: 0.04em;
  text-shadow: none;
  box-shadow: none;
}

.category-badge-pill,
.winner-score-pill,
.place-crown-badge,
.podium-card-badge,
.tribute-badge.badge-mention,
.victory-badge-stamp.badge-mention,
.selector-badge {
  background: rgba(8, 120, 249, 0.08) !important;
  border: 1px solid rgba(8, 120, 249, 0.24) !important;
  color: var(--blue) !important;
}

.badge-gold,
.tribute-badge.badge-gold,
.victory-badge-stamp.badge-gold,
.podium-badge-first,
.podium-col.rank-1 .podium-card-badge {
  background: var(--yellow) !important;
  border: 1px solid rgba(16, 21, 34, 0.12) !important;
  color: var(--ink) !important;
}

.badge-silver,
.tribute-badge.badge-silver,
.victory-badge-stamp.badge-silver,
.podium-badge-second,
.podium-col.rank-2 .podium-card-badge {
  background: #dbe4ec !important;
  border: 1px solid rgba(16, 21, 34, 0.12) !important;
  color: var(--ink) !important;
}

.badge-bronze,
.tribute-badge.badge-bronze,
.victory-badge-stamp.badge-bronze,
.podium-badge-third,
.podium-col.rank-3 .podium-card-badge {
  background: rgba(8, 120, 249, 0.12) !important;
  border: 1px solid rgba(8, 120, 249, 0.26) !important;
  color: var(--blue-dark) !important;
}

.badge-community,
.tribute-badge.badge-community,
.victory-badge-stamp.badge-community {
  background: rgba(23, 212, 228, 0.12) !important;
  border: 1px solid rgba(23, 212, 228, 0.3) !important;
  color: var(--blue-dark) !important;
}

.mention-project-title,
.winner-project-title,
.podium-project-name,
.tribute-project-title,
.card-project-title,
.restart-card h3 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
  text-shadow: none;
}

.team-highlight-banner {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 0;
  box-shadow: none;
}

.theme-gold .team-highlight-banner,
.podium-col.rank-1 .podium-winner-card {
  border-color: var(--line);
  border-left-color: var(--yellow);
}

.theme-silver .team-highlight-banner,
.podium-col.rank-2 .podium-winner-card {
  border-color: var(--line);
  border-left-color: #dbe4ec;
}

.theme-bronze .team-highlight-banner,
.podium-col.rank-3 .podium-winner-card {
  border-color: var(--line);
  border-left-color: var(--blue);
}

.team-highlight-name,
.theme-bronze .team-highlight-name,
.theme-silver .team-highlight-name,
.theme-gold .team-highlight-name,
.podium-team-name,
.tribute-team-name,
.card-team-subtitle,
.victory-photo-card.is-winner-gold .card-team-subtitle,
.victory-photo-card.is-winner-silver .card-team-subtitle,
.victory-photo-card.is-winner-bronze .card-team-subtitle,
.victory-photo-card.is-frame-attendees .card-team-subtitle,
.victory-photo-card.is-mention-cyan .card-team-subtitle {
  color: var(--blue);
  text-shadow: none;
}

.team-builders-row,
.podium-members,
.tribute-members,
.tribute-category-tag,
.tribute-section-label,
.card-footer-sub,
.hud-shortcut-hint {
  color: var(--muted);
}

.mention-ai-remarks-row,
.floating-praise-zone {
  filter: none;
}

.remark-chip,
.floating-praise-bubble,
.tribute-quote-bubble {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  border-radius: 4px;
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(16, 21, 34, 0.08);
}

.tribute-quote-bubble.gold-accent {
  border-left-color: var(--yellow);
}

.tribute-quote-bubble.silver-accent {
  border-left-color: #dbe4ec;
}

.tribute-quote-bubble.bronze-accent {
  border-left-color: var(--blue);
}

.mystery-ripple-core {
  background: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
  box-shadow: 0 24px 70px rgba(8, 120, 249, 0.12);
  text-shadow: none;
}

.revealed-box,
.suspense-box {
  color: var(--ink);
}

.winner-first-glow {
  background: radial-gradient(circle, rgba(229, 244, 107, 0.44), transparent 62%);
  mix-blend-mode: multiply;
}

.podium-structure {
  align-items: end;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.podium-col {
  background: var(--paper);
  padding: 20px;
}

.podium-winner-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 0;
  box-shadow: 0 18px 48px rgba(16, 21, 34, 0.1);
}

.podium-score {
  color: var(--blue);
}

.podium-pillar {
  background: var(--blue);
  border-radius: 0;
  color: #ffffff;
  box-shadow: none;
}

.podium-col.rank-1 .podium-pillar {
  background: var(--yellow);
  color: var(--ink);
}

.podium-col.rank-2 .podium-pillar {
  background: #dbe4ec;
  color: var(--ink);
}

.podium-footer-actions.visible {
  transform: none;
}

.presenter-hud {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(16, 21, 34, 0.1);
}

.hud-btn {
  border-radius: 2px;
  color: var(--muted);
}

.hud-btn:hover {
  background: rgba(8, 120, 249, 0.08);
  color: var(--blue);
}

.polaroid-modal-backdrop,
.polaroid-modal {
  background: rgba(16, 21, 34, 0.46);
  backdrop-filter: blur(18px);
}

.polaroid-chamber-integrated,
.restart-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(16, 21, 34, 0.2);
}

.studio-header-bar,
.tribute-specs-row,
.victory-card-footer,
.card-footer-sub {
  border-color: var(--line);
}

.studio-title-block h2 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
}

.modal-close-icon-btn {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}

.modal-close-icon-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  transform: rotate(90deg);
}

.studio-split-grid {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.studio-tribute-col,
.studio-booth-col {
  background: var(--white);
  padding: 20px;
}

.tribute-glass-card,
.tribute-guide-card,
.studio-controls-bar,
.victory-photo-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: none;
}

.tribute-glass-card {
  border-left: 3px solid var(--blue);
}

.tribute-message,
.tribute-message strong,
.tribute-guide-card .guide-text,
.tribute-guide-card .guide-text strong {
  color: var(--ink);
}

.tribute-guide-card {
  background: var(--yellow);
}

.custom-select,
.custom-mrbd-select {
  min-height: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  box-shadow: none;
}

.custom-select:hover,
.custom-mrbd-select:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 120, 249, 0.08);
}

.dock-btn,
.dock-btn-upload,
.btn-cancel-restart {
  border-radius: 2px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
  letter-spacing: 0.02em;
}

.dock-btn.snap-btn,
.dock-btn.download-btn,
.dock-btn.share-btn.linkedin-btn:hover,
.dock-btn.share-btn.x-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 120, 249, 0.16);
}

.dock-btn.secondary-btn,
.dock-btn.share-btn {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.dock-btn:hover,
.dock-btn-upload:hover,
.dock-btn.secondary-btn:hover,
.dock-btn.share-btn:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(16, 21, 34, 0.08);
}

.dock-btn.snap-btn:hover,
.dock-btn.download-btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #ffffff;
}

.victory-photo-card,
.victory-photo-card.is-winner-gold,
.victory-photo-card.is-winner-silver,
.victory-photo-card.is-winner-bronze,
.victory-photo-card.is-frame-attendees,
.victory-photo-card.is-mention-cyan {
  background: var(--white) !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 18px 46px rgba(16, 21, 34, 0.12) !important;
}

.victory-card-media {
  background: #101522;
  box-shadow: none;
}

.victory-card-footer {
  background: var(--white);
}

.card-optic-corner {
  border-color: var(--cyan);
}

.camera-countdown-overlay {
  background: rgba(244, 246, 248, 0.84);
  color: var(--blue);
  text-shadow: none;
}

.copy-toast {
  color: var(--blue);
}

.restart-modal {
  background: rgba(16, 21, 34, 0.46);
}

@media (max-width: 980px) {
  .awards-topbar {
    height: auto;
    min-height: 78px;
    padding: 14px 18px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar-actions {
    width: 100%;
    overflow-x: auto;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .ceremony-scene {
    inset: 116px 0 0;
    padding: 28px 20px 70px;
  }

  .stage-viewport {
    padding-top: 116px;
  }

  .main-awards-title {
    font-size: clamp(56px, 16vw, 88px);
  }

  .podium-structure,
  .studio-split-grid {
    grid-template-columns: 1fr;
  }

  .studio-tribute-col,
  .studio-booth-col {
    padding: 16px;
  }

  .studio-primary-actions {
    flex-wrap: wrap;
  }

  .dock-btn {
    flex: 1 1 180px;
  }
}

/* ==========================================================================
   08. CEREMONY-GRADE BTI ART DIRECTION
   ========================================================================== */
:root {
  --stage-ink: #060912;
  --stage-ink-2: #0d1422;
  --stage-panel: rgba(13, 20, 34, 0.82);
  --stage-panel-solid: #0d1422;
  --stage-line: rgba(244, 246, 248, 0.14);
  --stage-text: #f7fbff;
  --stage-muted: #9aa9bc;
  --stage-blue: #0878f9;
  --stage-cyan: #17d4e4;
  --stage-yellow: #e5f46b;
  --stage-paper: #f4f6f8;
}

html,
body {
  background: var(--stage-ink);
  color: var(--stage-text);
}

body {
  background:
    radial-gradient(circle at 50% 16%, rgba(23, 212, 228, 0.2), transparent 32%),
    radial-gradient(circle at 72% 68%, rgba(8, 120, 249, 0.18), transparent 42%),
    linear-gradient(135deg, #05070d 0%, #101522 58%, #070a12 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 78px 0 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(244, 246, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 246, 248, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
}

.universe-canvas {
  opacity: 0.52;
  mix-blend-mode: screen;
}

.ambient-grid {
  background:
    linear-gradient(rgba(244, 246, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 246, 248, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.42;
  mask-image: radial-gradient(circle at 50% 46%, black 22%, transparent 74%);
}

.spotlight-beam,
.spotlight-beam.bronze,
.spotlight-beam.silver,
.spotlight-beam.gold {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(23, 212, 228, 0.5), rgba(8, 120, 249, 0.2) 32%, transparent 70%),
    linear-gradient(90deg, transparent 8%, rgba(255, 255, 255, 0.08) 50%, transparent 92%);
  opacity: 0.9;
  mix-blend-mode: screen;
  filter: blur(0);
}

.spotlight-beam.gold {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(229, 244, 107, 0.52), rgba(23, 212, 228, 0.22) 34%, transparent 70%),
    linear-gradient(90deg, transparent 6%, rgba(255, 255, 255, 0.11) 50%, transparent 94%);
}

.awards-topbar {
  background: rgba(244, 246, 248, 0.92);
  border-bottom: 1px solid rgba(217, 224, 232, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.brand-title {
  color: #101522;
}

.brand-subtitle {
  color: #718096;
}

.top-btn,
.presenter-hud {
  background: rgba(255, 255, 255, 0.92);
  color: #101522;
}

.top-btn:hover,
.top-btn.sound-toggle,
.top-btn.camera-btn,
.top-btn.sound-toggle:not(.muted) {
  background: #101522;
  border-color: #101522;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 120, 249, 0.18);
}

.ceremony-scene {
  color: var(--stage-text);
}

.opening-wrap {
  min-height: calc(100vh - 210px);
  justify-content: center;
}

.ceremony-kicker,
.mentions-counter,
.mrbd-kicker {
  color: var(--stage-cyan);
  border-color: rgba(23, 212, 228, 0.3);
  background: rgba(23, 212, 228, 0.08);
  padding: 7px 10px;
  border-radius: 2px;
}

.main-awards-title {
  color: var(--stage-text);
  max-width: 970px;
  font-size: clamp(68px, 10vw, 154px);
  line-height: 0.84;
  text-shadow:
    0 0 34px rgba(8, 120, 249, 0.25),
    0 18px 58px rgba(0, 0, 0, 0.48);
}

.main-awards-title em {
  color: var(--stage-cyan);
}

.opening-lead {
  color: rgba(247, 251, 255, 0.72);
}

.opening-meta-strip {
  background: rgba(244, 246, 248, 0.08);
  border-color: rgba(244, 246, 248, 0.18);
  color: var(--stage-muted);
  backdrop-filter: blur(18px);
}

.opening-meta-strip b {
  color: var(--stage-yellow);
}

.cta-pulse-prompt,
.podium-btn-primary,
.dock-btn.snap-btn,
.dock-btn.download-btn {
  background: var(--stage-blue);
  border-color: var(--stage-blue);
  color: #ffffff;
  box-shadow:
    0 18px 38px rgba(8, 120, 249, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.cta-pulse-prompt:hover,
.podium-btn-primary:hover,
.dock-btn.snap-btn:hover,
.dock-btn.download-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #101522;
}

.mentions-header h2,
.podium-header h2,
.suspense-place-tag,
.mention-project-title,
.winner-project-title,
.podium-project-name,
.tribute-project-title,
.card-project-title {
  color: var(--stage-text);
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

.mentions-nav-indicator,
.podium-header p,
.suspense-teaser,
.mention-reason-text,
.winner-reason-text {
  color: rgba(247, 251, 255, 0.68);
}

.mrbd-waveguide-frame {
  background:
    linear-gradient(145deg, rgba(244, 246, 248, 0.12), rgba(13, 20, 34, 0.82)),
    rgba(13, 20, 34, 0.78);
  border: 1px solid rgba(23, 212, 228, 0.32);
  border-radius: 8px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    0 0 70px rgba(8, 120, 249, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
}

.mention-icon-huge,
.winner-artwork-wrap,
.podium-thumb {
  background: #f4f6f8;
  border-color: rgba(244, 246, 248, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.mention-icon-huge img,
.winner-artwork-wrap img,
.podium-thumb img {
  mix-blend-mode: multiply;
}

.team-highlight-banner {
  background: rgba(244, 246, 248, 0.08);
  border-color: rgba(244, 246, 248, 0.16);
  border-left-color: var(--stage-cyan);
  color: var(--stage-text);
}

.team-highlight-name,
.theme-bronze .team-highlight-name,
.theme-silver .team-highlight-name,
.theme-gold .team-highlight-name,
.podium-team-name,
.tribute-team-name,
.card-team-subtitle,
.victory-photo-card.is-winner-gold .card-team-subtitle,
.victory-photo-card.is-winner-silver .card-team-subtitle,
.victory-photo-card.is-winner-bronze .card-team-subtitle,
.victory-photo-card.is-frame-attendees .card-team-subtitle,
.victory-photo-card.is-mention-cyan .card-team-subtitle {
  color: var(--stage-cyan);
}

.team-builders-row,
.podium-members,
.tribute-members,
.tribute-category-tag,
.tribute-section-label,
.card-footer-sub,
.hud-shortcut-hint {
  color: var(--stage-muted);
}

.category-badge-pill,
.place-crown-badge,
.winner-score-pill,
.podium-card-badge,
.tribute-badge.badge-mention,
.victory-badge-stamp.badge-mention,
.selector-badge {
  background: rgba(23, 212, 228, 0.1) !important;
  border-color: rgba(23, 212, 228, 0.38) !important;
  color: var(--stage-cyan) !important;
}

.badge-gold,
.tribute-badge.badge-gold,
.victory-badge-stamp.badge-gold,
.podium-badge-first,
.podium-col.rank-1 .podium-card-badge {
  background: var(--stage-yellow) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #101522 !important;
  box-shadow: 0 0 34px rgba(229, 244, 107, 0.24) !important;
}

.badge-silver,
.tribute-badge.badge-silver,
.victory-badge-stamp.badge-silver,
.podium-badge-second,
.podium-col.rank-2 .podium-card-badge {
  background: #dbe4ec !important;
  border-color: rgba(255, 255, 255, 0.46) !important;
  color: #101522 !important;
}

.badge-bronze,
.tribute-badge.badge-bronze,
.victory-badge-stamp.badge-bronze,
.podium-badge-third,
.podium-col.rank-3 .podium-card-badge {
  background: rgba(8, 120, 249, 0.18) !important;
  border-color: rgba(8, 120, 249, 0.58) !important;
  color: #ffffff !important;
}

.floating-praise-bubble,
.remark-chip,
.tribute-quote-bubble {
  background: rgba(244, 246, 248, 0.1);
  border-color: rgba(244, 246, 248, 0.16);
  border-left-color: var(--stage-cyan);
  color: rgba(247, 251, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.mystery-ripple-core {
  background:
    radial-gradient(circle at 50% 42%, rgba(23, 212, 228, 0.32), transparent 34%),
    #101522;
  border-color: rgba(23, 212, 228, 0.6);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 42px rgba(23, 212, 228, 0.36),
    0 30px 90px rgba(0, 0, 0, 0.55);
}

.revealed-box,
.suspense-box {
  color: var(--stage-text);
}

.podium-structure {
  background: transparent;
  border: 0;
  gap: clamp(16px, 2vw, 28px);
}

.podium-col {
  background: transparent;
  padding: 0;
}

.podium-winner-card {
  background:
    linear-gradient(160deg, rgba(244, 246, 248, 0.14), rgba(13, 20, 34, 0.9)),
    var(--stage-panel-solid);
  border: 1px solid rgba(244, 246, 248, 0.15);
  border-left: 3px solid var(--stage-blue);
  border-radius: 8px 8px 0 0;
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.42),
    0 0 50px rgba(8, 120, 249, 0.14);
}

.podium-col.rank-1 .podium-winner-card {
  border-left-color: var(--stage-yellow);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(229, 244, 107, 0.18);
}

.podium-col.rank-2 .podium-winner-card {
  border-left-color: #dbe4ec;
}

.podium-score {
  color: var(--stage-yellow);
}

.podium-pillar {
  background:
    linear-gradient(180deg, rgba(8, 120, 249, 0.94), rgba(5, 86, 191, 0.86)),
    var(--stage-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.podium-col.rank-1 .podium-pillar {
  background:
    linear-gradient(180deg, rgba(229, 244, 107, 1), rgba(8, 120, 249, 0.76)),
    var(--stage-yellow);
  color: #101522;
}

.podium-col.rank-2 .podium-pillar {
  background:
    linear-gradient(180deg, #dbe4ec, rgba(8, 120, 249, 0.52)),
    #dbe4ec;
  color: #101522;
}

.presenter-hud {
  border-color: rgba(244, 246, 248, 0.18);
  background: rgba(13, 20, 34, 0.82);
  color: var(--stage-text);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.hud-btn {
  color: var(--stage-muted);
}

.hud-btn:hover {
  background: rgba(23, 212, 228, 0.1);
  color: var(--stage-cyan);
}

.polaroid-modal-backdrop,
.polaroid-modal,
.restart-modal {
  background:
    radial-gradient(circle at 50% 18%, rgba(23, 212, 228, 0.2), transparent 40%),
    rgba(3, 5, 9, 0.88);
  backdrop-filter: blur(28px);
}

.polaroid-chamber-integrated,
.restart-card {
  background:
    linear-gradient(145deg, rgba(244, 246, 248, 0.08), rgba(13, 20, 34, 0.98)),
    var(--stage-panel-solid);
  color: var(--stage-text);
  border: 1px solid rgba(23, 212, 228, 0.24);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(8, 120, 249, 0.12);
}

.studio-split-grid {
  background: rgba(244, 246, 248, 0.12);
  border-color: rgba(244, 246, 248, 0.12);
}

.studio-tribute-col,
.studio-booth-col {
  background: rgba(6, 9, 18, 0.42);
}

.studio-title-block h2,
.tribute-project-title,
.card-project-title,
.restart-card h3 {
  color: var(--stage-text);
}

.studio-header-bar,
.tribute-specs-row,
.victory-card-footer,
.card-footer-sub {
  border-color: rgba(244, 246, 248, 0.13);
}

.tribute-glass-card,
.studio-controls-bar {
  background: rgba(244, 246, 248, 0.08);
  border-color: rgba(244, 246, 248, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.tribute-glass-card {
  border-left-color: var(--stage-cyan);
}

.tribute-guide-card {
  background: rgba(229, 244, 107, 0.12);
  border-color: rgba(229, 244, 107, 0.32);
}

.tribute-message,
.tribute-message strong,
.tribute-guide-card .guide-text,
.tribute-guide-card .guide-text strong {
  color: rgba(247, 251, 255, 0.82);
}

.custom-select,
.custom-mrbd-select {
  background: rgba(244, 246, 248, 0.08);
  border-color: rgba(244, 246, 248, 0.18);
  color: var(--stage-text);
}

.custom-select:hover,
.custom-mrbd-select:hover {
  border-color: var(--stage-cyan);
  box-shadow: 0 0 0 3px rgba(23, 212, 228, 0.09);
}

.dock-btn,
.dock-btn-upload,
.btn-cancel-restart {
  background: rgba(244, 246, 248, 0.08);
  border-color: rgba(244, 246, 248, 0.16);
  color: var(--stage-text);
}

.dock-btn.secondary-btn,
.dock-btn.share-btn {
  background: rgba(244, 246, 248, 0.08);
  border-color: rgba(244, 246, 248, 0.16);
  color: var(--stage-text);
}

.dock-btn:hover,
.dock-btn-upload:hover,
.dock-btn.secondary-btn:hover,
.dock-btn.share-btn:hover {
  background: rgba(244, 246, 248, 0.14);
  border-color: var(--stage-cyan);
  color: var(--stage-cyan);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.victory-photo-card,
.victory-photo-card.is-winner-gold,
.victory-photo-card.is-winner-silver,
.victory-photo-card.is-winner-bronze,
.victory-photo-card.is-frame-attendees,
.victory-photo-card.is-mention-cyan {
  background:
    linear-gradient(160deg, rgba(244, 246, 248, 0.08), rgba(6, 9, 18, 0.98)),
    #060912 !important;
  border-color: rgba(23, 212, 228, 0.24) !important;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.46),
    0 0 60px rgba(8, 120, 249, 0.12) !important;
}

.victory-photo-card.is-winner-gold {
  border-color: rgba(229, 244, 107, 0.46) !important;
}

.victory-card-footer {
  background: rgba(6, 9, 18, 0.96);
}

.card-footer-sub {
  color: var(--stage-muted);
}

.camera-countdown-overlay {
  background: rgba(6, 9, 18, 0.82);
  color: var(--stage-yellow);
  text-shadow: 0 0 35px rgba(229, 244, 107, 0.36);
}

.modal-close-icon-btn {
  background: rgba(244, 246, 248, 0.1);
  border-color: rgba(244, 246, 248, 0.18);
  color: var(--stage-text);
}

.modal-close-icon-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #101522;
}

.copy-toast {
  color: var(--stage-cyan);
}

@media (max-width: 980px) {
  body::before {
    top: 116px;
  }

  .main-awards-title {
    font-size: clamp(58px, 16vw, 92px);
  }

  .top-btn {
    flex: 0 0 auto;
  }
}

/* ==========================================================================
   09. BLUE METALLIC CEREMONY POLISH
   ========================================================================== */
:root {
  --stage-ink: #030914;
  --stage-ink-2: #071b32;
  --stage-panel: rgba(6, 20, 38, 0.74);
  --stage-panel-solid: #071426;
  --stage-line: rgba(23, 212, 228, 0.24);
  --stage-text: #f7fbff;
  --stage-muted: #a9bdd2;
  --stage-blue: #0878f9;
  --stage-blue-hot: #12a6ff;
  --stage-cyan: #17d4e4;
  --stage-yellow: #e5f46b;
  --metal-1: #ffffff;
  --metal-2: #d9f4ff;
  --metal-3: #7ddcff;
  --metal-4: #eef8ff;
}

body {
  background:
    radial-gradient(circle at 50% -6%, rgba(23, 212, 228, 0.34), transparent 32%),
    radial-gradient(circle at 12% 54%, rgba(8, 120, 249, 0.24), transparent 42%),
    radial-gradient(circle at 84% 68%, rgba(18, 166, 255, 0.22), transparent 44%),
    linear-gradient(135deg, #020711 0%, #071b32 48%, #030914 100%);
}

body::before {
  background:
    linear-gradient(rgba(23, 212, 228, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 212, 228, 0.045) 1px, transparent 1px);
  opacity: 0.78;
}

.ambient-grid {
  background:
    linear-gradient(rgba(23, 212, 228, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 212, 228, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.64;
}

.spotlight-beam,
.spotlight-beam.bronze,
.spotlight-beam.silver,
.spotlight-beam.gold {
  background:
    radial-gradient(ellipse at 50% 9%, rgba(23, 212, 228, 0.7), rgba(8, 120, 249, 0.34) 34%, transparent 72%),
    linear-gradient(90deg, transparent 8%, rgba(125, 220, 255, 0.13) 50%, transparent 92%);
}

.spotlight-beam.gold {
  background:
    radial-gradient(ellipse at 50% 9%, rgba(229, 244, 107, 0.62), rgba(23, 212, 228, 0.32) 36%, transparent 72%),
    linear-gradient(90deg, transparent 8%, rgba(255, 255, 255, 0.16) 50%, transparent 92%);
}

.main-awards-title,
.mentions-header h2,
.podium-header h2,
.suspense-place-tag,
.mention-project-title,
.winner-project-title,
.podium-project-name,
.tribute-project-title,
.card-project-title {
  color: #ffffff;
  background-image:
    linear-gradient(180deg, var(--metal-1) 0%, var(--metal-4) 28%, var(--metal-3) 48%, var(--metal-1) 66%, #bdd8ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.36)) drop-shadow(0 0 18px rgba(23, 212, 228, 0.18));
}

.main-awards-title em {
  background-image: linear-gradient(180deg, #f9ffb8 0%, var(--stage-yellow) 42%, #ffffff 62%, #98eaff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ceremony-kicker,
.mentions-counter,
.mrbd-kicker {
  color: #8df6ff;
  border-color: rgba(23, 212, 228, 0.44);
  background: rgba(4, 19, 37, 0.72);
  box-shadow: 0 0 34px rgba(23, 212, 228, 0.12);
}

.opening-meta-strip,
.mrbd-waveguide-frame,
.podium-winner-card,
.polaroid-chamber-integrated,
.restart-card,
.tribute-glass-card,
.studio-controls-bar,
.victory-photo-card,
.victory-photo-card.is-winner-gold,
.victory-photo-card.is-winner-silver,
.victory-photo-card.is-winner-bronze,
.victory-photo-card.is-frame-attendees,
.victory-photo-card.is-mention-cyan {
  background:
    linear-gradient(145deg, rgba(18, 166, 255, 0.16), rgba(3, 9, 20, 0.9) 44%, rgba(4, 18, 34, 0.88)),
    rgba(5, 16, 31, 0.88) !important;
  border-color: rgba(23, 212, 228, 0.3) !important;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(8, 120, 249, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.mrbd-waveguide-frame {
  border-width: 1.5px;
}

.mrbd-waveguide-frame::before,
.tribute-glass-card::before,
.victory-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.13), transparent 24%, transparent 68%, rgba(23, 212, 228, 0.08)),
    radial-gradient(circle at 12% 0%, rgba(23, 212, 228, 0.18), transparent 34%);
  opacity: 0.72;
}

.team-highlight-banner {
  background:
    linear-gradient(90deg, rgba(8, 120, 249, 0.2), rgba(5, 16, 31, 0.76)) !important;
  border-color: rgba(23, 212, 228, 0.28) !important;
  border-left-color: var(--stage-cyan) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.team-highlight-name,
.theme-bronze .team-highlight-name,
.theme-silver .team-highlight-name,
.theme-gold .team-highlight-name,
.podium-team-name,
.tribute-team-name,
.card-team-subtitle,
.victory-photo-card.is-winner-gold .card-team-subtitle,
.victory-photo-card.is-winner-silver .card-team-subtitle,
.victory-photo-card.is-winner-bronze .card-team-subtitle,
.victory-photo-card.is-frame-attendees .card-team-subtitle,
.victory-photo-card.is-mention-cyan .card-team-subtitle {
  color: #64eaff !important;
  background-image: linear-gradient(180deg, #dbfbff, #17d4e4 48%, #0878f9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(23, 212, 228, 0.2));
}

.theme-gold .team-highlight-name,
.podium-col.rank-1 .podium-team-name {
  background-image: linear-gradient(180deg, #ffffff, #e5f46b 48%, #17d4e4);
}

.mention-reason-text,
.winner-reason-text,
.opening-lead,
.mentions-nav-indicator,
.podium-header p,
.suspense-teaser,
.tribute-message,
.tribute-guide-card .guide-text {
  color: rgba(238, 248, 255, 0.78) !important;
}

.team-builders-row,
.podium-members,
.tribute-members,
.tribute-category-tag,
.tribute-section-label,
.card-footer-sub,
.hud-shortcut-hint {
  color: rgba(169, 189, 210, 0.9) !important;
}

.mention-icon-huge,
.winner-artwork-wrap,
.podium-thumb {
  background:
    radial-gradient(circle at 50% 40%, rgba(23, 212, 228, 0.24), transparent 48%),
    #020711;
  border-color: rgba(244, 246, 248, 0.5);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.46),
    0 0 42px rgba(8, 120, 249, 0.18);
}

.mention-icon-huge img,
.winner-artwork-wrap img,
.podium-thumb img {
  mix-blend-mode: normal;
}

.category-badge-pill,
.place-crown-badge,
.winner-score-pill,
.podium-card-badge,
.tribute-badge.badge-mention,
.victory-badge-stamp.badge-mention,
.selector-badge {
  background:
    linear-gradient(180deg, rgba(23, 212, 228, 0.16), rgba(8, 120, 249, 0.1)) !important;
  border-color: rgba(23, 212, 228, 0.52) !important;
  color: #8df6ff !important;
  box-shadow: 0 0 24px rgba(23, 212, 228, 0.12) !important;
}

.badge-gold,
.tribute-badge.badge-gold,
.victory-badge-stamp.badge-gold,
.podium-badge-first,
.podium-col.rank-1 .podium-card-badge {
  background: linear-gradient(180deg, #ffffff, #e5f46b 45%, #17d4e4) !important;
  border-color: rgba(229, 244, 107, 0.7) !important;
  color: #061426 !important;
  box-shadow: 0 0 34px rgba(229, 244, 107, 0.24) !important;
}

.badge-silver,
.tribute-badge.badge-silver,
.victory-badge-stamp.badge-silver,
.podium-badge-second,
.podium-col.rank-2 .podium-card-badge {
  background: linear-gradient(180deg, #ffffff, #d9f4ff 44%, #83a7c7) !important;
  border-color: rgba(217, 244, 255, 0.62) !important;
  color: #061426 !important;
}

.badge-bronze,
.tribute-badge.badge-bronze,
.victory-badge-stamp.badge-bronze,
.podium-badge-third,
.podium-col.rank-3 .podium-card-badge {
  background: linear-gradient(180deg, #d9f4ff, #0878f9 54%, #0556bf) !important;
  border-color: rgba(125, 220, 255, 0.62) !important;
  color: #ffffff !important;
}

.floating-praise-bubble,
.remark-chip,
.tribute-quote-bubble {
  background:
    linear-gradient(145deg, rgba(8, 120, 249, 0.18), rgba(3, 9, 20, 0.86)) !important;
  border-color: rgba(23, 212, 228, 0.24) !important;
  border-left-color: var(--stage-cyan) !important;
  color: rgba(247, 251, 255, 0.86) !important;
}

.mystery-ripple-core {
  background:
    radial-gradient(circle at 50% 36%, rgba(23, 212, 228, 0.58), rgba(8, 120, 249, 0.28) 38%, rgba(3, 9, 20, 0.96) 68%),
    #030914;
  border-color: rgba(141, 246, 255, 0.72);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 54px rgba(23, 212, 228, 0.5),
    0 34px 100px rgba(0, 0, 0, 0.58);
}

.theme-gold .mystery-ripple-core {
  border-color: rgba(229, 244, 107, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 64px rgba(229, 244, 107, 0.42),
    0 34px 100px rgba(0, 0, 0, 0.58);
}

.podium-structure {
  gap: clamp(18px, 2.4vw, 34px);
}

.podium-winner-card {
  border-left-color: var(--stage-cyan) !important;
}

.podium-col.rank-1 .podium-winner-card {
  border-left-color: var(--stage-yellow) !important;
}

.podium-col.rank-2 .podium-winner-card {
  border-left-color: #d9f4ff !important;
}

.podium-pillar {
  background:
    linear-gradient(180deg, #7ddcff 0%, #0878f9 45%, #044ca7 100%) !important;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(8, 120, 249, 0.2);
}

.podium-col.rank-1 .podium-pillar {
  background:
    linear-gradient(180deg, #ffffff 0%, #e5f46b 38%, #0878f9 100%) !important;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.48),
    0 0 52px rgba(229, 244, 107, 0.22);
}

.podium-col.rank-2 .podium-pillar {
  background:
    linear-gradient(180deg, #ffffff 0%, #d9f4ff 48%, #0878f9 100%) !important;
}

.polaroid-chamber-integrated {
  max-width: 1260px;
}

.studio-split-grid {
  background: rgba(23, 212, 228, 0.16);
  border-color: rgba(23, 212, 228, 0.2);
}

.studio-tribute-col,
.studio-booth-col {
  background: rgba(3, 9, 20, 0.54);
}

.tribute-guide-card {
  background: linear-gradient(90deg, rgba(229, 244, 107, 0.18), rgba(23, 212, 228, 0.1)) !important;
  border-color: rgba(229, 244, 107, 0.36) !important;
}

.custom-select,
.custom-mrbd-select,
.dock-btn,
.dock-btn-upload,
.btn-cancel-restart,
.dock-btn.secondary-btn,
.dock-btn.share-btn {
  background: rgba(3, 9, 20, 0.72) !important;
  border-color: rgba(23, 212, 228, 0.24) !important;
  color: #eef8ff !important;
}

.dock-btn.snap-btn,
.dock-btn.download-btn {
  background: linear-gradient(180deg, #12a6ff, #0878f9 58%, #0556bf) !important;
  color: #ffffff !important;
}

.dock-btn:hover,
.dock-btn-upload:hover,
.dock-btn.secondary-btn:hover,
.dock-btn.share-btn:hover {
  background: rgba(23, 212, 228, 0.13) !important;
  border-color: rgba(141, 246, 255, 0.62) !important;
  color: #8df6ff !important;
}

.victory-card-footer {
  background:
    linear-gradient(180deg, rgba(6, 20, 38, 0.96), rgba(3, 9, 20, 0.98)) !important;
}

.camera-countdown-overlay {
  color: #e5f46b;
  text-shadow:
    0 0 20px rgba(229, 244, 107, 0.72),
    0 0 60px rgba(23, 212, 228, 0.28);
}

.presenter-hud {
  background: rgba(3, 9, 20, 0.82);
  border-color: rgba(23, 212, 228, 0.24);
}

@media (max-width: 980px) {
  .main-awards-title {
    font-size: clamp(58px, 17vw, 96px);
  }
}

/* Project-name reel for the top 3 suspense beat. */
.mystery-ripple-core.project-reel-core {
  --reel-core-width: 520px;
  --reel-core-height: 116px;
  --reel-font-size: 34px;
  min-width: 112px;
  width: 112px;
  max-width: none;
  height: 112px;
  padding: 0 24px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font: 900 var(--reel-font-size) / 1 var(--font-display);
  letter-spacing: 0;
  text-transform: none;
  background:
    linear-gradient(145deg, rgba(23, 212, 228, 0.32), rgba(3, 9, 20, 0.96) 48%, rgba(8, 120, 249, 0.28)),
    #030914;
  transition:
    width 0.18s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.18s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.18s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.18s ease;
}

.mystery-ripple-core.project-reel-core.morph-circle {
  width: 112px;
  height: 112px;
  padding: 0 14px;
  border-radius: 50%;
  font-size: clamp(15px, 1.4vw, 22px);
  animation: projectNameCirclePulse 0.16s ease both;
}

.mystery-ripple-core.project-reel-core.morph-rect {
  width: var(--reel-core-width);
  height: var(--reel-core-height);
  border-radius: 3px;
  animation: projectNamePlateSnap 0.16s ease both;
}

.mystery-ripple-core.project-reel-core::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(141, 246, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.mystery-ripple-core.project-reel-core {
  background-clip: padding-box;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  background-image:
    linear-gradient(180deg, #ffffff 0%, #d9f4ff 28%, #7ddcff 48%, #ffffff 66%, #91b8d8 100%),
    linear-gradient(145deg, rgba(23, 212, 228, 0.32), rgba(3, 9, 20, 0.96) 48%, rgba(8, 120, 249, 0.28));
  -webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
}

@keyframes projectNameCirclePulse {
  0% { transform: scale(0.92) rotate(-1deg); filter: brightness(1.8); }
  100% { transform: scale(1.02) rotate(0deg); filter: brightness(1.2); }
}

@keyframes projectNamePlateSnap {
  0% { transform: scaleX(0.68) scaleY(1.08); filter: brightness(2); }
  100% { transform: scaleX(1) scaleY(1); filter: brightness(1.35); }
}

@media (max-width: 680px) {
  .mystery-ripple-core.project-reel-core.morph-rect {
    width: var(--reel-core-width);
  }
}

/* ==========================================================================
   10. FINAL VISUAL BALANCE PASS
   ========================================================================== */
.main-awards-title,
.mentions-header h2,
.podium-header h2,
.mention-project-title,
.podium-project-name,
.tribute-project-title,
.card-project-title,
.studio-title-block h2 {
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
}

.main-awards-title,
.mentions-header h2,
.podium-header h2 {
  color: #f7fbff !important;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.36), 0 0 28px rgba(8, 120, 249, 0.16);
}

.main-awards-title em {
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  color: #17d4e4 !important;
}

.mention-project-title,
.winner-project-title,
.podium-project-name,
.tribute-project-title,
.card-project-title,
.studio-title-block h2 {
  color: #eef8ff !important;
}

#scene-winner.theme-bronze #suspensePlaceTag,
#scene-winner.theme-bronze #winnerTitle {
  color: #e7b27d !important;
  background-image: linear-gradient(180deg, #fff1d8 0%, #e7b27d 32%, #a9602d 58%, #ffd9a3 78%, #7a3d18 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 18px rgba(231, 178, 125, 0.2)) !important;
}

#scene-winner.theme-silver #suspensePlaceTag,
#scene-winner.theme-silver #winnerTitle {
  color: #d9f4ff !important;
  background-image: linear-gradient(180deg, #ffffff 0%, #d9f4ff 28%, #91aeca 52%, #ffffff 72%, #6d879d 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 18px rgba(217, 244, 255, 0.2)) !important;
}

#scene-winner.theme-gold #suspensePlaceTag,
#scene-winner.theme-gold #winnerTitle {
  color: #e5f46b !important;
  background-image: linear-gradient(180deg, #ffffff 0%, #fff7a8 28%, #e5f46b 48%, #bd9d35 68%, #fffbd0 82%, #8f741d 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 24px rgba(229, 244, 107, 0.26)) !important;
}

#scene-winner.theme-bronze .mystery-ripple-core:not(.project-reel-core) {
  color: #e7b27d !important;
  border-color: rgba(231, 178, 125, 0.72);
}

#scene-winner.theme-silver .mystery-ripple-core:not(.project-reel-core) {
  color: #d9f4ff !important;
  border-color: rgba(217, 244, 255, 0.72);
}

#scene-winner.theme-gold .mystery-ripple-core:not(.project-reel-core) {
  color: #e5f46b !important;
  border-color: rgba(229, 244, 107, 0.78);
}

.opening-wrap {
  width: min(1120px, 100%);
  min-height: calc(100vh - 210px);
  margin: 0 auto;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  transform: translateY(-1.5vh);
}

.main-awards-title {
  width: 100%;
  max-width: 980px;
  margin: clamp(26px, 4vh, 46px) auto 0;
  font-size: clamp(76px, 8.9vw, 148px);
  line-height: 0.84;
}

.opening-lead {
  max-width: 640px;
  margin: clamp(24px, 3vh, 36px) auto 0;
  text-align: center;
  color: rgba(238, 248, 255, 0.75) !important;
}

.opening-meta-strip {
  width: min(620px, 100%);
  margin: clamp(26px, 3.4vh, 38px) auto 0;
  justify-content: center;
  gap: 28px;
  background: rgba(3, 9, 20, 0.72) !important;
}

.cta-pulse-prompt {
  margin: clamp(26px, 3.4vh, 40px) auto 0;
  min-width: min(460px, 100%);
}

.mentions-fullscreen-wrap,
.winner-reveal-wrap,
.podium-stage-wrap {
  width: min(1260px, 100%);
}

.mrbd-waveguide-frame,
.podium-winner-card,
.tribute-glass-card,
.victory-photo-card {
  background:
    linear-gradient(145deg, rgba(8, 120, 249, 0.18), rgba(3, 9, 20, 0.94) 50%, rgba(6, 30, 54, 0.84)) !important;
}

.winner-hero-card,
.mention-hero-showcase {
  gap: clamp(34px, 5vw, 76px);
}

.team-highlight-banner {
  background: linear-gradient(90deg, rgba(8, 120, 249, 0.22), rgba(2, 7, 17, 0.58)) !important;
}

.theme-bronze .team-highlight-banner {
  border-left-color: #e7b27d !important;
}

.theme-silver .team-highlight-banner {
  border-left-color: #d9f4ff !important;
}

.theme-gold .team-highlight-banner {
  border-left-color: #e5f46b !important;
}

.theme-bronze .winner-score-pill,
.theme-bronze .place-crown-badge,
.theme-bronze .winner-score-pill,
.badge-bronze,
.tribute-badge.badge-bronze,
.victory-badge-stamp.badge-bronze,
.podium-badge-third,
.podium-col.rank-3 .podium-card-badge {
  background: linear-gradient(180deg, #fff1d8, #e7b27d 42%, #a9602d) !important;
  border-color: rgba(231, 178, 125, 0.7) !important;
  color: #101522 !important;
}

.theme-silver .winner-score-pill,
.theme-silver .place-crown-badge,
.badge-silver,
.tribute-badge.badge-silver,
.victory-badge-stamp.badge-silver,
.podium-badge-second,
.podium-col.rank-2 .podium-card-badge {
  background: linear-gradient(180deg, #ffffff, #d9f4ff 48%, #91aeca) !important;
  border-color: rgba(217, 244, 255, 0.7) !important;
  color: #101522 !important;
}

.theme-gold .winner-score-pill,
.theme-gold .place-crown-badge,
.badge-gold,
.tribute-badge.badge-gold,
.victory-badge-stamp.badge-gold,
.podium-badge-first,
.podium-col.rank-1 .podium-card-badge {
  background: linear-gradient(180deg, #ffffff, #e5f46b 48%, #bd9d35) !important;
  border-color: rgba(229, 244, 107, 0.72) !important;
  color: #101522 !important;
}

.podium-col.rank-3 .podium-winner-card {
  border-left-color: #e7b27d !important;
}

.podium-col.rank-2 .podium-winner-card {
  border-left-color: #d9f4ff !important;
}

.podium-col.rank-1 .podium-winner-card {
  border-left-color: #e5f46b !important;
}

.podium-col.rank-3 .podium-pillar {
  background: linear-gradient(180deg, #fff1d8 0%, #e7b27d 42%, #7a3d18 100%) !important;
  color: #101522;
}

.podium-col.rank-2 .podium-pillar {
  background: linear-gradient(180deg, #ffffff 0%, #d9f4ff 48%, #6d879d 100%) !important;
  color: #101522;
}

.podium-col.rank-1 .podium-pillar {
  background: linear-gradient(180deg, #ffffff 0%, #e5f46b 42%, #0878f9 100%) !important;
}

.polaroid-chamber-integrated {
  width: min(1260px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: clamp(18px, 2vw, 30px);
}

.studio-split-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: stretch;
}

.studio-tribute-col,
.studio-booth-col {
  min-width: 0;
}

.tribute-glass-card {
  min-width: 0;
  overflow: hidden;
}

.tribute-project-title {
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.tribute-team-meta {
  min-width: 0;
}

.tribute-members {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tribute-message {
  font-size: clamp(14px, 1.18vw, 16px);
}

.studio-card-stage {
  min-height: 0;
}

.victory-photo-card {
  max-width: 560px;
  margin: 0 auto;
}

.victory-badge-stamp {
  max-width: calc(100% - 48px);
  white-space: normal;
  text-align: center;
}

.card-project-title,
.card-team-subtitle {
  white-space: normal;
}

.studio-primary-actions {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) minmax(120px, 0.75fr) minmax(180px, 1.25fr) minmax(110px, 0.65fr);
}

.dock-btn {
  min-width: 0;
  white-space: normal;
  line-height: 1.2;
}

.project-reel-core {
  -webkit-text-fill-color: transparent !important;
}

@media (max-width: 1100px) {
  .studio-split-grid,
  .studio-primary-actions {
    grid-template-columns: 1fr;
  }

  .victory-photo-card {
    max-width: 520px;
  }
}

@media (max-width: 980px) {
  .opening-wrap {
    min-height: calc(100vh - 190px);
    transform: none;
  }

  .main-awards-title {
    font-size: clamp(56px, 15vw, 92px);
  }

  .opening-meta-strip {
    flex-direction: column;
    gap: 9px;
    padding: 14px 16px;
  }

  .cta-pulse-prompt {
    min-width: 0;
    width: min(460px, 100%);
  }
}

/* ==========================================================================
   11. NON-METALLIC RANK SYSTEM + PODIUM REBUILD
   ========================================================================== */
:root {
  --rank-gold: #f4d35e;
  --rank-gold-deep: #9f7b14;
  --rank-silver: #c8d3df;
  --rank-silver-deep: #6f8293;
  --rank-bronze: #c47a43;
  --rank-bronze-deep: #74401f;
  --stage-card-dark: rgba(3, 10, 22, 0.86);
  --stage-card-blue: rgba(5, 25, 48, 0.88);
}

.main-awards-title,
.main-awards-title em,
.mentions-header h2,
.podium-header h2,
.suspense-place-tag,
.mention-project-title,
.winner-project-title,
.podium-project-name,
.tribute-project-title,
.card-project-title,
.studio-title-block h2,
#scene-winner.theme-bronze #suspensePlaceTag,
#scene-winner.theme-bronze #winnerTitle,
#scene-winner.theme-silver #suspensePlaceTag,
#scene-winner.theme-silver #winnerTitle,
#scene-winner.theme-gold #suspensePlaceTag,
#scene-winner.theme-gold #winnerTitle,
.mystery-ripple-core.project-reel-core {
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
}

.main-awards-title,
.mentions-header h2,
.podium-header h2,
.suspense-place-tag,
.mention-project-title,
.winner-project-title,
.podium-project-name {
  color: #f7fbff !important;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), 0 0 18px rgba(23, 212, 228, 0.12);
}

.main-awards-title em {
  color: #17d4e4 !important;
}

#scene-winner.theme-bronze #suspensePlaceTag,
#scene-winner.theme-bronze #winnerTitle {
  color: var(--rank-bronze) !important;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 20px rgba(196, 122, 67, 0.22);
}

#scene-winner.theme-silver #suspensePlaceTag,
#scene-winner.theme-silver #winnerTitle {
  color: var(--rank-silver) !important;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 20px rgba(200, 211, 223, 0.18);
}

#scene-winner.theme-gold #suspensePlaceTag,
#scene-winner.theme-gold #winnerTitle {
  color: var(--rank-gold) !important;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 22px rgba(244, 211, 94, 0.22);
}

.podium-stage-wrap {
  width: min(1320px, 100%);
}

.podium-header {
  margin-bottom: clamp(24px, 4vh, 44px);
}

.podium-header h2 {
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 0.92;
}

.podium-structure {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: end;
  gap: clamp(18px, 2.1vw, 30px);
  max-width: 1180px;
  margin: 0 auto;
}

.podium-col {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
}

.podium-winner-card {
  min-height: 330px;
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(8, 120, 249, 0.14), rgba(3, 10, 22, 0.92)),
    var(--stage-card-dark) !important;
  border: 1px solid rgba(23, 212, 228, 0.22) !important;
  border-top: 4px solid var(--stage-cyan) !important;
  border-left: 1px solid rgba(23, 212, 228, 0.22) !important;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.podium-col.rank-1 .podium-winner-card {
  min-height: 390px;
  border-top-color: var(--rank-gold) !important;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.42), 0 0 36px rgba(244, 211, 94, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.podium-col.rank-2 .podium-winner-card {
  border-top-color: var(--rank-silver) !important;
}

.podium-col.rank-3 .podium-winner-card {
  border-top-color: var(--rank-bronze) !important;
}

.podium-card-badge {
  padding: 8px 14px;
  border-radius: 4px;
  font: 800 11px var(--font-mono);
}

.podium-col.rank-1 .podium-card-badge,
.badge-gold,
.tribute-badge.badge-gold,
.victory-badge-stamp.badge-gold,
.place-crown-badge.badge-gold,
.theme-gold .winner-score-pill {
  background: rgba(244, 211, 94, 0.15) !important;
  border: 1px solid rgba(244, 211, 94, 0.58) !important;
  color: #ffe88a !important;
  box-shadow: none !important;
}

.podium-col.rank-2 .podium-card-badge,
.badge-silver,
.tribute-badge.badge-silver,
.victory-badge-stamp.badge-silver,
.place-crown-badge.badge-silver,
.theme-silver .winner-score-pill {
  background: rgba(200, 211, 223, 0.14) !important;
  border: 1px solid rgba(200, 211, 223, 0.56) !important;
  color: #e6eef5 !important;
  box-shadow: none !important;
}

.podium-col.rank-3 .podium-card-badge,
.badge-bronze,
.tribute-badge.badge-bronze,
.victory-badge-stamp.badge-bronze,
.place-crown-badge.badge-bronze,
.theme-bronze .winner-score-pill {
  background: rgba(196, 122, 67, 0.15) !important;
  border: 1px solid rgba(196, 122, 67, 0.58) !important;
  color: #f0b07c !important;
  box-shadow: none !important;
}

.podium-thumb {
  width: clamp(76px, 6.8vw, 104px);
  height: clamp(76px, 6.8vw, 104px);
  background: #020711;
  border: 1px solid rgba(244, 246, 248, 0.34);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.podium-col.rank-1 .podium-thumb {
  width: clamp(90px, 7.8vw, 122px);
  height: clamp(90px, 7.8vw, 122px);
}

.podium-project-name {
  max-width: 100%;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.03;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.podium-col.rank-1 .podium-project-name {
  font-size: clamp(28px, 3.1vw, 44px);
}

.podium-team-name {
  color: #17d4e4 !important;
  background-image: none !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
  font-size: 12px;
}

.podium-col.rank-1 .podium-team-name {
  color: #e5f46b !important;
}

.podium-members {
  color: rgba(169, 189, 210, 0.9) !important;
  text-align: center;
  line-height: 1.35;
}

.podium-score {
  margin-top: 2px;
  padding: 7px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: #e5f46b !important;
  font-size: 12px;
}

.podium-pillar {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(244, 246, 248, 0.12);
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(23, 212, 228, 0.16), rgba(4, 18, 34, 0.92)),
    #061426 !important;
  color: rgba(247, 251, 255, 0.22) !important;
  font: 900 clamp(54px, 7vw, 92px) var(--font-display);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.podium-col.rank-1 .podium-pillar {
  height: 178px;
  border-color: rgba(244, 211, 94, 0.24);
  background:
    linear-gradient(180deg, rgba(244, 211, 94, 0.18), rgba(4, 18, 34, 0.92)),
    #061426 !important;
  color: rgba(244, 211, 94, 0.28) !important;
}

.podium-col.rank-2 .podium-pillar {
  height: 118px;
  border-color: rgba(200, 211, 223, 0.22);
  background:
    linear-gradient(180deg, rgba(200, 211, 223, 0.14), rgba(4, 18, 34, 0.9)),
    #061426 !important;
  color: rgba(200, 211, 223, 0.24) !important;
}

.podium-col.rank-3 .podium-pillar {
  height: 96px;
  border-color: rgba(196, 122, 67, 0.24);
  background:
    linear-gradient(180deg, rgba(196, 122, 67, 0.15), rgba(4, 18, 34, 0.9)),
    #061426 !important;
  color: rgba(196, 122, 67, 0.28) !important;
}

.podium-footer-actions {
  margin-top: clamp(26px, 4vh, 42px);
}

.winner-hero-card {
  align-items: center;
}

.winner-project-title {
  font-size: clamp(48px, 7vw, 104px);
}

.theme-bronze .team-highlight-banner,
.theme-silver .team-highlight-banner,
.theme-gold .team-highlight-banner {
  background: rgba(3, 10, 22, 0.66) !important;
}

.theme-bronze .team-highlight-banner {
  border-left-color: var(--rank-bronze) !important;
}

.theme-silver .team-highlight-banner {
  border-left-color: var(--rank-silver) !important;
}

.theme-gold .team-highlight-banner {
  border-left-color: var(--rank-gold) !important;
}

.theme-bronze .team-highlight-name,
.theme-silver .team-highlight-name,
.theme-gold .team-highlight-name {
  background-image: none !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
}

.theme-bronze .team-highlight-name {
  color: #f0b07c !important;
}

.theme-silver .team-highlight-name {
  color: #e6eef5 !important;
}

.theme-gold .team-highlight-name {
  color: #ffe88a !important;
}

.mystery-ripple-core.project-reel-core {
  color: #f7fbff !important;
  text-shadow: 0 0 18px rgba(23, 212, 228, 0.28);
}

@media (max-width: 980px) {
  .podium-structure {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .podium-winner-card,
  .podium-col.rank-1 .podium-winner-card {
    min-height: 0;
  }

  .podium-pillar,
  .podium-col.rank-1 .podium-pillar,
  .podium-col.rank-2 .podium-pillar,
  .podium-col.rank-3 .podium-pillar {
    height: 72px;
  }
}

/* ==========================================================================
   12. LAYOUT REPAIR PASS: WINNER, PODIUM, PHOTOBOOTH
   ========================================================================== */
:root {
  --rank-gold: #f4d35e;
  --rank-gold-soft: rgba(244, 211, 94, 0.16);
  --rank-silver: #d6e2ee;
  --rank-silver-soft: rgba(214, 226, 238, 0.14);
  --rank-bronze: #d28a56;
  --rank-bronze-soft: rgba(210, 138, 86, 0.16);
  --ceremony-card: rgba(3, 10, 22, 0.9);
  --ceremony-card-2: rgba(5, 24, 46, 0.86);
}

.ceremony-scene {
  overflow: hidden;
}

.winner-reveal-wrap {
  width: min(1180px, 100%);
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vh, 54px) 0;
}

.revealed-box.active {
  width: 100%;
  max-width: 1120px;
  gap: clamp(14px, 2vh, 22px);
}

#winnerWaveguideFrame {
  width: 100%;
  max-width: 1020px;
  min-height: 380px;
  margin: 0 auto;
  overflow: visible;
}

#winnerWaveguideFrame .winner-hero-card {
  width: 100%;
  min-width: 0;
  padding: clamp(28px, 3.2vw, 46px);
  grid-template-columns: clamp(160px, 18vw, 230px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.winner-details {
  min-width: 0;
  max-width: 100%;
  gap: 14px;
}

.winner-project-title {
  max-width: 100%;
  font-size: clamp(46px, 5.2vw, 76px) !important;
  line-height: 0.95;
  white-space: normal;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

.winner-artwork-wrap {
  width: clamp(160px, 18vw, 230px);
  height: clamp(160px, 18vw, 230px);
  border-radius: 8px;
}

.winner-details .team-highlight-banner {
  width: 100%;
  max-width: 760px;
  padding: 18px 22px;
}

.winner-reason-text {
  max-width: 850px;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
}

.place-crown-badge {
  font-family: var(--font-mono);
  border-radius: 4px;
  letter-spacing: 0.08em;
  padding: 9px 18px;
}

.theme-gold .place-crown-badge,
.theme-gold .winner-score-pill {
  background: var(--rank-gold-soft) !important;
  border-color: rgba(244, 211, 94, 0.56) !important;
  color: #ffe27c !important;
}

.theme-silver .place-crown-badge,
.theme-silver .winner-score-pill {
  background: var(--rank-silver-soft) !important;
  border-color: rgba(214, 226, 238, 0.5) !important;
  color: #eaf3fb !important;
}

.theme-bronze .place-crown-badge,
.theme-bronze .winner-score-pill {
  background: var(--rank-bronze-soft) !important;
  border-color: rgba(210, 138, 86, 0.56) !important;
  color: #f3b07c !important;
}

#scene-winner.theme-gold #winnerTitle {
  color: #ffe27c !important;
}

#scene-winner.theme-silver #winnerTitle {
  color: #eaf3fb !important;
}

#scene-winner.theme-bronze #winnerTitle {
  color: #f3b07c !important;
}

.theme-gold .team-highlight-name {
  color: #ffe27c !important;
}

.theme-silver .team-highlight-name {
  color: #eaf3fb !important;
}

.theme-bronze .team-highlight-name {
  color: #f3b07c !important;
}

.theme-gold #winnerWaveguideFrame,
.theme-gold .team-highlight-banner {
  border-color: rgba(244, 211, 94, 0.38) !important;
}

.theme-silver #winnerWaveguideFrame,
.theme-silver .team-highlight-banner {
  border-color: rgba(214, 226, 238, 0.32) !important;
}

.theme-bronze #winnerWaveguideFrame,
.theme-bronze .team-highlight-banner {
  border-color: rgba(210, 138, 86, 0.38) !important;
}

.floating-praise-zone {
  inset: -74px -86px -68px;
  z-index: 10 !important;
}

.floating-praise-bubble {
  max-width: 280px;
  min-height: 74px;
  padding: 13px 16px;
  border-radius: 6px;
  background: rgba(2, 8, 18, 0.88) !important;
  border: 1px solid rgba(23, 212, 228, 0.28) !important;
  border-left: 4px solid var(--stage-cyan) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 22px rgba(8, 120, 249, 0.12) !important;
}

.floating-praise-bubble .praise-quote-text {
  font-size: 13px;
  line-height: 1.4;
}

.floating-praise-bubble.praise-1 {
  top: 4px !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
}

.floating-praise-bubble.praise-2 {
  top: 4px !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
}

.floating-praise-bubble.praise-3 {
  bottom: 0 !important;
  left: 20px !important;
  right: auto !important;
  top: auto !important;
}

.floating-praise-bubble.praise-4 {
  bottom: 0 !important;
  right: 20px !important;
  left: auto !important;
  top: auto !important;
}

.theme-gold .floating-praise-bubble {
  border-left-color: var(--rank-gold) !important;
}

.theme-silver .floating-praise-bubble {
  border-left-color: var(--rank-silver) !important;
}

.theme-bronze .floating-praise-bubble {
  border-left-color: var(--rank-bronze) !important;
}

.podium-stage-wrap {
  display: flex;
  min-height: calc(100vh - 170px);
  flex-direction: column;
  justify-content: center;
}

.podium-structure {
  width: min(1120px, 100%);
  gap: 18px;
}

.podium-winner-card {
  min-height: 310px;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(180deg, var(--ceremony-card-2), var(--ceremony-card)) !important;
}

.podium-col.rank-1 .podium-winner-card {
  min-height: 360px;
}

.podium-col.rank-2 .podium-winner-card {
  border-top-color: var(--rank-silver) !important;
}

.podium-col.rank-3 .podium-winner-card {
  border-top-color: var(--rank-bronze) !important;
}

.podium-col.rank-1 .podium-winner-card {
  border-top-color: var(--rank-gold) !important;
}

.podium-col.rank-1 .podium-card-badge {
  background: var(--rank-gold-soft) !important;
  border-color: rgba(244, 211, 94, 0.56) !important;
  color: #ffe27c !important;
}

.podium-col.rank-2 .podium-card-badge {
  background: var(--rank-silver-soft) !important;
  border-color: rgba(214, 226, 238, 0.5) !important;
  color: #eaf3fb !important;
}

.podium-col.rank-3 .podium-card-badge {
  background: var(--rank-bronze-soft) !important;
  border-color: rgba(210, 138, 86, 0.56) !important;
  color: #f3b07c !important;
}

.podium-pillar,
.podium-col.rank-1 .podium-pillar,
.podium-col.rank-2 .podium-pillar,
.podium-col.rank-3 .podium-pillar {
  background:
    linear-gradient(180deg, rgba(23, 212, 228, 0.1), rgba(3, 10, 22, 0.92)),
    #061426 !important;
}

.podium-col.rank-1 .podium-pillar {
  border-color: rgba(244, 211, 94, 0.24);
  color: rgba(244, 211, 94, 0.28) !important;
}

.podium-col.rank-2 .podium-pillar {
  border-color: rgba(214, 226, 238, 0.22);
  color: rgba(214, 226, 238, 0.26) !important;
}

.podium-col.rank-3 .podium-pillar {
  border-color: rgba(210, 138, 86, 0.22);
  color: rgba(210, 138, 86, 0.28) !important;
}

.polaroid-chamber-integrated {
  width: min(1220px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
}

.studio-split-grid {
  min-height: 0;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
}

.studio-tribute-col,
.studio-booth-col {
  overflow: hidden;
}

.tribute-glass-card {
  max-height: calc(100vh - 220px);
  overflow: auto;
}

.tribute-project-title {
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 0.98;
}

.studio-card-stage {
  flex: 1 1 auto;
  align-items: center;
}

.victory-photo-card {
  max-width: min(520px, 100%);
}

.studio-action-dock {
  flex: 0 0 auto;
}

.studio-primary-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dock-btn {
  min-height: 42px;
  height: auto;
  padding: 10px 12px;
}

@media (max-width: 1180px) {
  .floating-praise-zone {
    position: static;
    inset: auto;
    width: min(960px, 100%);
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
  }

  .floating-praise-bubble,
  .floating-praise-bubble.praise-1,
  .floating-praise-bubble.praise-2,
  .floating-praise-bubble.praise-3,
  .floating-praise-bubble.praise-4 {
    position: relative !important;
    inset: auto !important;
    max-width: none;
    transform: none;
    animation: floatPraiseIn 0.5s ease forwards !important;
  }
}

@media (max-width: 960px) {
  .winner-reveal-wrap,
  .podium-stage-wrap {
    min-height: auto;
    padding-bottom: 80px;
  }

  #winnerWaveguideFrame .winner-hero-card,
  .mention-hero-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .winner-details .team-highlight-banner,
  .winner-score-pill {
    align-self: stretch;
  }

  .winner-artwork-wrap {
    margin: 0 auto;
  }

  .winner-project-title {
    font-size: clamp(42px, 12vw, 70px) !important;
    text-align: center;
  }

  .floating-praise-zone {
    grid-template-columns: 1fr;
  }

  .studio-split-grid {
    grid-template-columns: 1fr;
  }

  .polaroid-chamber-integrated {
    overflow: auto;
  }

  .tribute-glass-card {
    max-height: none;
  }
}

/* ==========================================================================
   13. PHOTOBOOTH PREVIEW / PNG PARITY FIX
   ========================================================================== */
.victory-photo-card,
.victory-photo-card.is-winner-gold,
.victory-photo-card.is-winner-silver,
.victory-photo-card.is-winner-bronze,
.victory-photo-card.is-frame-attendees,
.victory-photo-card.is-mention-cyan {
  background:
    linear-gradient(180deg, #08203a 0%, #061426 48%, #030914 100%) !important;
  border: 1px solid #17d4e4 !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.victory-photo-card.is-winner-gold {
  border-color: #f4d35e !important;
}

.victory-photo-card.is-winner-silver {
  border-color: #d6e2ee !important;
}

.victory-photo-card.is-winner-bronze {
  border-color: #d28a56 !important;
}

.victory-card-media {
  border-bottom: 1px solid rgba(23, 212, 228, 0.22);
}

.victory-badge-stamp,
.victory-badge-stamp.badge-community,
.victory-badge-stamp.badge-mention,
.victory-badge-stamp.badge-gold,
.victory-badge-stamp.badge-silver,
.victory-badge-stamp.badge-bronze {
  top: 18px;
  right: 18px;
  max-width: calc(100% - 36px);
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(3, 10, 22, 0.92) !important;
  border: 1px solid #17d4e4 !important;
  color: #eafcff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32), 0 0 18px rgba(23, 212, 228, 0.16) !important;
  backdrop-filter: blur(12px) saturate(1.2);
  font: 800 clamp(9px, 1.15vw, 12px) var(--font-mono);
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: anywhere;
}

.victory-badge-stamp.badge-gold {
  border-color: #f4d35e !important;
  color: #ffe27c !important;
}

.victory-badge-stamp.badge-silver {
  border-color: #d6e2ee !important;
  color: #eaf3fb !important;
}

.victory-badge-stamp.badge-bronze {
  border-color: #d28a56 !important;
  color: #f3b07c !important;
}

.victory-card-footer {
  background:
    linear-gradient(180deg, rgba(6, 20, 38, 0.98), rgba(3, 9, 20, 1)) !important;
  padding: 16px 20px;
}

.card-project-title {
  color: #f7fbff !important;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.05;
}

.card-team-subtitle,
.victory-photo-card.is-frame-attendees .card-team-subtitle,
.victory-photo-card.is-mention-cyan .card-team-subtitle {
  color: #17d4e4 !important;
}

.victory-photo-card.is-winner-gold .card-team-subtitle {
  color: #ffe27c !important;
}

.victory-photo-card.is-winner-silver .card-team-subtitle {
  color: #eaf3fb !important;
}

.victory-photo-card.is-winner-bronze .card-team-subtitle {
  color: #f3b07c !important;
}

.card-footer-sub {
  color: rgba(169, 189, 210, 0.9) !important;
  border-top-color: rgba(23, 212, 228, 0.18);
}

@media (max-width: 620px) {
  .victory-badge-stamp {
    left: 14px;
    right: 14px;
    max-width: none;
  }
}

/* ==========================================================================
   14. WINNER REVEAL SPACING + SMOOTHNESS FIX
   ========================================================================== */
#scene-winner {
  inset: 78px 0 0 !important;
  height: calc(100vh - 78px) !important;
  padding: clamp(56px, 8vh, 96px) 5.2vw clamp(48px, 6vh, 72px) !important;
  align-items: stretch !important;
}

#scene-winner .winner-reveal-wrap {
  width: min(1120px, 100%);
  min-height: 0;
  height: 100%;
  justify-content: center;
  gap: clamp(18px, 3vh, 34px);
}

#scene-winner .suspense-box {
  width: min(920px, 100%);
  min-height: 0;
  margin: 0 auto;
  gap: clamp(20px, 3vh, 34px);
  transform: translateY(-1vh);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s ease;
}

#scene-winner .suspense-box.hidden {
  transform: translateY(-18px) scale(0.96);
  filter: blur(8px);
}

#scene-winner .suspense-place-tag {
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 0.95;
}

#scene-winner .suspense-teaser {
  max-width: min(680px, 100%);
  margin: 0 auto;
  font-size: clamp(12px, 1.18vw, 15px);
  letter-spacing: 0.11em;
}

#scene-winner #suspensePrompt {
  margin-top: clamp(8px, 2vh, 18px);
}

#scene-winner .revealed-box {
  transform: translateY(34px) scale(0.94);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.95s ease;
}

#scene-winner .revealed-box.active {
  transform: translateY(0) scale(1);
}

#scene-winner .winner-project-title {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: clip;
  max-width: 100%;
  line-height: 0.92;
}

.mystery-ripple-core.project-reel-core {
  transition:
    width 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.26s ease !important;
}

.mystery-ripple-core.project-reel-core.morph-rect {
  border-radius: 2px;
}

.mystery-ripple-core.project-reel-core.reel-swap {
  animation: reelNameSwap 0.12s ease both;
}

@keyframes reelNameSwap {
  0% {
    transform: translateY(2px) scale(0.99);
    opacity: 0.72;
    filter: brightness(1.8);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: brightness(1.16);
  }
}

@media (max-width: 980px) {
  #scene-winner {
    inset: 116px 0 0 !important;
    height: calc(100vh - 116px) !important;
    padding: 46px 20px 70px !important;
  }

  #scene-winner .suspense-place-tag {
    font-size: clamp(30px, 9vw, 44px);
  }

  #scene-winner .winner-project-title {
    font-size: clamp(34px, 11vw, 62px) !important;
  }
}

/* ==========================================================================
   15. WINNER TITLE NO-CLIP + SAFE REMARK FLOW
   ========================================================================== */
#scene-winner {
  padding-top: clamp(72px, 9vh, 112px) !important;
}

#scene-winner .winner-reveal-wrap {
  width: min(1100px, 100%);
  justify-content: center;
}

#scene-winner .suspense-place-tag {
  white-space: normal !important;
  text-align: center;
  line-height: 0.92;
  font-size: clamp(46px, 6vw, 78px);
}

#winnerWaveguideFrame {
  max-width: 980px;
  min-height: 0;
  overflow: hidden;
}

#winnerWaveguideFrame .winner-hero-card {
  grid-template-columns: clamp(150px, 16vw, 210px) minmax(0, 1fr);
  padding: clamp(26px, 3vw, 40px);
  gap: clamp(28px, 3.8vw, 50px);
}

.winner-details {
  overflow: visible;
}

#scene-winner .winner-project-title {
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip;
  max-width: 100%;
  line-height: 0.98;
}

.winner-artwork-wrap {
  width: clamp(150px, 16vw, 210px);
  height: clamp(150px, 16vw, 210px);
}

.floating-praise-zone {
  position: relative !important;
  inset: auto !important;
  width: min(980px, 100%);
  height: auto !important;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 12px auto 0;
  z-index: 6 !important;
}

.floating-praise-bubble,
.floating-praise-bubble.praise-1,
.floating-praise-bubble.praise-2,
.floating-praise-bubble.praise-3,
.floating-praise-bubble.praise-4 {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  max-width: none;
  min-height: 0;
  transform: none;
  animation: floatPraiseIn 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.floating-praise-bubble .praise-quote-text {
  font-size: clamp(12px, 1vw, 13px);
}

@media (max-height: 820px) and (min-width: 981px) {
  #scene-winner {
    padding-top: 50px !important;
    padding-bottom: 36px !important;
  }

  #scene-winner .suspense-place-tag {
    font-size: clamp(40px, 5vw, 62px);
  }

  #winnerWaveguideFrame .winner-hero-card {
    padding: 24px 32px;
  }

  .winner-artwork-wrap {
    width: 160px;
    height: 160px;
  }

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

@media (max-width: 980px) {
  #scene-winner {
    padding-top: 58px !important;
  }

  #scene-winner .suspense-place-tag {
    font-size: clamp(38px, 11vw, 58px);
  }

  #winnerWaveguideFrame .winner-hero-card {
    grid-template-columns: 1fr;
  }

  #scene-winner .winner-project-title {
    text-align: center;
  }

  .floating-praise-zone {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   16. RESTORE FLOATING PRAISE + FIXED RANDOMIZER MODULE
   ========================================================================== */
#scene-winner .winner-reveal-wrap {
  width: min(1180px, 100%);
}

#winnerWaveguideFrame {
  overflow: visible;
}

#scene-winner .winner-project-title {
  overflow: visible !important;
  text-overflow: unset;
}

.floating-praise-zone {
  position: absolute !important;
  inset: -58px -72px -54px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  pointer-events: none;
  z-index: 30 !important;
}

.floating-praise-bubble,
.floating-praise-bubble.praise-1,
.floating-praise-bubble.praise-2,
.floating-praise-bubble.praise-3,
.floating-praise-bubble.praise-4 {
  position: absolute !important;
  max-width: 300px;
  min-height: 74px;
  transform: translateY(24px) scale(0.88) rotate(var(--base-rot, 0deg));
  animation:
    floatPraiseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    floatPraiseDrift 5s infinite alternate ease-in-out !important;
}

.floating-praise-bubble.praise-1 {
  top: -18px !important;
  left: -34px !important;
  right: auto !important;
  bottom: auto !important;
}

.floating-praise-bubble.praise-2 {
  top: -22px !important;
  right: -34px !important;
  left: auto !important;
  bottom: auto !important;
}

.floating-praise-bubble.praise-3 {
  bottom: -18px !important;
  left: -22px !important;
  right: auto !important;
  top: auto !important;
}

.floating-praise-bubble.praise-4 {
  bottom: -14px !important;
  right: -22px !important;
  left: auto !important;
  top: auto !important;
}

.mystery-ripple-core.project-reel-core,
.drumroll-active .mystery-ripple-core.project-reel-core,
.mystery-ripple-core.project-reel-core.morph-rect,
.mystery-ripple-core.project-reel-core.reel-swap {
  width: var(--reel-core-width) !important;
  min-width: var(--reel-core-width) !important;
  max-width: var(--reel-core-width) !important;
  height: var(--reel-core-height) !important;
  min-height: var(--reel-core-height) !important;
  max-height: var(--reel-core-height) !important;
  border-radius: 2px !important;
  padding: 0 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  animation: none !important;
  transform: none !important;
}

.mystery-ripple-core.project-reel-core.morph-circle {
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
  height: 112px !important;
  min-height: 112px !important;
  max-height: 112px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  padding: 0 !important;
  flex: 0 0 112px !important;
  transform: none !important;
}

.mystery-ripple-core.project-reel-core.reel-swap {
  animation: reelTextOnlyPulse 0.11s ease both !important;
}

@keyframes reelTextOnlyPulse {
  0% { opacity: 0.72; filter: brightness(1.8); }
  100% { opacity: 1; filter: brightness(1.08); }
}

@media (max-width: 1180px) {
  .floating-praise-zone {
    inset: -46px -34px -46px !important;
  }

  .floating-praise-bubble {
    max-width: 260px;
  }
}

@media (max-width: 980px) {
  .floating-praise-zone {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100% !important;
    margin-top: 12px !important;
  }

  .floating-praise-bubble,
  .floating-praise-bubble.praise-1,
  .floating-praise-bubble.praise-2,
  .floating-praise-bubble.praise-3,
  .floating-praise-bubble.praise-4 {
    position: relative !important;
    inset: auto !important;
    max-width: none;
  }
}

/* Restore the older winner-card hierarchy: project title is the hero, team is supporting metadata. */
.suspense-score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -6px;
  padding: 9px 20px;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: rgba(3, 9, 20, 0.62);
  color: currentColor;
  font: 800 clamp(16px, 1.35vw, 22px) / 1 var(--font-mono);
  letter-spacing: 0.08em;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

#scene-winner.theme-gold .suspense-score-pill { color: #ffe27c; }
#scene-winner.theme-silver .suspense-score-pill { color: #eaf3fb; }
#scene-winner.theme-bronze .suspense-score-pill { color: #f3b07c; }

#scene-winner #winnerTitle.winner-project-title {
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  max-width: 100%;
  white-space: nowrap !important;
  overflow: visible !important;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

#scene-winner.theme-gold #winnerTitle { color: #ffe27c !important; }
#scene-winner.theme-silver #winnerTitle { color: #eaf3fb !important; }
#scene-winner.theme-bronze #winnerTitle { color: #f3b07c !important; }

#scene-winner .winner-details .team-highlight-banner {
  max-width: 720px;
  padding: 12px 16px !important;
  order: 2;
}

#scene-winner .team-highlight-name {
  color: #17d4e4 !important;
  font-size: clamp(15px, 1.15vw, 19px) !important;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

#scene-winner .team-builders-row {
  font-size: clamp(13px, 1vw, 16px) !important;
  line-height: 1.3;
}

/* Match honorable-mention card hierarchy for winner cards, with winner-grade color accents. */
#scene-winner #winnerWaveguideFrame .winner-hero-card {
  align-items: center;
}

#scene-winner #winnerWaveguideFrame .winner-details {
  gap: 14px !important;
  text-align: left;
}

#scene-winner #winnerTitle.winner-project-title {
  order: 1;
  display: block;
  margin: 0;
  font-size: clamp(68px, 7.6vw, 112px) !important;
}

#scene-winner #winnerScore.winner-score-pill {
  order: 3;
}

#scene-winner #winnerReason.winner-reason-text {
  order: 4;
}

#scene-winner #winnerWaveguideFrame .winner-details .team-highlight-banner {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 760px;
  padding: 14px 22px !important;
  background:
    linear-gradient(90deg, rgba(8, 120, 249, 0.16), rgba(5, 16, 31, 0.72)) !important;
  border: 1px solid rgba(244, 246, 248, 0.16) !important;
  border-left-width: 5px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32) !important;
}

#scene-winner.theme-gold #winnerWaveguideFrame .team-highlight-banner {
  border-left-color: #ffe27c !important;
}

#scene-winner.theme-silver #winnerWaveguideFrame .team-highlight-banner {
  border-left-color: #eaf3fb !important;
}

#scene-winner.theme-bronze #winnerWaveguideFrame .team-highlight-banner {
  border-left-color: #f3b07c !important;
}

#scene-winner #winnerTeam.team-highlight-name {
  color: var(--stage-cyan) !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
  font-family: var(--font-display);
  font-size: 24px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#scene-winner #winnerWaveguideFrame .team-builders-row {
  color: var(--stage-muted) !important;
  font: 500 15px / 1.35 var(--font-mono) !important;
}

#scene-winner #winnerWaveguideFrame .team-builders-row b {
  color: rgba(247, 251, 255, 0.72) !important;
}

/* The numbered suspense core must stay a true circle until the project-name reel morph begins. */
#scene-winner #mysteryCore.mystery-ripple-core:not(.morph-rect) {
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
  height: 112px !important;
  min-height: 112px !important;
  max-height: 112px !important;
  aspect-ratio: 1 / 1 !important;
  flex: 0 0 112px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  transform: none !important;
}

.main-awards-title {
  display: grid;
  place-items: center;
  align-self: center;
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-inline: 3vw;
  box-sizing: border-box;
  text-align: center !important;
}

.main-awards-title .title-line {
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center !important;
  white-space: nowrap;
}

/* Winner cards use the honorable-mention card as their component reference. */
#scene-winner #winnerWaveguideFrame {
  width: 100%;
  max-width: 1040px;
  min-height: 0;
  overflow: visible;
}

#scene-winner #winnerWaveguideFrame .winner-hero-card {
  width: 100%;
  padding: 38px 48px;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

#scene-winner #winnerWaveguideFrame .winner-artwork-wrap {
  width: 220px;
  height: 220px;
  border-radius: 4px;
}

#scene-winner #winnerWaveguideFrame .winner-details {
  min-width: 0;
  gap: 14px !important;
}

#scene-winner #winnerTitle.winner-project-title {
  font-size: clamp(38px, 4.5vw, 56px) !important;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

#scene-winner #winnerWaveguideFrame .winner-details .team-highlight-banner {
  width: 100%;
  max-width: none;
  padding: 14px 22px !important;
}

#scene-winner #winnerWaveguideFrame #winnerTeam.team-highlight-name {
  font-size: 24px !important;
}

#scene-winner #winnerWaveguideFrame .winner-reason-text {
  font-size: 15px;
  line-height: 1.5;
}

/* Praise cards arrive individually, then settle into their existing gentle drift. */
#scene-winner .floating-praise-bubble,
#scene-winner .floating-praise-bubble.praise-1,
#scene-winner .floating-praise-bubble.praise-2,
#scene-winner .floating-praise-bubble.praise-3,
#scene-winner .floating-praise-bubble.praise-4 {
  animation:
    floatPraiseIn 0.58s cubic-bezier(0.16, 1, 0.3, 1) var(--praise-delay, 0s) forwards,
    floatPraiseDrift 5s ease-in-out calc(var(--praise-delay, 0s) + 0.62s) infinite alternate !important;
}

@media (max-width: 900px) {
  #scene-winner #winnerWaveguideFrame .winner-hero-card {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }

  #scene-winner #winnerWaveguideFrame .winner-artwork-wrap {
    width: 160px;
    height: 160px;
    margin-inline: auto;
  }

  #scene-winner #winnerTitle.winner-project-title {
    font-size: clamp(38px, 11vw, 48px) !important;
    text-align: center;
  }
}
