/* ============================================================
   GameDay Navigator — Full Journey Experience
   University of Alabama · Bryant-Denny Stadium
   ============================================================ */

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

:root {
  --crimson: #9E1B32;
  --crimson-light: #C8344D;
  --crimson-dark: #7A1526;
  --crimson-glow: rgba(158, 27, 50, 0.4);
  --crimson-subtle: rgba(158, 27, 50, 0.12);

  --bg: #09090B;
  --bg-card: #141416;
  --bg-card-hover: #1A1A1E;
  --bg-elevated: #1E1E22;
  --bg-glass: rgba(255, 255, 255, 0.04);

  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);

  --text: #F4F4F5;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;

  --green: #22C55E;
  --green-bg: rgba(34, 197, 94, 0.1);
  --yellow: #EAB308;
  --yellow-bg: rgba(234, 179, 8, 0.1);
  --red: #EF4444;
  --red-bg: rgba(239, 68, 68, 0.1);

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow: 0 2px 12px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-crimson: 0 4px 30px var(--crimson-glow);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100dvh;
  overflow-x: hidden;
  padding-top: 72px;
}

/* ============ PROGRESS BAR ============ */
.progress-wrap {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 100;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px 10px;
}

.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.progress-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  border: 2px solid var(--border-light);
  color: var(--text-muted);
  background: var(--bg);
  transition: all 0.5s var(--ease);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.progress-step.active {
  border-color: var(--crimson);
  background: var(--crimson);
  color: white;
  box-shadow: 0 0 16px var(--crimson-glow);
}

.progress-step.done {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.progress-step.done span { font-size: 0; }
.progress-step.done::after {
  content: "\2713";
  font-size: 0.75rem;
  font-weight: 900;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--border-light);
  position: relative;
  overflow: hidden;
}

.progress-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--green);
  transition: width 0.6s var(--ease);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 2px;
}

.progress-labels span {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 28px;
  text-align: center;
}

/* ============ SCREENS ============ */
.screen {
  display: none;
}

.screen.active {
  display: block;
  animation: screenIn 0.5s var(--ease) both;
}

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

@keyframes screenOut {
  to { opacity: 0; transform: translateY(-12px); }
}

.screen-inner {
  padding: 0 20px 40px;
}

/* ============ SCREEN 1 — WELCOME ============ */
.welcome-hero {
  position: relative;
  margin: 0 -20px;
  padding: 32px 24px 28px;
  overflow: hidden;
}

.welcome-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(158,27,50,0.2) 0%, transparent 50%, rgba(158,27,50,0.08) 100%);
}

.welcome-hero-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--crimson-glow) 0%, transparent 70%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.3; transform: scale(1); }
  to   { opacity: 0.6; transform: scale(1.2); }
}

.welcome-hero-content {
  position: relative;
  z-index: 2;
}

.matchup-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--crimson-light);
  background: var(--crimson-subtle);
  border: 1px solid rgba(158,27,50,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.team-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.team-logo.bama {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px var(--crimson-glow);
}

.team-logo.auburn {
  background: linear-gradient(135deg, #0C2340 0%, #1A3A5C 100%);
  color: #F26522;
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.5);
}

.team-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.team-record {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.matchup-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.matchup-vs span {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.game-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.game-detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
}

/* Input Section */
.input-section {
  margin-top: 28px;
}

.section-heading {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 18px;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group:first-child { flex: 1.5; }

.input-group label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.input-field {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  transition: all 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

select.input-field {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.input-field:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px var(--crimson-subtle);
}

.seat-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.seat-preview svg { color: var(--crimson-light); flex-shrink: 0; }
.seat-preview strong { color: var(--text); }

/* CTA */
.cta-section {
  margin-top: 28px;
  padding-bottom: 8px;
}

.btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-crimson);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--crimson-glow);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary:active {
  transform: scale(0.98);
}

.cta-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============ SCREEN 2 — TRIP PLANNING ============ */
.screen-title-block {
  padding: 8px 0 24px;
}

.step-chip {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson-light);
  background: var(--crimson-subtle);
  border: 1px solid rgba(158,27,50,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.screen-title {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.screen-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Cards */
.card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  margin-bottom: 10px;
  transition: all 0.25s var(--ease);
  animation: cardUp 0.5s var(--ease) both;
}

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

.card:nth-child(2) { animation-delay: 0.05s; }
.card:nth-child(3) { animation-delay: 0.1s; }
.card:nth-child(4) { animation-delay: 0.15s; }

.highlight-card {
  border-color: rgba(158,27,50,0.2);
  background: linear-gradient(135deg, rgba(158,27,50,0.08) 0%, var(--bg-card) 60%);
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.card-icon-wrap.crimson-glow {
  background: var(--crimson-subtle);
  color: var(--crimson-light);
}

.card-icon-wrap.yellow-glow {
  background: var(--yellow-bg);
  color: var(--yellow);
}

.card-body {
  flex: 1;
  min-width: 0;
}

.card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.card-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.card-detail {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
  align-self: center;
}

.card-badge.open {
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(34,197,94,0.2);
}

.traffic-moderate { color: var(--yellow); }

/* Traffic Visual */
.traffic-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.traffic-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.traffic-road {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 82px;
}

.traffic-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.traffic-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.2s var(--ease);
}

.traffic-bar-fill.green { background: var(--green); }
.traffic-bar-fill.yellow { background: var(--yellow); }
.traffic-bar-fill.red { background: var(--red); }

.traffic-speed {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 48px;
  text-align: right;
}

/* Route Summary */
.route-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid;
}

.route-dot.origin {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
}

.route-dot.mid {
  border-color: var(--text-muted);
  background: transparent;
}

.route-dot.destination {
  border-color: var(--crimson-light);
  background: var(--crimson-light);
  box-shadow: 0 0 8px var(--crimson-glow);
}

.route-point-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.route-point-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.route-point-time {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.route-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0 6px 5px;
}

.route-connector-line {
  width: 2px;
  height: 24px;
  background: repeating-linear-gradient(to bottom, var(--border-light) 0, var(--border-light) 4px, transparent 4px, transparent 8px);
}

.route-connector-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============ SCREEN 3 — PARKING & SHUTTLE ============ */
.directions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}

.direction-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  animation: cardUp 0.4s var(--ease) both;
}

.direction-step:last-child { border-bottom: none; }
.direction-step:nth-child(1) { animation-delay: 0.05s; }
.direction-step:nth-child(2) { animation-delay: 0.1s; }
.direction-step:nth-child(3) { animation-delay: 0.15s; }
.direction-step:nth-child(4) { animation-delay: 0.2s; }
.direction-step:nth-child(5) { animation-delay: 0.25s; }

.direction-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg-glass);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.direction-step.completed .direction-icon {
  background: var(--green-bg);
  border-color: rgba(34,197,94,0.2);
  color: var(--green);
}

.direction-step.active-step .direction-icon {
  background: var(--crimson-subtle);
  border-color: rgba(158,27,50,0.3);
  color: var(--crimson-light);
  box-shadow: 0 0 12px var(--crimson-glow);
}

.direction-icon.dest {
  color: var(--crimson-light);
}

.direction-body {
  flex: 1;
}

.direction-instruction {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
}

.direction-step.completed .direction-instruction {
  color: var(--text-muted);
}

.direction-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ETA Banner */
.eta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(158,27,50,0.15) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(158,27,50,0.2);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.eta-time {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--crimson-light);
}

.eta-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.eta-right {
  text-align: right;
}

.eta-distance, .eta-arrival {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.eta-arrival { font-weight: 600; color: var(--text-secondary); margin-top: 2px; }

/* Section Dividers */
.section-divider {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-top: 4px;
}

/* Shuttle Live Card */
.shuttle-live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 10px;
}

.shuttle-live-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 18px 14px;
}

.shuttle-live-header h4 {
  font-size: 1rem;
  font-weight: 700;
}

.shuttle-live-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.running-pill {
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(34,197,94,0.2);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Shuttle Track Visual */
.shuttle-track {
  padding: 0 18px 16px;
}

.shuttle-track-line {
  height: 4px;
  background: var(--bg-elevated);
  border-radius: 100px;
  position: relative;
  margin-bottom: 12px;
}

.shuttle-marker {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  animation: shuttleMove 8s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  z-index: 2;
}

@keyframes shuttleMove {
  0%   { left: 5%; }
  25%  { left: 28%; }
  50%  { left: 28%; }
  55%  { left: 28%; }
  100% { left: 95%; }
}

.shuttle-track-stops {
  display: flex;
  justify-content: space-between;
}

.shuttle-track-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}

.shuttle-track-stop em { color: var(--crimson-light); font-style: normal; font-weight: 700; }

.track-stop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--text-muted);
}

.track-stop-dot.active {
  border-color: var(--crimson-light);
  background: var(--crimson-light);
  box-shadow: 0 0 8px var(--crimson-glow);
}

.track-stop-dot.destination {
  border-color: var(--green);
  background: var(--green);
}

.shuttle-live-footer {
  display: flex;
  gap: 20px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg-glass);
}

.shuttle-next, .shuttle-capacity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shuttle-next-label, .shuttle-cap-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.shuttle-next-time {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.shuttle-cap-dots {
  display: flex;
  gap: 3px;
}

.cap-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
}

.cap-dot.filled {
  background: var(--crimson);
  border-color: var(--crimson);
}

.shuttle-cap-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============ SCREEN 4 — STADIUM ENTRY ============ */
.walk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  margin-bottom: 10px;
}

.walk-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.walk-time {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--crimson-light);
}

.walk-distance {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: auto;
}

.walk-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.walk-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.walk-num {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Stadium Map */
.stadium-map {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  margin-bottom: 10px;
  position: relative;
}

.stadium-map-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

.stadium-oval {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.stadium-field {
  position: absolute;
  top: 20%;
  left: 15%;
  right: 15%;
  bottom: 20%;
  background: linear-gradient(180deg, #1a3a1a 0%, #143814 50%, #1a3a1a 100%);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  overflow: hidden;
}

.field-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.field-text {
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
}

.gate-marker {
  position: absolute;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  padding: 3px 7px;
  border-radius: 6px;
  line-height: 1;
  z-index: 2;
}

.gate-marker.active-gate {
  color: white;
  background: var(--crimson);
  border-color: var(--crimson-light);
  box-shadow: 0 0 16px var(--crimson-glow);
  padding: 5px 8px;
  font-size: 0.6rem;
}

.gate-you {
  display: block;
  font-size: 0.45rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 1px;
  opacity: 0.8;
}

.section-highlight {
  position: absolute;
  top: 35%;
  right: 12%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--crimson-glow);
  border: 2px solid var(--crimson-light);
  border-radius: 4px;
  animation: sectionPulse 2s ease-in-out infinite;
}

.section-highlight span {
  font-size: 0.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
}

@keyframes sectionPulse {
  0%, 100% { box-shadow: 0 0 8px var(--crimson-glow); }
  50% { box-shadow: 0 0 20px var(--crimson-glow); }
}

/* Entry Tips */
.entry-tips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.tip-item svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

/* ============ SCREEN 5 — YOU'RE IN ============ */
.screen-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 20px;
}

/* Celebration */
.celebration {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 28px;
}

.confetti-field {
  position: absolute;
  inset: -40px;
  pointer-events: none;
}

.confetti {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  opacity: 0;
  animation: confettiFall 1.5s var(--ease) forwards;
}

@keyframes confettiFall {
  0%   { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translateY(80px) rotate(360deg) scale(0.5); }
}

.check-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px var(--crimson-glow);
  animation: checkPop 0.6s var(--spring) both;
  animation-delay: 0.2s;
}

@keyframes checkPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.check-circle svg {
  color: white;
  animation: checkDraw 0.5s var(--ease) both;
  animation-delay: 0.6s;
}

@keyframes checkDraw {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

.final-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  animation: cardUp 0.5s var(--ease) both;
  animation-delay: 0.3s;
}

.final-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 6px;
  margin-bottom: 28px;
  animation: cardUp 0.5s var(--ease) both;
  animation-delay: 0.4s;
}

/* Final Seat Card */
.final-seat-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(158,27,50,0.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 28px;
  animation: cardUp 0.5s var(--ease) both;
  animation-delay: 0.5s;
}

.final-seat-header {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--crimson-light);
  background: var(--crimson-subtle);
  padding: 10px;
  text-align: center;
}

.final-seat-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 0;
}

.final-seat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fsl {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.fsv {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.final-seat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
}

/* Nearby Grid */
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-bottom: 28px;
}

.nearby-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 12px;
  text-align: center;
  animation: cardUp 0.5s var(--ease) both;
}

.nearby-card:nth-child(1) { animation-delay: 0.6s; }
.nearby-card:nth-child(2) { animation-delay: 0.65s; }
.nearby-card:nth-child(3) { animation-delay: 0.7s; }
.nearby-card:nth-child(4) { animation-delay: 0.75s; }

.nearby-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--crimson-subtle);
  border-radius: 10px;
  color: var(--crimson-light);
}

.nearby-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.nearby-detail {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.nearby-distance {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Final Message */
.final-message {
  width: 100%;
  padding: 32px 20px;
  animation: cardUp 0.6s var(--ease) both;
  animation-delay: 0.8s;
}

.final-message-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.final-msg-a, .final-msg-b {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.final-msg-a {
  color: var(--crimson-light);
  text-shadow: 0 0 30px var(--crimson-glow);
}

.final-msg-b {
  color: var(--text);
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* ============ EGRESS SCREENS ============ */

/* Persistent Exit Button */
.persistent-exit-btn {
  position: fixed; top: 80px; right: 16px; z-index: 60;
  display: flex; align-items: center; gap: 5px;
  background: rgba(20,20,22,0.9); border: 1px solid var(--border-light);
  border-radius: 100px; padding: 7px 14px 7px 10px;
  font-size: 0.7rem; font-weight: 700; font-family: inherit; color: var(--text-secondary);
  cursor: pointer; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s var(--ease); box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.persistent-exit-btn:hover { border-color: rgba(158,27,50,0.3); color: var(--crimson-light); background: rgba(158,27,50,0.12); }
.persistent-exit-btn svg { flex-shrink: 0; }

/* Live Traffic Widget on Screen 5 */
.live-traffic-widget {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%); z-index: 55;
  background: rgba(20,20,22,0.9); border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 16px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3); animation: syncFadeIn 0.5s var(--ease) 1.5s both;
  max-width: 280px; text-align: center;
}
.ltw-header { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 600; color: var(--text-muted); }
.ltw-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; animation: syncPulse 2s ease-in-out infinite; }
.ltw-dot.traffic-light { background: var(--green); }
.ltw-dot.traffic-moderate { background: var(--yellow); }
.ltw-dot.traffic-heavy { background: var(--red); }
.ltw-level { font-weight: 800; }
.ltw-level.tl-light { color: var(--green); }
.ltw-level.tl-moderate { color: var(--yellow); }
.ltw-level.tl-heavy { color: var(--red); }
.ltw-tip { font-size: 0.6rem; color: var(--text-muted); font-weight: 500; }

/* Dual CTA on Screen 5 */
.dual-cta { display: flex; flex-direction: column; gap: 8px; }
.btn-secondary-full {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; background: var(--bg-card); color: var(--text-secondary);
  font-size: 0.92rem; font-weight: 600; font-family: inherit;
  border: 1px solid var(--border-light); border-radius: var(--r); cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn-secondary-full:hover { background: var(--bg-card-hover); border-color: rgba(158,27,50,0.3); color: var(--text); }

/* Game Situation Card */
.game-situation-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 16px; margin-bottom: 12px;
}
.gs-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; }
.gs-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.gs-value { font-size: 0.85rem; font-weight: 700; color: var(--text); font-family: "JetBrains Mono", "Inter", monospace; }
.gs-score-row {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 12px 0; margin: 6px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.gs-team { display: flex; align-items: center; gap: 8px; }
.gs-team-name { font-size: 0.78rem; font-weight: 700; color: var(--text-secondary); }
.gs-team-score { font-size: 1.6rem; font-weight: 900; font-family: "JetBrains Mono", monospace; letter-spacing: -0.03em; }
.gs-away { color: var(--text-muted); }
.gs-dash { font-size: 1rem; color: var(--text-muted); }

/* Smart Recommendation Banner */
.smart-rec {
  display: flex; gap: 12px; background: linear-gradient(135deg, rgba(158,27,50,0.12) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(158,27,50,0.2); border-radius: var(--r); padding: 16px; margin-bottom: 16px;
}
.smart-rec-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--crimson-subtle); color: var(--crimson-light); flex-shrink: 0;
}
.smart-rec-body { flex: 1; }
.smart-rec-title { display: block; font-size: 0.85rem; font-weight: 800; color: var(--crimson-light); margin-bottom: 3px; }
.smart-rec-msg { display: block; font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* Schedule Departure */
.sched-dep-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 16px;
  margin-bottom: 12px;
}
.sched-dep-row { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; }
.sched-dep-options { display: flex; flex-wrap: wrap; gap: 6px; }
.sched-btn {
  font-size: 0.72rem; font-weight: 700; font-family: inherit; color: var(--text-muted);
  background: var(--bg-glass); border: 1px solid var(--border); border-radius: 100px;
  padding: 7px 14px; cursor: pointer; transition: all 0.15s var(--ease);
}
.sched-btn:hover { color: var(--text-secondary); background: var(--bg-elevated); }
.sched-btn.sched-active { color: var(--crimson-light); background: var(--crimson-subtle); border-color: rgba(158,27,50,0.3); }
.sched-dep-active {
  display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 14px;
  background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15); border-radius: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--green);
  animation: cardUp 0.3s var(--ease) both;
}

/* Early Exit Bonus */
.early-exit-bonus {
  display: flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15); border-radius: var(--r); padding: 12px 14px;
  font-size: 0.82rem; font-weight: 600; color: var(--green); line-height: 1.4; margin-bottom: 10px;
  animation: cardUp 0.4s var(--ease) both;
}
.early-exit-bonus svg { flex-shrink: 0; }

/* Scoreboard */
.scoreboard {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px 20px; margin-bottom: 10px;
}
.sb-team { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sb-logo { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; }
.sb-logo.bama { background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%); color: white; }
.sb-logo.auburn { background: linear-gradient(135deg, #0C2340 0%, #1A3A5C 100%); color: #F26522; }
.sb-name { font-size: 0.72rem; font-weight: 700; color: var(--text-secondary); }
.sb-score { display: flex; align-items: center; gap: 10px; }
.sb-num { font-size: 2.2rem; font-weight: 900; font-family: "JetBrains Mono", "Inter", monospace; letter-spacing: -0.04em; }
.sb-num-away { color: var(--text-muted); }
.sb-dash { font-size: 1.2rem; color: var(--text-muted); }
.sb-meta { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.sb-meta strong { color: var(--text-secondary); }
.mt-lg { margin-top: 20px; }

/* Exit Options */
.exit-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.exit-option {
  display: block; width: 100%; text-align: left; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r); padding: 16px;
  cursor: pointer; font-family: inherit; color: var(--text); transition: all 0.25s var(--ease);
}
.exit-option:hover { border-color: var(--border-light); background: var(--bg-card-hover); }
.exit-option.recommended { border-color: rgba(158,27,50,0.3); background: linear-gradient(135deg, rgba(158,27,50,0.08) 0%, var(--bg-card) 60%); }
.exit-option.selected { border-color: var(--crimson); box-shadow: 0 0 20px var(--crimson-glow); }
.eo-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.eo-title { font-size: 1rem; font-weight: 700; }
.eo-badge { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 100px; background: var(--green-bg); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.eo-badge.warn { background: var(--red-bg); color: var(--red); border-color: rgba(239,68,68,0.2); }
.eo-badge.best { background: var(--crimson-subtle); color: var(--crimson-light); border-color: rgba(158,27,50,0.2); }
.eo-stats { display: flex; gap: 16px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.eo-stat strong { color: var(--text); }
.eo-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; margin-bottom: 6px; }
.eo-bar-fill { height: 100%; border-radius: 100px; transition: width 0.6s var(--ease); }
.eo-bar-fill.green { background: var(--green); }
.eo-bar-fill.yellow { background: var(--yellow); }
.eo-bar-fill.red { background: var(--red); }
.eo-crowd { font-size: 0.72rem; color: var(--text-muted); }

.recommend-note {
  display: flex; align-items: flex-start; gap: 10px; background: var(--crimson-subtle);
  border: 1px solid rgba(158,27,50,0.2); border-radius: var(--r); padding: 14px 16px;
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 16px;
}
.recommend-note strong { color: var(--text); }
.recommend-note svg { flex-shrink: 0; margin-top: 1px; }


/* Gate Crowd List */
.gate-crowd-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.gate-crowd-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; }
.gate-crowd-item.recommended-gate { border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.04); }
.gc-name { font-size: 0.82rem; font-weight: 600; min-width: 100px; color: var(--text-secondary); }
.gc-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.gc-bar-fill { height: 100%; border-radius: 100px; }
.gc-level { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; min-width: 70px; text-align: right; }
.gc-level.heavy { color: var(--red); }
.gc-level.moderate { color: var(--yellow); }
.gc-level.light { color: var(--green); }

.crowd-chip {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--bg-glass); border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 16px; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px;
}
.crowd-chip strong { color: var(--yellow); }

.tip-card {
  display: flex; align-items: flex-start; gap: 10px; background: var(--crimson-subtle);
  border: 1px solid rgba(158,27,50,0.15); border-radius: var(--r);
  padding: 14px 16px; font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 10px;
}
.tip-card svg { flex-shrink: 0; margin-top: 1px; }

/* Rating Screen */
.rating-section { text-align: center; margin-bottom: 20px; }
.rating-section.sm { margin-bottom: 12px; }
.rating-label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
.star-rating { display: flex; justify-content: center; gap: 6px; }
.star-rating .star {
  font-size: 2rem; color: var(--bg-elevated); cursor: pointer; transition: all 0.15s var(--ease);
  line-height: 1; user-select: none;
}
.rating-section.sm .star-rating .star { font-size: 1.4rem; }
.star-rating .star.active { color: #EAB308; }
.star-rating .star:hover { transform: scale(1.15); color: #EAB308; }
.rating-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }

.comment-section { margin-bottom: 16px; }
.comment-box {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font-size: 0.88rem; font-family: inherit; color: var(--text);
  resize: vertical; min-height: 60px; transition: border 0.2s var(--ease); margin-top: 4px;
}
.comment-box::placeholder { color: var(--text-muted); }
.comment-box:focus { outline: none; border-color: rgba(158,27,50,0.5); box-shadow: 0 0 0 3px var(--crimson-subtle); }

.thank-you {
  text-align: center; padding: 32px 0; animation: cardUp 0.5s var(--ease) both;
}
.ty-check {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 0 40px var(--crimson-glow);
  animation: checkPop 0.6s var(--spring) both;
}
.thank-you h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.thank-you p { font-size: 0.88rem; color: var(--text-secondary); }
.ty-cta { margin-top: 16px; font-size: 1rem; color: var(--crimson-light); }
.ty-cta strong { color: var(--text); }

/* ============ LIVE SYNC INDICATOR ============ */
.sync-indicator {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 20, 22, 0.9);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: syncFadeIn 0.5s var(--ease) 1s both;
}

.sync-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: syncPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes syncPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.sync-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #22C55E;
  letter-spacing: 0.02em;
}

@keyframes syncFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============ FAN ALERT BANNER ============ */
.fan-alert-overlay {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 32px);
  max-width: 400px;
}

.fan-alert-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(20, 20, 24, 0.95);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 14px 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: alertSlideIn 0.4s var(--ease) both;
}

.fan-alert-card.alert-exit {
  animation: alertSlideOut 0.35s var(--ease) forwards;
}

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

@keyframes alertSlideOut {
  to { opacity: 0; transform: translateY(-12px); }
}

.fan-alert-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.fan-alert-icon.alert-warning {
  background: rgba(234,179,8,0.12);
  color: #EAB308;
}

.fan-alert-icon.alert-danger {
  background: rgba(239,68,68,0.12);
  color: #EF4444;
}

.fan-alert-icon.alert-info {
  background: rgba(59,130,246,0.12);
  color: #3B82F6;
}

.fan-alert-icon.alert-success {
  background: rgba(34,197,94,0.12);
  color: #22C55E;
}

.fan-alert-body {
  flex: 1;
  min-width: 0;
}

.fan-alert-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.fan-alert-msg {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.fan-alert-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}

.fan-alert-close:hover { color: var(--text); }

/* ============ LIVE FANS CHIP ============ */
.live-fans-chip {
  position: fixed;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 20, 22, 0.9);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  z-index: 99;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.live-fans-chip .sync-dot {
  width: 5px;
  height: 5px;
}

/* ============ DATA UPDATE FLASH ============ */
.data-flash {
  animation: dataFlash 0.6s var(--ease);
}

@keyframes dataFlash {
  0%  { background: rgba(158,27,50,0.15); }
  100% { background: transparent; }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 100px; }

/* ============ TRANSPORTATION MODE SELECTOR ============ */
.transport-modes { display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:4px }
.transport-mode { display:flex;flex-direction:column;align-items:center;gap:4px;padding:12px 6px;border-radius:12px;border:2px solid var(--border);background:var(--bg-elevated);color:var(--text-sec);font-family:inherit;cursor:pointer;transition:all 0.15s }
.transport-mode.active { border-color:var(--crimson);background:var(--crimson-subtle);color:var(--text) }
.transport-mode:active { transform:scale(0.95) }
.transport-icon { font-size:1.3rem;line-height:1 }
.transport-label { font-size:0.62rem;font-weight:700;text-transform:uppercase;letter-spacing:0.04em }

/* ============ RIDESHARE ZONES ============ */
.rs-zones { display:flex;flex-direction:column;gap:6px }
.rs-zone-card { padding:12px 14px;border-radius:12px;border:2px solid var(--border);background:var(--bg-elevated);cursor:pointer;transition:all 0.15s }
.rs-zone-card.active { border-color:var(--crimson);background:var(--crimson-subtle) }
.rs-zone-card:active { transform:scale(0.98) }
.rs-zone-name { font-size:0.82rem;font-weight:700;margin-bottom:2px }
.rs-zone-loc { font-size:0.68rem;color:var(--text-muted) }
.rs-zone-walk { display:flex;align-items:center;gap:4px;font-size:0.68rem;color:var(--text-sec);margin-top:4px;font-weight:600 }
.btn-sm-copy { display:inline-block;padding:6px 16px;border-radius:8px;border:1px solid var(--crimson);background:transparent;color:var(--crimson-light);font-family:inherit;font-size:0.72rem;font-weight:700;cursor:pointer;transition:all 0.15s }
.btn-sm-copy:active { background:var(--crimson-subtle) }

/* ============ SURGE PRICING ============ */
.rs-surge { display:flex;align-items:center;gap:8px;padding:10px 14px;border-radius:10px;background:var(--bg-elevated);border:1px solid var(--border);margin-bottom:10px;font-size:0.75rem;font-weight:600 }
.surge-dot { width:10px;height:10px;border-radius:50%;flex-shrink:0 }
.surge-dot.green { background:var(--green);box-shadow:0 0 6px rgba(34,197,94,0.4) }
.surge-dot.yellow { background:var(--yellow);box-shadow:0 0 6px rgba(234,179,8,0.4) }
.surge-dot.red { background:var(--red);box-shadow:0 0 6px rgba(239,68,68,0.4) }

/* ============ SCOOTER/BIKE ============ */
.scooter-list { display:flex;flex-direction:column;gap:6px }
.scooter-card { display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:10px;background:var(--bg-elevated);border:1px solid var(--border) }
.scooter-brand { font-size:0.82rem;font-weight:800;min-width:70px }
.scooter-detail { font-size:0.68rem;color:var(--text-muted);flex:1 }
.scooter-avail { font-size:0.68rem;font-weight:700;color:var(--green) }
.scooter-dot { width:8px;height:8px;border-radius:50%;flex-shrink:0 }

/* ============ TRANSIT ============ */
.transit-stops { display:flex;flex-direction:column;gap:6px }
.transit-card { display:flex;align-items:center;gap:10px;padding:12px 14px;border-radius:12px;background:var(--bg-elevated);border:1px solid var(--border) }
.transit-route-badge { width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:0.65rem;font-weight:900;flex-shrink:0 }
.transit-info { flex:1;min-width:0 }
.transit-route-name { display:block;font-size:0.8rem;font-weight:700 }
.transit-detail { display:block;font-size:0.62rem;color:var(--text-muted) }
.transit-next { text-align:right;flex-shrink:0 }
.transit-eta { display:block;font-size:1rem;font-weight:900;font-family:"JetBrains Mono",monospace;color:var(--green) }
.transit-label { font-size:0.55rem;color:var(--text-muted);text-transform:uppercase;font-weight:700 }

/* ============ ACCESSIBILITY ============ */
:focus-visible { outline: 2px solid var(--crimson-light); outline-offset: 2px; }
button:focus:not(:focus-visible), a:focus:not(:focus-visible) { outline: none; }

/* ============ NAVIGATION DOCK (fixed bottom) ============ */
.nav-dock { position:fixed;bottom:0;left:0;right:0;z-index:200;padding:0 12px 16px;background:linear-gradient(transparent,rgba(9,9,11,0.98) 20%);animation:slideUp 0.35s cubic-bezier(0.34,1.56,0.64,1) }
@keyframes slideUp { from{transform:translateY(100%);opacity:0} to{transform:translateY(0);opacity:1} }
.nav-dock-inner { max-width:430px;margin:0 auto;background:var(--bg-card);border:1px solid var(--border-light);border-radius:16px;overflow:hidden;box-shadow:0 -4px 32px rgba(0,0,0,0.4) }
.nav-dock-top { display:flex;align-items:center;gap:10px;padding:14px 16px;border-bottom:1px solid var(--border) }
.nav-dock-text { flex:1;min-width:0 }
.nav-dock-text strong { display:block;font-size:0.82rem;font-weight:700;color:var(--text) }
.nav-dock-text span { font-size:0.68rem;color:var(--text-muted) }
.nav-dock-timer { font-family:"JetBrains Mono",monospace;font-size:1.1rem;font-weight:800;color:var(--crimson-light);flex-shrink:0 }
.nav-dock-btn { display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:14px 20px;background:linear-gradient(135deg,var(--crimson),var(--crimson-dark,#7A1526));color:#fff;font-family:inherit;font-size:0.92rem;font-weight:700;border:none;cursor:pointer;transition:opacity 0.15s }
.nav-dock-btn:active { opacity:0.85 }
