:root {
  --bg: #0b1622;
  --bg-alt: #101f30;
  --card: #142a40;
  --card-locked: #0f1c2b;
  --gold: #d9b063;
  --gold-soft: #e8caa0;
  --green: #2f6b52;
  --green-soft: #7aa07c;
  --red-soft: #be6659;
  --text: #eef2f5;
  --text-dim: #9fb0c0;
  --danger: #d9705f;
  --ok: #4caf82;
  --radius: 14px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 50% -10%, #16324a 0%, transparent 55%),
    radial-gradient(circle at 50% 120%, #12291f 0%, transparent 45%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0 0 8px; }

.wrap { max-width: 960px; margin: 0 auto; padding: 24px 20px 80px; }

.view { min-height: 100vh; }
.view[hidden] { display: none !important; }

.reveal { animation: fadeUp 420ms ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sichtbarer Tastatur-Fokus auf allen interaktiven Elementen */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Lade-Indikator (laufende API-Aufrufe) ---------- */
#loadbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 70;
  display: none;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 40% 100%;
  background-repeat: no-repeat;
  animation: loadslide 1.1s linear infinite;
  pointer-events: none;
}
body.api-loading #loadbar { display: block; }
@keyframes loadslide {
  from { background-position: -40% 0; }
  to { background-position: 140% 0; }
}

/* ---------- Schneefall ---------- */
.snow { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.snow span {
  position: absolute;
  top: -5vh;
  color: #fff;
  animation-name: snowfall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes snowfall {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(55vh) translateX(14px); }
  100% { transform: translateY(110vh) translateX(-8px); }
}

/* ---------- Konfetti ---------- */
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 50; overflow: hidden; }
.confetti span {
  position: absolute;
  top: -4vh;
  border-radius: 2px;
  animation-name: confettifall;
  animation-timing-function: ease-in;
  animation-fill-mode: both;
}
@keyframes confettifall {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(112vh) rotate(540deg); opacity: 0.7; }
}

/* ---------- Login ---------- */
#view-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  background: linear-gradient(160deg, var(--card), var(--bg-alt));
  border: 1px solid rgba(217, 176, 99, 0.25);
  border-radius: var(--radius);
  padding: 40px 36px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 80px rgba(217,176,99,0.06);
  position: relative;
  z-index: 2;
}
.brand { text-align: center; margin-bottom: 28px; }
.brand-star {
  color: var(--gold);
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 18px rgba(217,176,99,0.55);
}
.brand h1 { font-size: 24px; color: var(--gold-soft); }
.brand-sub { color: var(--text-dim); font-size: 14px; margin-top: 6px; }
.brand-dates {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 10px;
}

#login-form { display: flex; flex-direction: column; gap: 16px; }
#login-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-dim); }
#login-form input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 15px;
}
#login-form input:focus { outline: none; border-color: var(--gold); }
#login-form button, .cert-name-editor button, .demo-bar button {
  background: linear-gradient(160deg, var(--gold), #b9863f);
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  color: #201200;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
#login-form button:hover, .cert-name-editor button:hover, .demo-bar button:hover { filter: brightness(1.08); }
.error { color: var(--danger); font-size: 13px; }
.demo-hint { text-align: center; color: var(--text-dim); font-size: 12px; margin-top: 22px; }
.inline-link {
  background: none; border: none; padding: 0;
  color: var(--gold); font-size: 12px; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.inline-link:hover { color: var(--gold-soft); }
#login-form button:disabled { opacity: 0.6; cursor: default; }

/* ---------- Toast ---------- */
#toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(10px);
  background: #1b2f45;
  border: 1px solid rgba(217,176,99,0.5);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
  z-index: 60;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  max-width: min(90vw, 420px);
  text-align: center;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(217,176,99,0.18);
  position: sticky;
  top: 0;
  background: rgba(11, 22, 34, 0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
}
.topbar-brand { font-family: var(--serif); color: var(--gold-soft); font-size: 18px; }
.topbar-progress { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-dim); }
.progress-track { width: 140px; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.1); overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--gold)); width: 0%; transition: width 400ms ease; }
.link-btn { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 14px; white-space: nowrap; }
.link-btn:hover:not(:disabled) { color: var(--gold-soft); }
.link-btn:disabled { opacity: 0.3; cursor: default; }
.day-nav { display: flex; gap: 4px; }

@media (max-width: 480px) {
  .topbar { flex-wrap: wrap; justify-content: space-between; padding: 10px 16px; row-gap: 6px; }
  .topbar-brand { font-size: 15px; }
  /* Fortschritt in eigene, volle Zeile — Topbar bleibt bei zwei kompakten Zeilen */
  .topbar-progress { flex-basis: 100%; justify-content: center; order: 3; }
  .progress-track { width: 120px; }
  /* Demo-Leiste kompakt: Erklaertext ausblenden, Buttons reichen */
  .demo-bar-label { display: none; }
  .demo-bar { padding: 8px 12px; justify-content: center; }
}

/* ---------- Demo bar ---------- */
.demo-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  background: rgba(217,176,99,0.1);
  border-bottom: 1px dashed rgba(217,176,99,0.35);
  padding: 10px 24px;
  font-size: 13px;
  color: var(--gold-soft);
}
.demo-bar button { padding: 6px 10px; font-size: 12px; }
#demo-day-label { font-weight: 600; min-width: 60px; text-align: center; }

/* ---------- Tages-Banner (Orientierung + Haupt-CTA) ---------- */
.today-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(217,176,99,0.07);
  border: 1px solid rgba(217,176,99,0.3);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.today-banner p { margin: 0; font-size: 15px; line-height: 1.5; }
.today-banner .primary { margin-top: 0; white-space: nowrap; }
.today-banner:empty { display: none; }

/* ---------- Tiles ---------- */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) { .tiles-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 460px) { .tiles-grid { grid-template-columns: repeat(3, 1fr); } }

.tile {
  aspect-ratio: 1 / 1;
  perspective: 700px;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  background: none;
  position: relative;
}
/* Goldener Schein hinter freigeschalteten Tueren — wird beim Aufklappen sichtbar */
.tile:not(.locked) {
  background: radial-gradient(circle at 50% 50%, rgba(217,176,99,0.5), rgba(217,176,99,0.08) 70%);
}
.tile-face {
  width: 100%; height: 100%;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--card), var(--bg-alt));
  border: 1px solid rgba(217,176,99,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  position: relative;
  transform-origin: left center;
  transition: box-shadow 200ms ease, transform 150ms ease;
}
/* Dezente Farbvariation wie bei einem echten Adventskalender */
.tile:nth-child(4n+2):not(.locked) .tile-face { border-color: rgba(122,160,124,0.5); }
.tile:nth-child(4n+3):not(.locked) .tile-face { border-color: rgba(190,102,89,0.5); }
.tile:hover:not(.locked) .tile-face { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217,176,99,0.15); }
.tile-day { font-family: var(--serif); font-size: 22px; color: var(--gold-soft); }
.tile-icon { font-size: 18px; opacity: 0.85; }
.tile-badge { position: absolute; top: 6px; right: 8px; font-size: 12px; color: var(--ok); }

/* Heutiges Türchen: klarer Anker für den wichtigsten Klick des Tages */
.tile.today .tile-face {
  border-color: var(--gold);
  animation: todayPulse 2.4s ease-in-out infinite;
}
@keyframes todayPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(217,176,99,0); }
  50% { box-shadow: 0 0 22px rgba(217,176,99,0.45); }
}
.tile-today-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(160deg, var(--gold), #b9863f);
  color: #201200;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 20px;
  z-index: 3;
  pointer-events: none;
}

/* Bereits geöffnete Türchen stehen sichtbar "einen Spalt offen" */
.tile.viewed .tile-face {
  transform: rotateY(-18deg);
  border-color: rgba(217,176,99,0.18);
}
.tile.viewed:hover .tile-face { transform: rotateY(-18deg) translateY(-2px); }
.tile.viewed .tile-day, .tile.viewed .tile-icon { opacity: 0.75; }
.tile.viewed.today .tile-face { border-color: var(--gold); }

.tile.locked { cursor: default; }
.tile.locked .tile-face { background: var(--card-locked); border-color: rgba(255,255,255,0.06); }
.tile.locked .tile-day, .tile.locked .tile-icon { opacity: 0.3; }
.tile.locked .lock-icon { position: absolute; font-size: 16px; opacity: 0.5; }

.tile.shake .tile-face { animation: shake 320ms ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.tile.opening .tile-face {
  animation: doorOpen 550ms ease forwards;
  box-shadow: 0 0 40px rgba(217,176,99,0.5);
}
@keyframes doorOpen {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(-100deg); opacity: 0.35; }
}

/* ---------- Content card ---------- */
.content-card {
  background: linear-gradient(160deg, var(--card), var(--bg-alt));
  border: 1px solid rgba(217,176,99,0.25);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.content-type-label {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}
.content-card h2 { font-size: 22px; color: var(--gold-soft); }
.content-card p { line-height: 1.6; color: var(--text); }

.video-placeholder {
  aspect-ratio: 16/9;
  background: repeating-linear-gradient(135deg, #1c3350, #1c3350 10px, #17293f 10px, #17293f 20px);
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold-soft);
}
.vp-icon { font-size: 36px; opacity: 0.9; }
.vp-label { font-size: 13px; color: var(--text-dim); }

.case-block { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }
.case-block div span.label { display: block; font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }

.prompt-box {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(217,176,99,0.3);
  border-radius: 10px;
  padding: 16px;
  font-family: 'SFMono-Regular', Consolas, Menlo, monospace;
  font-size: 14px;
  white-space: pre-wrap;
  color: var(--gold-soft);
  margin: 12px 0;
}
.copy-btn { background: none; border: 1px solid var(--gold); color: var(--gold); border-radius: 6px; padding: 6px 12px; font-size: 13px; cursor: pointer; }
.copy-btn:hover { background: rgba(217,176,99,0.1); }

.tool-block dt { color: var(--gold); font-size: 12px; text-transform: uppercase; margin-top: 12px; }
.tool-block dd { margin: 4px 0 0; color: var(--text); }

.myth-card { perspective: 1000px; margin-top: 16px; cursor: pointer; min-height: 160px; }
.myth-inner { position: relative; width: 100%; height: 100%; min-height: 160px; transition: transform 500ms; transform-style: preserve-3d; }
.myth-card.flipped .myth-inner { transform: rotateY(180deg); }
.myth-face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 10px; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.myth-front { background: rgba(217, 112, 95, 0.12); border: 1px solid rgba(217,112,95,0.4); }
.myth-back { background: rgba(76, 175, 130, 0.12); border: 1px solid rgba(76,175,130,0.4); transform: rotateY(180deg); }
.myth-hint { text-align: center; color: var(--text-dim); font-size: 12px; margin-top: 10px; }

.checklist { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; background: rgba(255,255,255,0.03); padding: 10px 14px; border-radius: 8px; }
.checklist input { margin-top: 3px; }

.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.quiz-option {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
}
.quiz-option:hover { border-color: var(--gold); }
.quiz-option.correct { border-color: var(--ok); background: rgba(76,175,130,0.15); }
.quiz-option.incorrect { border-color: var(--danger); background: rgba(217,112,95,0.15); }
.quiz-option[disabled] { cursor: default; }
.quiz-feedback { margin-top: 14px; padding: 12px 14px; border-radius: 8px; background: rgba(255,255,255,0.04); font-size: 14px; }

/* ---------- Rechner ---------- */
.calc { display: flex; flex-direction: column; gap: 16px; margin-top: 18px; }
.calc label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-dim); }
.calc input[type="number"] {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text);
  font-size: 15px;
  max-width: 140px;
}
.calc input[type="number"]:focus { outline: none; border-color: var(--gold); }
.calc input[type="range"] { accent-color: var(--gold); max-width: 320px; }
.calc-result {
  background: rgba(217,176,99,0.08);
  border: 1px solid rgba(217,176,99,0.35);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.calc-big { font-family: var(--serif); font-size: 32px; color: var(--gold-soft); }
.calc-sub { color: var(--text-dim); font-size: 14px; margin-top: 6px; }
.calc-note { color: var(--text-dim); font-size: 12px; }

/* ---------- Impuls / Zitat ---------- */
.quote-block {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--gold-soft);
  margin: 24px 0 12px;
  padding: 0 8px;
}
.quote-mark { color: var(--gold); font-size: 30px; }
.quote-attribution { color: var(--text-dim); font-size: 13px; }
.quote-reflection {
  margin-top: 18px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(217,176,99,0.06);
  border-radius: 0 8px 8px 0;
}

/* ---------- Team-Umfrage ---------- */
.poll-row { margin-top: 14px; }
.poll-row-head { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 5px; color: var(--text); }
.poll-row.mine .poll-row-head { color: var(--gold-soft); font-weight: 600; }
.poll-bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.08); overflow: hidden; }
.poll-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-soft));
  border-radius: 6px;
  transition: width 600ms ease;
}
.poll-row.mine .poll-bar-fill { background: linear-gradient(90deg, #b9863f, var(--gold)); }
.poll-total { color: var(--text-dim); font-size: 12px; margin-top: 14px; }
.poll-note { color: var(--text-dim); font-size: 13px; margin-top: 18px; }

.already-passed {
  background: rgba(76,175,130,0.1);
  border: 1px solid rgba(76,175,130,0.4);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 6px 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}
.already-passed .primary { margin-top: 0; }
.already-passed small { flex-basis: 100%; color: var(--text-dim); }

.final-question { margin-bottom: 22px; }
.final-question h3 { font-size: 16px; color: var(--text); }
.final-submit { margin-top: 10px; }

.result-box { text-align: center; padding: 20px; }
.result-score { font-size: 40px; font-family: var(--serif); color: var(--gold-soft); }
.result-pass { color: var(--ok); }
.result-fail { color: var(--danger); }

button.primary {
  background: linear-gradient(160deg, var(--gold), #b9863f);
  border: none; border-radius: 8px; padding: 11px 20px; color: #201200; font-weight: 600; cursor: pointer; font-size: 14px;
  margin-top: 16px;
}
button.primary:hover { filter: brightness(1.08); }

/* ---------- Abschluss-Navigation unter dem Tagesinhalt ---------- */
.day-bottom-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}
.day-bottom-nav .primary { margin-top: 0; }
.ghost-btn {
  background: none;
  border: 1px solid rgba(217,176,99,0.5);
  color: var(--gold-soft);
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 14px;
  cursor: pointer;
}
.ghost-btn:hover { background: rgba(217,176,99,0.08); }
@media (max-width: 480px) {
  .day-bottom-nav { flex-direction: column-reverse; }
  .day-bottom-nav button { width: 100%; }
}

/* ---------- Certificate ---------- */
.cert-name-editor {
  display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; margin: 20px 0;
  position: relative; z-index: 2;
}
.cert-name-editor label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--text-dim); }
.cert-name-editor input {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  padding: 9px 12px; color: var(--text); font-size: 14px; min-width: 220px;
}

.certificate {
  background: #fdf8ef;
  color: #26160a;
  border: 3px double var(--gold);
  border-radius: 10px;
  padding: 48px 48px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.certificate::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(185, 134, 63, 0.4);
  border-radius: 6px;
  pointer-events: none;
}
.certificate .cert-star { color: var(--gold); font-size: 26px; }
.certificate h2 { font-family: var(--serif); font-size: 30px; margin: 12px 0 4px; letter-spacing: 0.04em; }
.certificate .cert-course { color: #6b5637; font-size: 14px; }
.certificate .cert-name { font-size: 30px; font-family: var(--serif); margin: 20px 0 14px; color: #7a4a12; }
.cert-seal {
  width: 72px; height: 72px;
  margin: 22px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ecd29a, var(--gold) 55%, #a5772f);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 30px;
  box-shadow: 0 3px 10px rgba(122, 74, 18, 0.4), inset 0 0 0 3px rgba(255,255,255,0.35);
}
.cert-signatures {
  display: flex; justify-content: space-around; gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-size: 14px; color: #3d2c17;
}
.cert-signatures div { min-width: 170px; }
.cert-signatures small { color: #8a7454; }
.cert-sig-line { display: block; border-top: 1px solid #b09468; margin-bottom: 6px; }
.certificate .cert-meta { color: #555; font-size: 13px; margin-top: 26px; }

@media print {
  .no-print, .snow, .confetti, #loadbar { display: none !important; }
  body { background: #fff; }
  .certificate { box-shadow: none; margin: 0; }
}

/* Siegel und Zierrahmen auch im Ausdruck farbig */
.certificate, .cert-seal {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  .snow, .confetti { display: none; }
  .progress-fill, .poll-bar-fill, #toast { transition: none; }
  .tile.today .tile-face {
    animation: none;
    box-shadow: 0 0 16px rgba(217,176,99,0.35);
  }
  #loadbar {
    animation: none;
    background: var(--gold);
    background-size: 100% 100%;
  }
}
