/* ===================================================================
   Partylinse Kundenbereich – Design System
   Inspired by Fotobox-ohne-Namen.de
   =================================================================== */

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

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --bg: #0c0c10;
  --surface: #141418;
  --surface-el: #1c1c24;
  --card: #1e1e28;
  --acc: #F5E642;
  --acc-hover: #f7ec6a;
  --acc-glow: rgba(245, 230, 66, .18);
  --txt: #f0eff5;
  --muted: #7a7890;
  --subtle: #55536a;
  --border: #26263a;
  --border-light: #33334a;
  --danger: #ff5c7c;
  --grn: #3ddfa8;
  --overlay: rgba(12, 12, 16, .85);

  /* Typography */
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Radius */
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .25);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .35);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .5);
  --shadow-glow: 0 0 30px var(--acc-glow);

  /* Transitions */
  --ease: cubic-bezier(.25, .46, .45, .94);
  --dur: 200ms;
  --dur-slow: 400ms;
}

/* ── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
img { display: block; max-width: 100%; }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--r-full); font-weight: 600; font-size: .86rem;
  border: none; transition: all var(--dur) var(--ease); white-space: nowrap;
  cursor: pointer; font-family: var(--font-body); position: relative; overflow: hidden;
}
.btn-acc {
  background: var(--acc); color: #000;
  box-shadow: 0 2px 12px var(--acc-glow);
}
.btn-acc:hover { background: var(--acc-hover); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-acc:active { transform: scale(.97); }
.btn-ghost {
  background: var(--surface-el); color: var(--txt);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--muted); background: var(--card); }
.btn-full { width: 100%; padding: 14px; font-size: .94rem; }
.btn-sm { padding: 7px 15px; font-size: .78rem; }

/* ── LOGIN PAGE ────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; position: relative; overflow: hidden;
}
.login-glow {
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, var(--acc-glow), transparent 70%),
    radial-gradient(circle 400px at 80% 70%, rgba(61, 223, 168, .04), transparent);
  pointer-events: none; animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity: .7; } to { opacity: 1; } }
.login-grid {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: .1; pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent);
}
.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  width: 100%; max-width: 420px;
  text-align: center; position: relative; z-index: 1;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.login-logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  margin-bottom: 6px;
}
.login-logo em { color: var(--acc); font-style: normal; }
.login-logo.img { max-height: 56px; object-fit: contain; margin: 0 auto 10px; display: block; }
.login-sub {
  font-size: .88rem; color: var(--muted); margin-bottom: 28px; line-height: 1.7;
}
.pin-wrap { display: flex; gap: 10px; justify-content: center; margin: 0 0 24px; }
.pin-digit {
  width: 54px; height: 66px; border-radius: var(--r);
  border: 2px solid var(--border); background: var(--surface-el);
  color: var(--txt); text-align: center;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  outline: none; transition: all var(--dur) var(--ease);
  -webkit-appearance: none;
}
.pin-digit:focus {
  border-color: var(--acc); transform: scale(1.06);
  box-shadow: 0 0 0 3px var(--acc-glow);
}
.pin-digit.filled { border-color: rgba(245, 230, 66, .4); color: var(--acc); }
@media (max-width: 380px) { .pin-digit { width: 46px; height: 56px; font-size: 1.35rem; } .pin-wrap { gap: 8px; } }

.dsgvo-row { display: flex; align-items: flex-start; gap: 10px; text-align: left; margin-bottom: 18px; }
.dsgvo-row input { margin-top: 3px; flex-shrink: 0; accent-color: var(--acc); width: 16px; height: 16px; }
.dsgvo-row label { font-size: .78rem; color: var(--muted); line-height: 1.6; }
.dsgvo-row a { color: var(--acc); transition: opacity var(--dur); }
.dsgvo-row a:hover { opacity: .75; }

.btn-login {
  width: 100%; padding: 15px;
  background: var(--acc); color: #000;
  border: none; border-radius: var(--r-full);
  font-weight: 700; font-size: .95rem;
  cursor: pointer; font-family: var(--font-body);
  transition: all var(--dur) var(--ease);
  box-shadow: 0 4px 20px var(--acc-glow);
}
.btn-login:hover { background: var(--acc-hover); transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-login:active { transform: scale(.98); }
.login-error { color: var(--danger); font-size: .82rem; margin-top: 12px; font-weight: 500; }

/* ── PRE-EVENT PAGE ────────────────────────────────────────────── */
.pre-page { min-height: 100vh; display: flex; flex-direction: column; }
.pre-header {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 14px 5%; display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(12px);
}
.pre-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
.pre-logo em { color: var(--acc); font-style: normal; }
.pre-content { flex: 1; padding: 32px 5%; max-width: 660px; margin: 0 auto; width: 100%; }
.pre-event-name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; margin: 22px 0 10px; }

.countdown-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px;
  margin: 22px 0; text-align: center;
  box-shadow: var(--shadow-md);
}
.countdown-grid { display: flex; gap: 12px; justify-content: center; margin-bottom: 14px; }
.countdown-item {
  background: var(--surface-el); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 18px; min-width: 72px;
  transition: transform var(--dur) var(--ease);
}
.countdown-item:hover { transform: translateY(-2px); }
.countdown-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--acc); display: block; text-shadow: 0 0 30px var(--acc-glow);
}
.countdown-lbl { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

.pre-info {
  background: var(--surface-el); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 22px; margin: 18px 0;
}
.pre-info-row {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: .88rem;
  transition: background var(--dur);
}
.pre-info-row:last-child { border: none; }
.pre-info-row:hover { background: rgba(255, 255, 255, .02); border-radius: var(--r-sm); }
.pre-info-icon { flex-shrink: 0; width: 22px; }

.timeline-wrap { margin: 22px 0; }
.timeline-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.timeline-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; position: relative; }
.timeline-item:not(:last-child)::after {
  content: ''; position: absolute; left: 13px; top: 42px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--border), transparent);
}
.tl-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1; font-size: .72rem;
  transition: all var(--dur) var(--ease);
}
.tl-dot.done { border-color: var(--grn); background: rgba(61, 223, 168, .12); color: var(--grn); }
.tl-dot.current {
  border-color: var(--acc); background: rgba(245, 230, 66, .1); color: var(--acc);
  animation: tlPulse 2s infinite;
}
@keyframes tlPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(245, 230, 66, .3); } 50% { box-shadow: 0 0 0 8px rgba(245, 230, 66, 0); } }
.tl-label { font-size: .9rem; font-weight: 500; }
.tl-label.done { color: var(--grn); }
.tl-label.pending { color: var(--muted); }

/* ── GALLERY ───────────────────────────────────────────────────── */
.g-header {
  background: rgba(20, 20, 24, .85); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 14px 4%; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 30; gap: 12px;
}
.g-logo { font-family: var(--font-display); font-size: 1rem; font-weight: 800; }
.g-logo em { color: var(--acc); font-style: normal; }
.g-title { font-size: .9rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 220px; }
.g-meta { font-size: .7rem; color: var(--muted); margin-top: 2px; }
.g-actions { display: flex; gap: 6px; flex-shrink: 0; }

.expiry-bar {
  padding: 10px 4%; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; font-size: .82rem; flex-wrap: wrap;
}
.expiry-bar.warn { background: rgba(255, 92, 124, .06); border-bottom: 1px solid rgba(255, 92, 124, .12); }
.expiry-bar.ok { background: rgba(61, 223, 168, .04); border-bottom: 1px solid rgba(61, 223, 168, .08); }
.exp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 600;
}
.exp-badge.warn { background: rgba(255, 92, 124, .12); color: var(--danger); }
.exp-badge.ok { background: rgba(61, 223, 168, .1); color: var(--grn); }

.g-toolbar {
  padding: 10px 4%; display: flex; align-items: center;
  justify-content: space-between; gap: 10px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.tabs { display: flex; gap: 3px; background: var(--surface); border-radius: var(--r); padding: 3px; }
.tab {
  padding: 7px 14px; border-radius: var(--r-sm); font-size: .8rem;
  font-weight: 600; border: none; background: none; color: var(--muted);
  cursor: pointer; transition: all var(--dur) var(--ease); font-family: var(--font-body);
}
.tab.active { background: var(--surface-el); color: var(--txt); }
.tab:hover:not(.active) { color: var(--txt); }

.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; padding: 3px; }
@media (min-width: 500px)  { .g-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 800px)  { .g-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1100px) { .g-grid { grid-template-columns: repeat(6, 1fr); } }

.g-item {
  aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer;
  border-radius: 2px;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.g-item:hover img { transform: scale(1.08); }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent 50%);
  opacity: 0; transition: opacity var(--dur);
}
.g-item:hover::after { opacity: 1; }
.g-item-actions {
  position: absolute; top: 0; right: 0; padding: 6px;
  display: flex; gap: 4px; opacity: 0; z-index: 2;
  transition: opacity var(--dur);
}
.g-item:hover .g-item-actions { opacity: 1; }
.g-action {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0, 0, 0, .55); backdrop-filter: blur(8px);
  border: none; color: #fff; font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur); cursor: pointer;
}
.g-action:hover { background: rgba(0, 0, 0, .8); transform: scale(1.1); }
.g-action.active { color: var(--danger); }
.wm-text {
  position: absolute; bottom: 6px; right: 8px;
  font-size: .5rem; color: rgba(255, 255, 255, .4);
  pointer-events: none; font-weight: 600; letter-spacing: .04em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .9);
}

/* ── LIGHTBOX ──────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .96);
  z-index: 100; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overscroll-behavior: contain;
  backdrop-filter: blur(20px);
}
.lb-img {
  max-width: 94vw; max-height: 76vh; object-fit: contain;
  border-radius: var(--r-sm); box-shadow: var(--shadow-lg);
}
.lb-bar {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; flex-wrap: wrap; justify-content: center; padding: 0 16px;
}
.lb-info { color: var(--muted); font-size: .78rem; width: 100%; text-align: center; margin-top: 6px; }
.lb-btn {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1);
  color: #fff; padding: 9px 18px; border-radius: var(--r-full);
  font-size: .82rem; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); transition: all var(--dur) var(--ease);
}
.lb-btn:hover { background: rgba(255, 255, 255, .16); transform: translateY(-1px); }
.lb-btn.fav { color: var(--danger); border-color: rgba(255, 92, 124, .3); }
.lb-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1);
  color: #fff; width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.05rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--dur);
}
.lb-close:hover { background: rgba(255, 255, 255, .18); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1);
  color: #fff; width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; transition: all var(--dur) var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.lb-nav:hover { background: rgba(255, 255, 255, .18); transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 12px; } .lb-next { right: 12px; }

/* ── SHARE MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: var(--overlay);
  z-index: 200; display: flex; align-items: flex-end; justify-content: center;
  backdrop-filter: blur(8px);
}
@media (min-width: 600px) { .modal-overlay { align-items: center; padding: 20px; } }
.share-sheet {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%; max-width: 440px; padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: sheetUp .3s var(--ease);
}
@keyframes sheetUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (min-width: 600px) { .share-sheet { border-radius: var(--r-xl); animation: sheetIn .25s var(--ease); } }
@keyframes sheetIn { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.sheet-handle { width: 36px; height: 4px; background: var(--border-light); border-radius: 2px; margin: 0 auto 20px; }
.share-prev { width: 100%; height: 140px; object-fit: cover; border-radius: var(--r); margin-bottom: 16px; }
.share-link-row { display: flex; gap: 8px; margin-bottom: 16px; }
.share-link-inp {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 9px 12px; color: var(--muted);
  font-size: .78rem; font-family: monospace; outline: none;
  transition: border-color var(--dur);
}
.share-link-inp:focus { border-color: var(--acc); }
.share-apps { display: flex; gap: 8px; justify-content: center; margin-bottom: 18px; flex-wrap: wrap; }
.share-app {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 12px 16px; background: var(--surface-el);
  border: 1px solid var(--border); border-radius: var(--r);
  cursor: pointer; transition: all var(--dur) var(--ease); min-width: 68px;
}
.share-app:hover { border-color: var(--acc); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.share-app span { font-size: 1.5rem; }
.share-app p { font-size: .68rem; color: var(--muted); margin: 0; }

/* ── EXTENSION PAGE ────────────────────────────────────────────── */
.ext-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245, 230, 66, .03), transparent);
}
.ext-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); width: 100%; max-width: 480px;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.ext-top { padding: 32px; text-align: center; border-bottom: 1px solid var(--border); }
.ext-pkgs { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.ext-pkg {
  background: var(--surface-el); border: 2px solid var(--border);
  border-radius: var(--r-lg); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; transition: all var(--dur) var(--ease);
}
.ext-pkg:hover, .ext-pkg.sel {
  border-color: var(--acc); background: rgba(245, 230, 66, .04);
  box-shadow: 0 0 0 1px var(--acc-glow);
}
.ext-pkg.hl { border-color: rgba(245, 230, 66, .3); }
.pkg-l { font-weight: 700; font-size: .94rem; }
.pkg-d { font-size: .78rem; color: var(--muted); margin-top: 3px; }
.pkg-badge {
  font-size: .66rem; background: var(--acc); color: #000;
  padding: 2px 8px; border-radius: var(--r-full); font-weight: 700; margin-left: 6px;
}
.pkg-price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--acc); }

/* ── PROMO BANNER ──────────────────────────────────────────────── */
.promo-banner {
  margin: 20px 4% 28px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(245, 230, 66, .04) 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px; text-align: center;
}
.promo-banner h4 { font-size: .9rem; margin-bottom: 5px; }
.promo-banner p { font-size: .76rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }

/* ── FOTO SHARE PAGE ───────────────────────────────────────────── */
.foto-wrap {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 20px;
}
.foto-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  max-width: 580px; width: 100%; box-shadow: var(--shadow-lg);
}
.foto-img { width: 100%; display: block; }
.foto-body { padding: 20px; }
.foto-event { font-size: .78rem; color: var(--muted); margin-bottom: 4px; }

/* ── PWA BANNER ────────────────────────────────────────────────── */
.pwa-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  z-index: 50; transform: translateY(100%); transition: transform .35s var(--ease);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .4);
}
.pwa-banner.show { transform: translateY(0); }
.pwa-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--acc), #ff9f43);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.pwa-text strong { font-size: .88rem; display: block; }
.pwa-text span { font-size: .74rem; color: var(--muted); }

/* ── TOAST ─────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  background: var(--surface-el); border: 1px solid rgba(245, 230, 66, .2);
  border-radius: var(--r-full); padding: 10px 20px;
  font-size: .84rem; font-weight: 600; color: var(--acc);
  z-index: 999; white-space: nowrap;
  animation: toastIn .25s var(--ease); pointer-events: none;
  box-shadow: var(--shadow-md);
}
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ── EMPTY STATE ───────────────────────────────────────────────── */
.empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 64px 24px; text-align: center; color: var(--muted);
}
.empty-ico { font-size: 2.8rem; opacity: .25; margin-bottom: 14px; }
.empty h3 { font-size: .9rem; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.empty p { font-size: .82rem; max-width: 260px; line-height: 1.7; }

/* ── ALERTS ────────────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--r); font-size: .84rem; font-weight: 500; }
.alert-err { background: rgba(255, 92, 124, .08); border: 1px solid rgba(255, 92, 124, .18); color: var(--danger); }
.alert-ok { background: rgba(61, 223, 168, .06); border: 1px solid rgba(61, 223, 168, .16); color: var(--grn); }
