/* =============================================================================
   Allaball - Festival theme
   45 ára afmæli Alla, sun. 3. maí 2026, Ásakór 4
   ============================================================================ */

:root {
  /* Balloon palette - matches the invite illustration */
  --c-red:    #e8364f;
  --c-pink:   #ff8a9d;
  --c-yellow: #eab308;
  --c-green:  #16a34a;
  --c-blue:   #2563eb;
  --c-purple: #a855f7;
  --c-orange: #f97316;

  --bg:        #fff7e0;
  --bg-soft:   #fff2cc;
  --paper:     #ffffff;
  --ink:       #1f2937;
  --ink-soft:  #374151;
  --muted:     #6b7280;
  --line:      #f3d678;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.14);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

a { color: var(--c-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Confetti background ─────────────────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, var(--c-red) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 22%, var(--c-yellow) 0 5px, transparent 6px),
    radial-gradient(circle at 24% 72%, var(--c-blue) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 84%, var(--c-green) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 8%, var(--c-purple) 0 4px, transparent 5px),
    radial-gradient(circle at 6% 50%, var(--c-orange) 0 4px, transparent 5px),
    radial-gradient(circle at 95% 55%, var(--c-pink) 0 4px, transparent 5px);
  background-size: 320px 320px, 380px 380px, 290px 290px, 360px 360px, 340px 340px, 300px 300px, 350px 350px;
  background-repeat: repeat;
  opacity: 0.18;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.65) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

main { padding: 32px 0 80px; }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
nav.topnav {
  padding: 18px 0;
  border-bottom: 2px dashed var(--line);
  background: rgba(255, 247, 224, 0.85);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 50;
}

nav.topnav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 36px; height: 36px; }

.brand-text span:nth-child(1) { color: var(--c-red); }
.brand-text span:nth-child(2) { color: var(--c-yellow); }
.brand-text span:nth-child(3) { color: var(--c-green); }
.brand-text span:nth-child(4) { color: var(--c-blue); }
.brand-text span:nth-child(5) { color: var(--c-purple); }
.brand-text span:nth-child(6) { color: var(--c-red); }
.brand-text span:nth-child(7) { color: var(--c-yellow); }
.brand-text span:nth-child(8) { color: var(--c-green); }
.brand-text span:nth-child(9) { color: var(--c-blue); }

.nav-links { list-style: none; display: flex; gap: 18px; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 8px;
}
.nav-links a:hover { background: var(--bg-soft); text-decoration: none; }

/* Hamburger - hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 48px 0 36px;
}

.hero-balloons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 12px;
}
.hero-balloons img {
  width: 180px;
  height: auto;
  animation: float 5s ease-in-out infinite;
}
.hero-balloons img:last-child {
  transform: scaleX(-1);
  animation-delay: -2.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-balloons img:last-child {
  animation-name: float-mirror;
}
@keyframes float-mirror {
  0%, 100% { transform: scaleX(-1) translateY(0); }
  50%      { transform: scaleX(-1) translateY(-12px); }
}

.title-allaball {
  font-size: clamp(64px, 13vw, 160px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 0 rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}
.title-allaball span { display: inline-block; }
.title-allaball span:nth-child(1) { color: var(--c-red);    transform: rotate(-4deg); }
.title-allaball span:nth-child(2) { color: var(--c-yellow); transform: rotate(2deg); }
.title-allaball span:nth-child(3) { color: var(--c-green);  transform: rotate(-2deg); }
.title-allaball span:nth-child(4) { color: var(--c-blue);   transform: rotate(3deg); }
.title-allaball span:nth-child(5) { color: var(--c-purple); transform: rotate(-3deg); }
.title-allaball span:nth-child(6) { color: var(--c-red);    transform: rotate(2deg); }
.title-allaball span:nth-child(7) { color: var(--c-yellow); transform: rotate(-2deg); }
.title-allaball span:nth-child(8) { color: var(--c-green);  transform: rotate(4deg); }
.title-allaball span:nth-child(9) { color: var(--c-blue);   transform: rotate(-3deg); }

.subtitle {
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 12px;
}

/* ── Info card ───────────────────────────────────────────────────────────── */
.info-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px auto;
  max-width: 760px;
  box-shadow: 8px 8px 0 var(--c-purple);
  text-align: center;
}

.info-card > div {
  padding: 8px 12px;
  border-right: 2px dashed var(--line);
}
.info-card > div:last-child { border-right: none; }

.info-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  border: 3px solid var(--ink);
  border-radius: 100px;
  background: var(--c-yellow);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); text-decoration: none; }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: 6px 6px 0 var(--ink); }

.btn-primary { background: var(--c-red); color: #fff; }
.btn-primary:hover { background: #c81f37; }
.btn-purple { background: var(--c-purple); color: #fff; }
.btn-green { background: var(--c-green); color: #fff; }

.btn-xl {
  font-size: clamp(24px, 3.4vw, 36px);
  padding: 24px 56px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

/* ── Section ─────────────────────────────────────────────────────────────── */
.section { margin: 56px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
}
.section-title .accent { color: var(--c-purple); }

.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

/* ── Participants list ──────────────────────────────────────────────────── */
.participants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 6px 6px 0 var(--c-blue);
}

.participant {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 17px;
  border: 2px solid transparent;
  transition: transform 0.1s ease, border-color 0.1s ease;
}
.participant:hover { transform: translateY(-2px); border-color: var(--c-purple); }

.participant-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.participant:nth-child(7n+1) .participant-dot { background: var(--c-red); }
.participant:nth-child(7n+2) .participant-dot { background: var(--c-yellow); }
.participant:nth-child(7n+3) .participant-dot { background: var(--c-green); }
.participant:nth-child(7n+4) .participant-dot { background: var(--c-blue); }
.participant:nth-child(7n+5) .participant-dot { background: var(--c-purple); }
.participant:nth-child(7n+6) .participant-dot { background: var(--c-orange); }
.participant:nth-child(7n+7) .participant-dot { background: var(--c-pink); }

.participants-empty {
  padding: 32px;
  text-align: center;
  color: var(--muted);
  background: var(--paper);
  border: 3px dashed var(--line);
  border-radius: var(--radius-lg);
}

/* ── Explainer / story ──────────────────────────────────────────────────── */
.explainer {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 6px 6px 0 var(--c-green);
  max-width: 820px;
  margin: 0 auto;
}
.explainer h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--c-purple);
}
.explainer p {
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.explainer p:last-child { margin-bottom: 0; }
.explainer .highlight {
  background: linear-gradient(180deg, transparent 60%, var(--c-yellow) 60%);
  padding: 0 4px;
  font-weight: 700;
}

/* ── Winner banner (history) ────────────────────────────────────────────── */
.winner-banner {
  background: linear-gradient(135deg, var(--c-purple), var(--c-blue));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  margin: 24px 0;
}
.winner-banner .label {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}
.winner-banner .name {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-top: 4px;
}

/* ── Wheel page ──────────────────────────────────────────────────────────── */
.wheel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}

.wheel-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
}

#wheel {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
}

.wheel-pointer {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 36px solid var(--c-red);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
  z-index: 3;
}
.wheel-pointer::after {
  content: "";
  position: absolute;
  top: -38px; left: -8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--c-yellow);
  border: 3px solid var(--ink);
}

.wheel-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--paper);
  border: 4px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--c-red);
  z-index: 2;
  pointer-events: none;
}

.countdown {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 64px;
  font-weight: 700;
  color: var(--c-purple);
  min-height: 80px;
  letter-spacing: -2px;
}
.countdown.done { color: var(--c-green); }

/* ── Winner reveal ───────────────────────────────────────────────────────── */
.reveal-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(255, 247, 224, 0.96);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.reveal-screen.show { display: flex; }

.reveal-card {
  position: relative;
  text-align: center;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 48px) clamp(28px, 6vw, 72px);
  box-shadow: 12px 12px 0 var(--c-purple);
  max-width: 720px;
  animation: reveal-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

@keyframes reveal-pop {
  0%   { transform: scale(0.4) rotate(-8deg); opacity: 0; }
  60%  { transform: scale(1.05) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.reveal-eyebrow {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 12px;
}

.reveal-title {
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.reveal-title .name {
  display: block;
  background: linear-gradient(90deg, var(--c-red), var(--c-yellow), var(--c-green), var(--c-blue), var(--c-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: name-shine 3s linear infinite;
  background-size: 200% auto;
}
@keyframes name-shine {
  to { background-position: 200% center; }
}

.reveal-sub {
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.reveal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Confetti pieces - generated by JS */
.confetti-piece {
  position: absolute;
  width: 12px;
  height: 18px;
  top: -40px;
  z-index: 1;
  pointer-events: none;
  animation: confetti-fall linear forwards;
}
@keyframes confetti-fall {
  to {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0.85;
  }
}

/* Floating balloons in reveal */
.floating-balloon {
  position: absolute;
  bottom: -120px;
  width: 80px;
  height: auto;
  animation: balloon-rise 6s ease-in forwards;
  z-index: 1;
  pointer-events: none;
}
@keyframes balloon-rise {
  to { transform: translateY(-130vh) rotate(15deg); }
}

/* ── History ─────────────────────────────────────────────────────────────── */
.history-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.history-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: 4px 4px 0 var(--c-yellow);
}
.history-row .year {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 22px;
  color: var(--c-purple);
}
.history-row .name {
  font-weight: 700;
  font-size: 22px;
}

/* ── Countdown ───────────────────────────────────────────────────────────── */
.countdown-card {
  background: linear-gradient(135deg, #fff7e0 0%, #ffe6b0 100%);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--c-yellow);
  max-width: 760px;
  margin: 0 auto;
}

.countdown-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 18px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}

.countdown-cell {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.countdown-cell .num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1px;
}

.countdown-cell .unit {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.countdown-cell:nth-child(1) .num { color: var(--c-red); }
.countdown-cell:nth-child(2) .num { color: var(--c-yellow); }
.countdown-cell:nth-child(3) .num { color: var(--c-green); }
.countdown-cell:nth-child(4) .num { color: var(--c-blue); }

.countdown-foot {
  margin-top: 18px;
  font-weight: 600;
  color: var(--ink-soft);
}

.countdown-card.live .countdown-grid {
  animation: countdown-pulse 1s ease-in-out infinite;
}
@keyframes countdown-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}

/* ── Login form ──────────────────────────────────────────────────────────── */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 6px 6px 0 var(--c-purple);
  margin-top: 24px;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-field span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.login-field input {
  font-family: inherit;
  font-size: 18px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.1s ease, box-shadow 0.1s ease;
}
.login-field input:focus {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.18);
}

.flash {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 18px;
  font-weight: 600;
  border: 2px solid var(--ink);
}
.flash-error,
.flash-warning {
  background: #fde68a;
  color: #78350f;
}
.flash-info,
.flash-success {
  background: #bbf7d0;
  color: #14532d;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-purple);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
}
.logout-form { display: inline; }
.logout-form button {
  background: none;
  border: none;
  font: inherit;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
}
.logout-form button:hover { background: var(--bg-soft); }

.spin-locked {
  background: var(--paper);
  border: 3px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  color: var(--muted);
}
.spin-locked strong { color: var(--ink); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  border-top: 2px dashed var(--line);
  padding: 24px 0 32px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 60px;
}
footer .heart { color: var(--c-red); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .info-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .info-card > div {
    border-right: none;
    border-bottom: 2px dashed var(--line);
    padding-bottom: 12px;
  }
  .info-card > div:last-child { border-bottom: none; padding-bottom: 0; }
  .hero-balloons img { width: 100px; }
  .countdown { font-size: 48px; }

  /* Hamburger nav on mobile */
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 480px; padding: 8px 8px 16px; }

  .nav-links li {
    width: 100%;
    border-bottom: 1px dashed var(--line);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a,
  .nav-links .logout-form button {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    text-align: left;
    border-radius: 0;
  }
  .nav-links .user-pill {
    display: block;
    margin: 8px 16px;
    text-align: center;
  }
  .logout-form { display: block; }
}

@media (max-width: 520px) {
  .hero-balloons { display: none; }
  .title-allaball { letter-spacing: -1.5px; }
  .btn-xl { padding: 18px 28px; }
  .participants { padding: 16px; gap: 10px; }
}
