/* ==========================================================================
   VOHR TRAVEL AGENCY: JAPOW VAN ODYSSEY STYLESHEET
   Aesthetic: Hand-Drawn Illustrated Travel Sketchbook (Studio Ghibli / Adventurer's Journal)
   Warm Parchment, Sketch Ink, Watercolor Greens & Studio Audio Player
   ========================================================================== */

:root {
  --bg-dark: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.88);
  --bg-card-hover: rgba(30, 41, 59, 0.95);
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-highlight: rgba(56, 189, 248, 0.35);

  --parchment-bg: #edd8b2;
  --parchment-dark: #3b2c19;
  --sketch-ink: #2b1d0c;
  --sketch-orange: #ea580c;
  --sketch-red: #dc2626;
  --cyan-bright: #38bdf8;
  --cyan-deep: #0284c7;
  --gold-accent: #f59e0b;
  --onsen-orange: #fb923c;
  --snow-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-sketch: 'Caveat', cursive, sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--snow-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(ellipse at 25% 0%, rgba(56, 189, 248, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
}

/* Canvas Snow Overlay */
#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
}

/* App Wrapper */
.app-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid var(--border-highlight);
  border-radius: 12px;
  padding: 6px 12px;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.logo-kanji {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 900;
  color: var(--cyan-bright);
}

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

.brand-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #ffffff, #fed7aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.9);
  color: var(--snow-white);
  border-color: var(--border-glass);
}
.btn-secondary:hover {
  background: #334155;
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
}
.btn-gold:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.55);
  transform: translateY(-1px);
}

.btn-dark-humor {
  background: linear-gradient(135deg, #311042, #581c87, #3b0764);
  color: #fdf4ff;
  border: 1px solid rgba(192, 132, 252, 0.4);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.35);
}
.btn-dark-humor:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 24px rgba(192, 132, 252, 0.65);
  transform: translateY(-1px);
  border-color: #c084fc;
}

.btn-cyan {
  background: linear-gradient(135deg, #0284c7, #06b6d4);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.35);
}
.btn-cyan:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.55);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-glass);
}
.btn-ghost:hover {
  color: var(--snow-white);
  background: rgba(255, 255, 255, 0.05);
}
.btn-ghost.muted {
  color: var(--sketch-red);
  border-color: rgba(244, 63, 94, 0.3);
}

/* ==========================================================================
   JAPANESE MUSIC PLAYER CONTROLS & SOUNDTRACK BAR
   ========================================================================== */
.btn-music {
  background: linear-gradient(135deg, #be123c, #e11d48);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(225, 29, 72, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-music:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 24px rgba(225, 29, 72, 0.65);
  transform: translateY(-1px);
}
.btn-music.playing {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.45);
}

.music-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 14px;
  margin-left: 4px;
}
.music-bars span {
  width: 3px;
  height: 4px;
  background: #ffffff;
  border-radius: 1.5px;
  transition: height 0.15s ease;
}
.music-bars.animating span:nth-child(1) { animation: musicBarAnim 0.7s infinite alternate ease-in-out; }
.music-bars.animating span:nth-child(2) { animation: musicBarAnim 0.5s infinite alternate ease-in-out 0.15s; }
.music-bars.animating span:nth-child(3) { animation: musicBarAnim 0.8s infinite alternate ease-in-out 0.3s; }
.music-bars.animating span:nth-child(4) { animation: musicBarAnim 0.6s infinite alternate ease-in-out 0.1s; }

@keyframes musicBarAnim {
  0% { height: 3px; }
  100% { height: 14px; }
}

/* Dedicated Japanese Soundtrack Bar */
.japanese-music-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(20, 10, 25, 0.85), rgba(15, 23, 42, 0.95));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(244, 63, 94, 0.35);
  border-left: 4px solid #f43f5e;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), 0 0 15px rgba(244, 63, 94, 0.15);
}

.music-bar-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.music-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.music-genre-badge {
  font-size: 10px;
  font-weight: 800;
  color: #fecdd3;
  background: rgba(225, 29, 72, 0.25);
  border: 1px solid rgba(225, 29, 72, 0.45);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.music-live-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 0.8px;
}

.music-track-info {
  display: flex;
  flex-direction: column;
}

.music-track-info strong {
  font-size: 14px;
  font-weight: 800;
  color: #fff1f2;
}

.music-track-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.music-bar-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-buttons-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-track-select {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--border-glass);
  color: #cbd5e1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-track-select:hover {
  background: rgba(51, 65, 85, 0.9);
  color: #ffffff;
  border-color: rgba(244, 63, 94, 0.4);
}

.btn-track-select.active {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.25), rgba(244, 63, 94, 0.15));
  border-color: #f43f5e;
  color: #ffe4e6;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.3);
}

.music-vol-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
}

.vol-icon {
  font-size: 13px;
  color: var(--text-muted);
}

.music-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 5px;
  border-radius: 3px;
  background: #334155;
  outline: none;
  cursor: pointer;
}
.music-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f43f5e;
  box-shadow: 0 0 6px #f43f5e;
  cursor: pointer;
}
.music-vol-slider::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f43f5e;
  box-shadow: 0 0 6px #f43f5e;
  cursor: pointer;
}

/* ==========================================================================
   HUD TELEMETRY BAR
   ========================================================================== */
.hud-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 2fr 1fr;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.hud-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 8px;
  border-left: 2px solid rgba(56, 189, 248, 0.2);
}

.hud-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hud-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--snow-white);
  white-space: nowrap;
}

.hud-val.highlight-cyan {
  color: var(--cyan-bright);
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.5);
}

.hud-val.freezing {
  color: #7dd3fc;
  animation: pulseIce 2s infinite ease-in-out;
}

@keyframes pulseIce {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; text-shadow: 0 0 12px rgba(125, 211, 252, 0.8); }
}

.hud-powder-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hud-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hud-powder-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-bright);
}

.powder-meter-bar {
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.powder-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #818cf8, #f43f5e);
  transition: width 0.4s ease;
  border-radius: 4px;
}

.hud-beer-item .beer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.btn-micro {
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-accent);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-micro:hover {
  background: rgba(245, 158, 11, 0.35);
  transform: scale(1.04);
}

/* ==========================================================================
   NAVIGATION TABS
   ========================================================================== */
.main-tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--snow-white);
  background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(2, 132, 199, 0.2));
  border: 1px solid var(--gold-accent);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* ==========================================================================
   TAB 1: HAND-DRAWN SKETCHBOOK MAP & ACTIVE DAY
   ========================================================================== */
.expedition-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}

.map-card-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.sketch-card {
  border-color: rgba(245, 158, 11, 0.3);
}

.map-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.title-with-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sketch-pin-icon {
  font-size: 18px;
}

.map-title-row h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fef08a;
}

.map-hint {
  font-size: 12px;
  color: var(--text-muted);
}

.map-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-control {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--border-glass);
  color: var(--snow-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-control:hover {
  background: #334155;
}

.btn-theme-toggle {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(217, 119, 6, 0.35));
  border-color: var(--gold-accent);
  color: #fde68a;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.btn-control.btn-play {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(2, 132, 199, 0.3));
  border-color: var(--cyan-bright);
}
.btn-control.btn-play.active {
  background: rgba(244, 63, 94, 0.3);
  border-color: var(--sketch-red);
}

.btn-tag {
  color: var(--cyan-bright);
}

/* SKETCH MAP CONTAINER */
.sketch-map-stage {
  perspective: 1100px;
  perspective-origin: 50% 50%;
  width: 100%;
  height: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #ebd6ae;
  border: 2px solid #3c2f1f;
  box-shadow: inset 0 0 40px rgba(60, 47, 31, 0.4), 0 10px 30px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.sketch-plane {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: 50% 50%;
}

.sketch-plane.is-3d-sketch {
  transform: rotateX(24deg) scale(0.96);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.svg-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Handwritten SVG Typography */
.sketch-font {
  font-family: var(--font-sketch);
  font-weight: 700;
}

.sketch-font.mountain-tag,
.sketch-font.alps-tag {
  font-size: calc(14px / var(--map-zoom, 1));
}

.ferry-tag {
  font-size: calc(14px / var(--map-zoom, 1));
  fill: #0369a1;
  font-family: var(--font-sketch);
}

.sketch-label {
  font-family: var(--font-sketch);
  font-size: calc(13px / var(--map-zoom, 1));
  font-weight: 700;
  fill: #1c1917;
  paint-order: stroke;
  stroke: #fffdf5;
  stroke-width: calc(2.6px / var(--map-zoom, 1));
  stroke-linejoin: round;
  pointer-events: none;
  user-select: none;
  transition: font-size 0.2s, fill 0.2s;
}
.sketch-label.blue { fill: #0369a1; }
.sketch-label.gold { fill: #b45309; }
.sketch-label.cyan { fill: #0891b2; }
.sketch-label.green { fill: #15803d; }

.map-checkpoint.active .sketch-label {
  font-size: calc(15.5px / var(--map-zoom, 1));
  font-weight: 900;
  fill: #dc2626;
  stroke: #ffffff;
  stroke-width: calc(3.4px / var(--map-zoom, 1));
}

/* Checkpoint Dots in Sketchbook */
.sketch-dot {
  fill: #ea580c;
  stroke: #2b1d0c;
  stroke-width: calc(1.8px / var(--map-zoom, 1));
  transition: all 0.25s;
}
.sketch-dot.red { fill: #dc2626; }
.sketch-dot.blue { fill: #0284c7; }
.sketch-dot.gold { fill: #f59e0b; }
.sketch-dot.cyan { fill: #06b6d4; }
.sketch-dot.green { fill: #16a34a; }

.map-checkpoint {
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.map-checkpoint:hover {
  filter: drop-shadow(0 0 6px rgba(234, 88, 12, 0.8));
}

.map-checkpoint .cp-dot {
  r: calc(6.5px / var(--map-zoom, 1));
}

.map-checkpoint.active .sketch-dot {
  r: calc(9.5px / var(--map-zoom, 1));
  fill: #ffffff;
  stroke: #dc2626;
  stroke-width: calc(2.8px / var(--map-zoom, 1));
}

.cp-pulse {
  r: calc(13px / var(--map-zoom, 1));
  fill: rgba(220, 38, 38, 0.4);
  animation: pulseRing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  display: none;
}
.map-checkpoint.active .cp-pulse {
  display: block;
}

#route-path-shadow {
  stroke-width: calc(6.5px / var(--map-zoom, 1));
}

#route-path {
  stroke-width: calc(3.2px / var(--map-zoom, 1));
  stroke-dasharray: calc(6px / var(--map-zoom, 1)) calc(4px / var(--map-zoom, 1));
}

#route-progress-trail {
  stroke-width: calc(4px / var(--map-zoom, 1));
}

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Campervan Markers (2-Van Convoy) - Scaled cleanly via JavaScript */
.campervan-group {
  cursor: grab;
  transition: filter 0.2s ease;
}
.campervan-group.van-one:hover {
  filter: drop-shadow(0 0 14px rgba(234, 88, 12, 0.9));
}
.campervan-group.van-two:hover {
  filter: drop-shadow(0 0 14px rgba(2, 132, 199, 0.9));
}

/* Scrubber Timeline Bar */
.timeline-scrubber-card {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scrubber-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scrubber-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--snow-white);
}

.scrubber-hint {
  font-size: 11px;
  color: var(--text-dim);
}

.scrubber-track-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scrubber-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #ea580c 35%, #0284c7 65%, #38bdf8 100%);
  outline: none;
  cursor: pointer;
}

.scrubber-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fffdf5;
  border: 3px solid #ea580c;
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.7);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.scrubber-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.scrubber-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}

.scrubber-ticks span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.15s;
}
.scrubber-ticks span:hover {
  color: var(--cyan-bright);
  background: rgba(56, 189, 248, 0.15);
}

/* ==========================================================================
   RIGHT: ACTIVE DAY SPOTLIGHT PANEL
   ========================================================================== */
.day-spotlight-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 16px;
}

.sketch-aside {
  border-color: rgba(245, 158, 11, 0.25);
}

.spotlight-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.day-badge-primary {
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.day-badge-kanji {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  color: #fed7aa;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}
.risk-safe {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.risk-high {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.spotlight-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--snow-white);
  line-height: 1.3;
  margin-top: 4px;
}

.spotlight-region {
  font-size: 13px;
  color: var(--gold-accent);
  font-weight: 600;
}

/* Studio Audio Story Narration Box */
.story-narration-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.story-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Convoy CB Radio Card in Spotlight */
.convoy-radio-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-left: 4px solid var(--gold-accent);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.convoy-radio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.convoy-radio-header .radio-icon {
  font-size: 22px;
}

.convoy-radio-title {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.convoy-radio-title strong {
  font-size: 13px;
  color: #fef08a;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.convoy-radio-title span {
  font-size: 11px;
  color: var(--text-muted);
}

.btn-radio-listen {
  padding: 6px 14px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000;
  font-weight: 800;
  font-size: 12px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-radio-listen:hover {
  background: #fde047;
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.7);
}

.convoy-radio-text {
  font-size: 12px;
  color: #f1f5f9;
  font-family: 'Share Tech Mono', monospace, sans-serif;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px dashed rgba(245, 158, 11, 0.3);
  line-height: 1.5;
}

.spotlight-summary {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Splitboard Box */
.stat-box-splitboard {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.8));
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat-box-header h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--snow-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.split-action-desc {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.5;
}

.elevation-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-col {
  display: flex;
  flex-direction: column;
}

.m-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
}

.m-val {
  font-size: 16px;
  font-weight: 800;
}
.m-val.green { color: #4ade80; }
.m-val.cyan { color: var(--cyan-bright); }
.m-val-sub { font-size: 12px; font-weight: 600; color: #cbd5e1; }

/* POI section */
.poi-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.poi-section h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.poi-cards-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.poi-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.poi-item:hover {
  background: rgba(30, 41, 59, 0.85);
  border-color: var(--border-highlight);
}

.poi-icon {
  font-size: 18px;
  line-height: 1;
}

.poi-content strong {
  display: block;
  font-size: 13px;
  color: var(--snow-white);
}

.poi-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

/* Van Logistics Grid */
.van-logistics-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logistics-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid var(--border-glass);
}

.card-icon {
  font-size: 20px;
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-sub {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.card-highlight {
  font-size: 12px;
  font-weight: 700;
  color: var(--snow-white);
}

.onsen-card { border-left: 3px solid var(--onsen-orange); }
.camp-card { border-left: 3px solid var(--cyan-bright); }
.food-card { border-left: 3px solid var(--sketch-red); }

/* ==========================================================================
   TAB 2: FULL ITINERARY VIEW
   ========================================================================== */
.tab-page-header {
  margin-bottom: 16px;
}
.tab-page-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--snow-white);
}
.tab-page-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

.timeline-day-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: all 0.2s;
}

.timeline-day-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.timeline-day-card.active {
  border-color: var(--gold-accent);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.day-num-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  color: #000000;
  background: var(--gold-accent);
  padding: 2px 8px;
  border-radius: 4px;
}

.day-card-top h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--snow-white);
  line-height: 1.3;
}

.day-card-kanji {
  font-family: var(--font-jp);
  font-size: 12px;
  color: #fef08a;
}

.day-card-loc {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.day-card-brief {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

.day-story-snippet {
  background: rgba(15, 23, 42, 0.6);
  border-left: 2px solid var(--gold-accent);
  padding: 6px 10px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 12px;
  color: #cbd5e1;
  font-style: italic;
}

.day-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.day-card-tags .tag {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(30, 41, 59, 0.7);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-btn-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.btn-jump-day {
  flex: 1;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan-bright);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-jump-day:hover {
  background: rgba(56, 189, 248, 0.25);
  color: #ffffff;
}

.btn-narrate-day-card {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  background: var(--gold-accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-narrate-day-card:hover {
  background: #fde047;
  transform: scale(1.04);
}

/* ==========================================================================
   TAB 3: 2-VAN FLEET SHOWCASE & CREW
   ========================================================================== */
.fleet-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.fleet-van-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.van-alpha-card {
  border: 2px solid rgba(234, 88, 12, 0.5);
}
.van-alpha-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea580c, #f59e0b);
}

.van-beta-card {
  border: 2px solid rgba(2, 132, 199, 0.5);
}
.van-beta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.van-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.van-tag-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.van-tag-badge.alpha {
  background: rgba(234, 88, 12, 0.2);
  color: #fdba74;
  border: 1px solid rgba(234, 88, 12, 0.4);
}

.van-tag-badge.beta {
  background: rgba(2, 132, 199, 0.2);
  color: #7dd3fc;
  border: 1px solid rgba(2, 132, 199, 0.4);
}

.van-channel {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
}

.fleet-van-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--snow-white);
}

.van-subdesc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

.van-crew-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.pill-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
}

.cpill {
  font-size: 11px;
  font-weight: 700;
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
}

.van-equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 4px;
}

.van-equipment-list span {
  font-size: 12px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.6);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
}

.crew-section-title h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--snow-white);
}

.crew-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.crew-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, border-color 0.2s;
}

.polaroid-card {
  position: relative;
  border-color: rgba(245, 158, 11, 0.2);
}

.crew-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-accent);
}

.crew-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.crew-avatar-frame {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.crew-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold-accent);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.45);
  background: #1e293b;
}

.crew-fallback-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 2px solid var(--gold-accent);
}

.crew-card.van-alpha {
  border-left: 3.5px solid #ea580c;
}
.crew-card.van-beta {
  border-left: 3.5px solid #0284c7;
}

.crew-meta {
  display: flex;
  flex-direction: column;
}

.crew-van-pill {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
  width: fit-content;
  letter-spacing: 0.3px;
}
.crew-van-pill.pill-alpha {
  background: rgba(234, 88, 12, 0.2);
  color: #fdba74;
  border: 1px solid rgba(234, 88, 12, 0.45);
}
.crew-van-pill.pill-beta {
  background: rgba(2, 132, 199, 0.2);
  color: #7dd3fc;
  border: 1px solid rgba(2, 132, 199, 0.45);
}

.crew-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--snow-white);
}

.crew-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-accent);
}

.crew-role, .crew-spec, .crew-gear {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.crew-gear {
  color: #a5f3fc;
  background: rgba(56, 189, 248, 0.08);
  padding: 3px 6px;
  border-radius: 4px;
}

.crew-role strong, .crew-spec strong, .crew-gear strong {
  color: #cbd5e1;
}

.crew-nick {
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.9em;
}

.crew-section-subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 4px;
}

.crew-quote {
  font-size: 12px;
  font-style: italic;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.08);
  padding: 8px 10px;
  border-left: 2px solid var(--gold-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: all 0.3s ease;
}

.crew-quote.quote-flash {
  animation: quoteFlashAnim 0.8s ease;
}

@keyframes quoteFlashAnim {
  0% {
    background: rgba(245, 158, 11, 0.35);
    border-left-color: #ffffff;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
    transform: scale(1.02);
  }
  100% {
    background: rgba(245, 158, 11, 0.08);
    border-left-color: var(--gold-accent);
    box-shadow: none;
    transform: scale(1);
  }
}

.btn-crew-joke {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold-accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-crew-joke:hover {
  background: var(--gold-accent);
  color: #000000;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.quote-counter-tag {
  font-size: 10px;
  opacity: 0.85;
  background: rgba(0, 0, 0, 0.25);
  padding: 1px 5px;
  border-radius: 4px;
}

.crew-hype-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.crew-hype-bar .hype-fill {
  height: 6px;
  background: linear-gradient(90deg, #ea580c, #f59e0b);
  border-radius: 3px;
}

.crew-hype-bar .hype-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
}

/* ==========================================================================
   TAB 4: SAFETY & GEAR
   ========================================================================== */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.safety-checklist-panel, .safety-rules-panel {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.safety-checklist-panel h3, .safety-rules-panel h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--snow-white);
}

.checklist-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.gear-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gear-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  user-select: none;
  transition: all 0.15s;
}
.gear-item:hover {
  background: rgba(30, 41, 59, 0.7);
}

.gear-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-accent);
  cursor: pointer;
}

.gear-text {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tag-essential {
  font-size: 10px;
  font-weight: 800;
  color: var(--sketch-red);
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

.rule-box {
  background: rgba(30, 41, 59, 0.4);
  border-left: 3px solid var(--gold-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rule-box h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--snow-white);
}

.rule-box p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

/* ==========================================================================
   STUDIO AUDIO SUBTITLES & PLAYER OVERLAY
   ========================================================================== */
.audio-subtitles-box {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(20px);
  border: 2px solid var(--gold-accent);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 680px;
  width: calc(100% - 48px);
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(245, 158, 11, 0.35);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

.audio-subtitles-box.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.subtitles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.subtitles-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.subtitles-title-wrap strong {
  font-size: 14px;
  color: #fef08a;
  font-weight: 800;
}

.btn-subtitles-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.15s;
}
.btn-subtitles-close:hover {
  color: #ffffff;
  background: rgba(220, 38, 38, 0.6);
  border-color: #dc2626;
}

.subtitles-text {
  font-size: 14px;
  color: #f8fafc;
  line-height: 1.6;
}

/* Audio wave animation */
.subtitles-wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}
.subtitles-wave span {
  width: 3px;
  height: 4px;
  background: var(--gold-accent);
  border-radius: 2px;
  transition: height 0.1s;
}
.subtitles-wave.animating span:nth-child(1) { animation: waveBar 0.8s infinite ease-in-out; }
.subtitles-wave.animating span:nth-child(2) { animation: waveBar 0.8s infinite ease-in-out 0.2s; }
.subtitles-wave.animating span:nth-child(3) { animation: waveBar 0.8s infinite ease-in-out 0.4s; }
.subtitles-wave.animating span:nth-child(4) { animation: waveBar 0.8s infinite ease-in-out 0.1s; }

@keyframes waveBar {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

/* ==========================================================================
   CB RADIO DISPATCH BOX (TACTICAL MOTOROLA UHF CH. 7 OVERLAY)
   ========================================================================== */
.radio-dispatch-box {
  position: fixed;
  top: 85px;
  right: 28px;
  width: 440px;
  max-width: calc(100vw - 40px);
  background: linear-gradient(145deg, #091a14, #0f2b20);
  border: 2px solid #10b981;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(16, 185, 129, 0.35);
  z-index: 10005;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-24px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-main);
}

.radio-dispatch-box.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.radio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
  padding-bottom: 8px;
}

.radio-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}

.radio-led.on {
  background: #10b981;
  box-shadow: 0 0 10px #10b981, 0 0 20px #10b981;
  animation: radioPulse 1.2s infinite alternate ease-in-out;
}

@keyframes radioPulse {
  0% { opacity: 0.65; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.15); filter: brightness(1.3); }
}

.radio-freq {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: #10b981;
  letter-spacing: 1px;
  font-weight: 700;
}

.radio-channel-tag {
  font-size: 10px;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.btn-radio-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-radio-close:hover {
  color: #ffffff;
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.3);
}

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

.radio-speaker-badge {
  font-size: 12px;
  font-weight: 800;
  color: #fde047;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.radio-voice-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.2);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.4);
  letter-spacing: 0.3px;
}

.radio-message {
  font-size: 14px;
  font-family: 'Share Tech Mono', monospace, sans-serif;
  color: #f0fdf4;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 3px solid #10b981;
}

.radio-footer {
  display: flex;
  justify-content: flex-end;
}

.radio-roger {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: #6ee7b7;
  letter-spacing: 0.8px;
  opacity: 0.85;
}

/* Convoy 2-Way Dialogue Styling */
.convoy-dialogue-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.convoy-turn {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  transition: all 0.3s ease;
  opacity: 0.55;
  filter: grayscale(0.2);
}

.convoy-turn.active-turn {
  opacity: 1;
  filter: none;
  background: rgba(16, 185, 129, 0.08);
  border-color: #10b981;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.25);
  transform: scale(1.01);
}

.convoy-turn:first-child.active-turn {
  border-left: 4px solid #f59e0b;
}

.convoy-turn:last-child.active-turn {
  border-left: 4px solid #06b6d4;
}

.convoy-speaker-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
}

.convoy-speaker-line .speaker-badge {
  font-weight: 800;
  color: #fde047;
  letter-spacing: 0.5px;
}

.convoy-speaker-line .turn-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.convoy-turn.active-turn .convoy-speaker-line .turn-status {
  color: #10b981;
  font-weight: 700;
  animation: radioPulse 1s infinite alternate;
}

.convoy-bubble {
  font-size: 13px;
  font-family: 'Share Tech Mono', monospace, sans-serif;
  color: #f0fdf4;
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   FOOTER & NOTIFICATIONS
   ========================================================================== */
.app-footer {
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-glass);
}
.footer-content p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-content .footer-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Toast Notifications */
.app-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-accent);
  color: var(--snow-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.3);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  max-width: 420px;
}
.app-toast.visible {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   MAP ZOOM TOOLBAR & STYLING
   ========================================================================== */
.map-zoom-toolbar {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 15px rgba(234, 88, 12, 0.2);
  pointer-events: auto;
}

.btn-zoom {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-zoom:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

.btn-zoom-pill {
  width: auto;
  height: 32px;
  border-radius: 16px;
  padding: 0 12px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

.btn-zoom-pill.active {
  background: linear-gradient(135deg, #ea580c, #f97316);
  border-color: #fdba74;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(234, 88, 12, 0.5);
}

.zoom-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 2px;
}

.sketch-map-stage {
  cursor: grab;
  touch-action: none;
}

.sketch-map-stage.is-panning {
  cursor: grabbing;
}

/* ==========================================================================
   DARK HUMOR BUTTONS & CONVOY CHATTER
   ========================================================================== */
.btn-dark-humor {
  background: linear-gradient(135deg, #881337, #e11d48);
  color: #ffffff;
  font-weight: 800;
  border: 1px solid #fda4af;
  box-shadow: 0 0 14px rgba(225, 29, 72, 0.45);
  animation: darkPulse 2.5s infinite;
}

@keyframes darkPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(225, 29, 72, 0.35); }
  50% { box-shadow: 0 0 20px rgba(225, 29, 72, 0.7); }
}

.convoy-btn-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-radio-dark-humor {
  background: linear-gradient(135deg, #4c0519, #9f1239);
  color: #fecdd3;
  border: 1px solid #f43f5e;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.btn-radio-dark-humor:hover {
  background: #e11d48;
  color: #ffffff;
  transform: translateY(-1px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 1180px) {
  .expedition-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .day-spotlight-panel {
    position: static;
    max-height: none;
  }
  .sketch-map-stage {
    height: 520px;
  }
  .hud-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .signup-members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .app-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
  .header-actions .btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }
  #btn-open-signup {
    flex: 1 1 100%;
  }
  .hud-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .sketch-map-stage {
    height: 440px;
  }
  .map-zoom-toolbar {
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    gap: 4px;
    transform: scale(0.92);
    transform-origin: top right;
  }
  .signup-members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .landing-pilot-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 16px;
  }
  .landing-pilot-icon {
    font-size: 28px;
    align-self: flex-start;
  }
  .landing-pilot-text {
    width: 100%;
    min-width: 0;
  }
  .btn-landing-listen {
    width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .app-container {
    padding: 8px;
  }
  .brand-block h1 {
    font-size: 18px;
  }
  .brand-sub {
    font-size: 11px;
  }
  .header-actions .btn {
    flex: 1 1 100%;
    padding: 10px 14px;
    font-size: 13px;
  }
  .hud-bar {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
  }
  .hud-item {
    padding: 8px 6px;
  }
  .hud-value {
    font-size: 13.5px;
  }
  .sketch-map-stage {
    height: 360px;
  }
  .map-zoom-toolbar {
    top: 8px;
    right: 8px;
    padding: 3px 6px;
    gap: 3px;
    transform: scale(0.85);
    transform-origin: top right;
  }
  .timeline-slider-card {
    padding: 10px;
  }
  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .map-controls {
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }
  .btn-control {
    padding: 5px 8px;
    font-size: 11px;
  }
  .day-spotlight-panel {
    padding: 14px 12px;
  }
  .spotlight-title {
    font-size: 17px;
  }
  .safety-grid, .fleet-showcase-grid {
    grid-template-columns: 1fr;
  }
  .signup-modal-card {
    padding: 14px 10px;
    max-height: 94vh;
    border-radius: 14px;
    gap: 12px;
  }
  .signup-modal-header {
    gap: 8px;
    padding-bottom: 12px;
  }
  .signup-modal-header h2 {
    font-size: 17px;
    line-height: 1.25;
  }
  .signup-subtitle {
    font-size: 11.5px;
    line-height: 1.35;
  }
  .btn-modal-close {
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .landing-pilot-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
  }
  .landing-pilot-icon {
    font-size: 26px;
    align-self: flex-start;
  }
  .landing-pilot-text strong {
    font-size: 13.5px;
    line-height: 1.35;
  }
  .landing-pilot-text p {
    font-size: 11.5px;
    line-height: 1.45;
  }
  .btn-landing-listen {
    width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding: 11px 12px;
    font-size: 12.5px;
    line-height: 1.3;
  }
  .signup-members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .signup-member-btn {
    padding: 8px 4px;
  }
  .signup-avatar-img, .signup-fallback-avatar {
    width: 42px;
    height: 42px;
  }
  .signup-name {
    font-size: 11.5px;
  }
  .signup-nick {
    font-size: 10px;
  }
  .decision-button-row {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .btn-rsvp-yes, .btn-rsvp-no, .btn-rsvp-explore {
    width: 100%;
    min-width: 0;
    text-align: center;
    padding: 12px;
    font-size: 13px;
  }
  .radio-dispatch-box {
    top: 10px;
    left: 8px;
    right: 8px;
    width: auto;
    padding: 12px 14px;
  }
  .convoy-bubble {
    font-size: 12px;
  }
  .japanese-music-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .music-bar-controls {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   Expedition Interactive Sign-up Modal & Landing Clapping Banner
   ========================================================================== */

.btn-signup-pulse {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1e1e24;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
  animation: pulseGlow 2.4s infinite;
}

.btn-plane-pilot {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #0f172a;
  font-weight: 700;
  border: 1px solid #7dd3fc;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.btn-plane-pilot:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.35);
}

.signup-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.signup-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.signup-modal-card {
  background: linear-gradient(145deg, #131d33, #0b1120);
  border: 2px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.75), 0 0 32px rgba(245, 158, 11, 0.15);
  border-radius: 18px;
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.signup-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.signup-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-accent);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.signup-modal-header h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--snow-white);
  margin: 0 0 4px 0;
}

.signup-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.btn-modal-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #fff;
}

/* Landing & Pilot Clapping Banner */
.landing-pilot-banner {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.45), rgba(15, 23, 42, 0.6));
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.landing-pilot-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.landing-pilot-text {
  flex: 1;
  min-width: 0;
}

.landing-pilot-text strong {
  display: block;
  font-size: 14px;
  color: #38bdf8;
  margin-bottom: 4px;
}

.landing-pilot-text p {
  margin: 0;
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.45;
}

.btn-landing-listen {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  border: 1px solid #38bdf8;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
  transition: all 0.2s ease;
}
.btn-landing-listen:hover {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.45);
}

/* Roster Progress Status */
.signup-roster-status {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roster-status-text {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #94a3b8;
}

.roster-status-text strong {
  color: var(--gold-accent);
}

.roster-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.roster-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #10b981);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* Step 1 Member Grid */
.signup-step-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 6px;
}

.signup-step-title h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--snow-white);
  margin: 0;
}

.signup-hint {
  font-size: 12px;
  color: #64748b;
}

.signup-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.signup-member-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.signup-member-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.signup-member-btn.selected {
  background: rgba(245, 158, 11, 0.12);
  border-color: #f59e0b;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
  transform: scale(1.02);
}

.signup-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #cbd5e1;
  margin-bottom: 8px;
}

.signup-fallback-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #cbd5e1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.signup-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--snow-white);
  margin-bottom: 2px;
}

.signup-nick {
  color: #38bdf8;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.signup-van-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.signup-van-tag.v1 {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.signup-van-tag.v2 {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(2, 132, 199, 0.35);
}

.signup-rsvp-status-badge {
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  margin-top: 4px;
}

.signup-rsvp-status-badge.confirmed {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.signup-rsvp-status-badge.pending {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

/* Step 2 Decision Panel */
.signup-decision-panel {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.7));
  border: 2px solid var(--gold-accent);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 0.3s ease;
}

.decision-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.decision-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid var(--gold-accent);
  object-fit: cover;
}

.decision-meta h4 {
  font-size: 18px;
  font-weight: 900;
  color: var(--snow-white);
  margin: 0 0 4px 0;
}

.decision-role-line {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0 0 4px 0;
}

.decision-gear-tag {
  display: inline-block;
  font-size: 11.5px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

.decision-personal-quote {
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--gold-accent);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 13.5px;
  font-style: italic;
  color: #fef08a;
  line-height: 1.5;
}

.decision-button-row {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.btn-rsvp-yes {
  flex: 1;
  min-width: 220px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  transition: all 0.2s ease;
}
.btn-rsvp-yes:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.6);
}

.btn-rsvp-no {
  background: rgba(239, 68, 68, 0.12);
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-rsvp-no:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #fff;
}

.rsvp-confirmed-stamp {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.25));
  border: 2px dashed #10b981;
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rsvp-stamp-text {
  font-size: 14px;
  font-weight: 800;
  color: #34d399;
}

.btn-rsvp-explore {
  background: #f59e0b;
  color: #1e1e24;
  font-weight: 800;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-rsvp-explore:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

/* Shake Animation for No button */
.shake-anim {
  animation: modalShake 0.55s ease;
}

@keyframes modalShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-10px); }
  40%, 80% { transform: translateX(10px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.decision-unselected-box {
  background: rgba(15, 23, 42, 0.6);
  border: 2px dashed rgba(245, 158, 11, 0.4);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

