@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #eef4fb;
  --bg-deep: #dbeafe;
  --card: #ffffff;
  --blue: #1976d2;
  --blue-mid: #1565c0;
  --blue-dark: #0d47a1;
  --blue-soft: rgba(25, 118, 210, 0.1);
  --red: #ef5350;
  --red-dark: #c62828;
  --text: #102a43;
  --muted: #64748b;
  --border: #e2e8f0;
  --seat: #f1f5f9;
  --seat-border: #cbd5e1;
  --seat-hover: #e2e8f0;
  --seat-yours: #22c55e;
  --seat-yours-dark: #15803d;
  --seat-yours-glow: rgba(34, 197, 94, 0.35);
  --stage: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  --success-bg: #dcfce7;
  --success-fg: #166534;
  --success-border: #86efac;
  --warn-bg: #fef9c3;
  --warn-fg: #854d0e;
  --warn-border: #fde047;
  --error-bg: #fee2e2;
  --error-fg: #991b1b;
  --error-border: #fca5a5;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(25, 118, 210, 0.18), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 280px, var(--bg) 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ── Top shell (stil ADV) ── */
.topbar {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.35);
}

.badge-siap {
  background: var(--red-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 6px;
}

.ribbon {
  background: linear-gradient(90deg, #111827 0%, #1f2937 50%, #111827 100%);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
  animation: fadeUp 0.5s ease both;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue-dark);
  line-height: 1.2;
}

.hero p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.98rem;
}

.steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(300px, 380px) 1fr;
  align-items: start;
}

@media (max-width: 960px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  animation: fadeUp 0.55s ease both;
}

.card--form {
  animation-delay: 0.05s;
  position: sticky;
  top: 16px;
}

@media (max-width: 960px) {
  .card--form {
    position: static;
  }
}

.card--hall {
  animation-delay: 0.12s;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.card-head-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.card-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.card-head p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.field-wrap {
  position: relative;
}

.field-wrap input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field-wrap input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.field-wrap input:hover {
  border-color: #cbd5e1;
  background: #fff;
}

.field-wrap input:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.12);
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  font-size: 1rem;
}

.btn {
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 4px 14px rgba(198, 40, 40, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  margin-top: 4px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.btn.is-loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hint {
  margin-top: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Rezultat candidat ── */
.result-panel {
  margin-top: 20px;
  animation: fadeUp 0.4s ease both;
}

.result-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.25);
}

.result-hero-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.result-hero-sub {
  font-size: 0.82rem;
  opacity: 0.88;
  margin: 0;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.02em;
}

.stat--highlight .stat-value {
  color: var(--seat-yours-dark);
}

.presence-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  width: 100%;
  justify-content: center;
}

.presence-badge--ok {
  background: var(--success-bg);
  color: var(--success-fg);
  border: 1px solid var(--success-border);
}

.presence-badge--pending {
  background: var(--warn-bg);
  color: var(--warn-fg);
  border: 1px solid var(--warn-border);
}

.result-map-hint {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: #ecfdf5;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #166534;
  text-align: center;
}

.result-map-hint strong {
  font-weight: 800;
}

/* ── Banner jos (priorități) ── */
.status-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
  animation: slideUp 0.35s ease both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.status-bar--success {
  background: var(--success-bg);
  color: var(--success-fg);
  border-top: 3px solid var(--success-border);
}

.status-bar--warning {
  background: var(--warn-bg);
  color: var(--warn-fg);
  border-top: 3px solid var(--warn-border);
}

.status-bar--error {
  background: var(--error-bg);
  color: var(--error-fg);
  border-top: 3px solid var(--error-border);
}

.status-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

body.has-status-bar {
  padding-bottom: 64px;
}

/* ── Hartă sală — amfiteatru ── */
.hall-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}

.hall-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.4;
}

.hall-empty p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 320px;
  margin-inline: auto;
}

.hall-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--seat-border);
  background: var(--seat);
}

.legend-box--bench {
  background: linear-gradient(180deg, #c9a66b 0%, #9a7344 100%);
  border-color: #7a5c32;
}

.legend-box--yours {
  background: var(--seat-yours);
  border-color: var(--seat-yours-dark);
  box-shadow: 0 0 0 2px var(--seat-yours-glow);
}

.hall-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.hall-scroll::-webkit-scrollbar {
  height: 6px;
}

.hall-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.amphitheater {
  min-width: 680px;
}

.amph-room {
  display: flex;
  background: linear-gradient(180deg, #fafaf8 0%, #f0f0ec 100%);
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 12px 40px rgba(0, 0, 0, 0.08);
}

.amph-windows {
  width: 48px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #e8f4fc 0%, #dceef8 100%);
  border-right: 1px solid #c5d9e8;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 24px 8px;
  gap: 12px;
}

.amph-windows span {
  display: block;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(200, 230, 255, 0.5) 100%);
  border: 1px solid #b8d4ea;
  border-radius: 2px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.8);
}

.amph-main {
  flex: 1;
  padding: 16px 16px 14px 20px;
  min-width: 0;
}

.amph-screen {
  height: 52px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 -4px 12px rgba(0, 0, 0, 0.03);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.amph-screen-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
}

.amph-stage {
  text-align: center;
  margin-bottom: 14px;
}

.amph-stage-platform {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f3 100%);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px 16px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.amph-podium {
  width: 72px;
  height: 28px;
  background: linear-gradient(180deg, #d4a574 0%, #a67c52 45%, #8b6914 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: relative;
}

.amph-podium::before {
  content: '';
  position: absolute;
  inset: 4px 6px auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
}

.amph-monitors {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.amph-monitors span {
  width: 22px;
  height: 18px;
  background: #1a1a1a;
  border-radius: 2px;
  border: 1px solid #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.amph-stage-caption {
  margin: 6px 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.amph-seating {
  position: relative;
  padding-right: 36px;
  overflow: visible;
}

.amph-tier {
  margin-bottom: 4px;
  position: relative;
  overflow: visible;
}

.amph-tier-inner {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.amph-tier--1 .amph-tier-inner {
  transform: scale(0.92);
  transform-origin: top center;
  margin-inline: auto;
  max-width: 94%;
}

.amph-tier--2 .amph-tier-inner {
  transform: scale(0.96);
  transform-origin: top center;
  margin-inline: auto;
  max-width: 97%;
}

.amph-tier--3 .amph-tier-inner {
  transform: scale(1);
}

.amph-tier-label {
  width: 28px;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
}

.amph-tier--active .amph-tier-label {
  color: var(--seat-yours-dark);
}

.amph-bench {
  flex: 1;
  position: relative;
  min-width: 0;
  overflow: visible;
}

.amph-bench-edge {
  height: 3px;
  background: linear-gradient(90deg, #7a5c32, #c9a66b, #7a5c32);
  border-radius: 2px 2px 0 0;
  opacity: 0.6;
}

.amph-bench-surface {
  display: flex;
  background: linear-gradient(180deg, #d4a574 0%, #b8894a 35%, #9a7344 100%);
  border-left: 2px solid #7a5c32;
  border-right: 2px solid #7a5c32;
  padding: 4px 2px;
  gap: 1px;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.25),
    0 4px 8px rgba(0, 0, 0, 0.12);
  overflow: visible;
  position: relative;
  z-index: 1;
}

.amph-bench-front {
  height: 8px;
  background: linear-gradient(180deg, #8b6914 0%, #6b5010 100%);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.amph-tier-step {
  height: 10px;
  margin: 2px 0 6px 36px;
  background: linear-gradient(180deg, #e8e8e4 0%, #d8d8d4 100%);
  border-radius: 0 0 2px 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.amph-tier--3 .amph-tier-step {
  margin-bottom: 0;
}

.amph-seat {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1;
  max-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-right: 1px solid rgba(90, 60, 30, 0.2);
  cursor: default;
  transition: background 0.15s;
}

.amph-seat:last-child {
  border-right: none;
}

.amph-seat-num {
  font-size: 0.48rem;
  font-weight: 700;
  color: rgba(60, 40, 20, 0.45);
  line-height: 1;
}

.amph-seat:hover:not(.amph-seat--yours) .amph-seat-num {
  color: rgba(60, 40, 20, 0.75);
}

.amph-seat--yours {
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 50%, #15803d 100%) !important;
  border-radius: 3px;
  z-index: 5;
  overflow: visible;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--seat-yours-glow),
    0 4px 12px rgba(21, 128, 61, 0.5);
  animation: seatPulse 1.8s ease-in-out infinite;
  transform-origin: center center;
}

.amph-seat--yours .amph-seat-num {
  color: #fff;
  font-weight: 800;
  font-size: 0.52rem;
}

.amph-seat-pin {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--seat-yours-dark);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 10;
  animation: fadeUp 0.4s ease both;
}

.amph-seat-pin::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--seat-yours-dark);
}

.amph-aisle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 28px;
  width: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(90deg, transparent, rgba(240, 240, 236, 0.9) 30%);
}

.amph-aisle-stairs {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
  padding: 8px 0;
}

.amph-aisle-stairs span {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #ccc, #aaa);
  border-radius: 1px;
  margin: 0 4px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.amph-aisle-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: #999;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.amph-entrance {
  text-align: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #ccc;
}

.amph-entrance span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

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

.footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* Footer instituțional (ca platforma EAM / S-ALD) */
.app-footer {
  max-width: 1200px;
  margin: 32px auto 24px;
  padding: 0 20px;
}

.app-footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid #e6edf5;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 18px 24px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.app-footer .footer-meta {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
  min-width: 240px;
}

.app-footer .footer-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.app-footer .footer-meta strong {
  color: var(--blue-dark);
  font-weight: 700;
}

.app-footer .footer-note {
  margin-top: 6px;
  font-size: 0.75rem;
  color: #7b8794;
}

.app-footer .footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.app-footer .footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: opacity 0.15s;
}

.app-footer .footer-logo-link:hover {
  opacity: 0.85;
}

.app-footer .footer-logo {
  display: block;
  width: 88px;
  max-width: 88px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

.app-footer .footer-logo-ase {
  width: 112px;
  max-width: 112px;
  max-height: 42px;
}

body.has-status-bar .app-footer {
  margin-bottom: 72px;
}

@media (max-width: 768px) {
  .app-footer .footer-inner {
    justify-content: center;
    text-align: center;
    padding: 16px 18px;
  }

  .app-footer .footer-logos {
    justify-content: center;
    gap: 16px;
  }

  .app-footer .footer-logo {
    width: 72px;
    max-width: 72px;
  }

  .app-footer .footer-logo-ase {
    width: 96px;
    max-width: 96px;
  }
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .result-stats {
    grid-template-columns: 1fr 1fr;
  }

  .result-stats .stat:first-child {
    grid-column: 1 / -1;
  }

  .amphitheater {
    min-width: 560px;
  }

  .amph-windows {
    width: 28px;
    padding: 16px 4px;
  }

  .amph-windows span {
    height: 32px;
  }

  .amph-seat-num {
    font-size: 0.4rem;
  }

  .amph-aisle {
    width: 24px;
  }
}
