/* ============================================================
   Kübik Hafıza — Uzay Gezgini
   Kozmik tema · Three.js + DOM HUD
   ============================================================ */

:root {
  --bg-0: #e7efed;
  --bg-1: #f3f7f6;
  --bg-2: #ffffff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-edge: rgba(15, 158, 142, 0.22);
  --text: #0a1628;
  --text-dim: #3d4f66;
  --accent: #0f9e8e;
  --accent-2: #1a6f9c;
  --accent-warm: #c45c2e;
  --success: #0a6f64;
  --danger: #9a3d2f;
  --shadow-glow: 0 8px 24px rgba(15, 158, 142, 0.18);

  --radius: 18px;
  --radius-sm: 10px;
  --hud-h: 72px;

  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background:
    radial-gradient(circle at 18% 8%, rgba(15, 158, 142, 0.14), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(26, 111, 156, 0.1), transparent 40%),
    linear-gradient(180deg, #f3f7f6 0%, #e7efed 100%);
  color: var(--text);
  font-family: "Figtree", "Segoe UI", system-ui, sans-serif;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------- Soft mint atmosfer ---------- */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1.5px 1.5px at 12% 22%, rgba(15, 158, 142, 0.35), transparent 60%),
    radial-gradient(1px 1px at 34% 78%, rgba(26, 111, 156, 0.3), transparent 60%),
    radial-gradient(2px 2px at 62% 30%, rgba(10, 111, 100, 0.25), transparent 60%),
    radial-gradient(1px 1px at 82% 58%, rgba(15, 158, 142, 0.28), transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 16%, rgba(196, 92, 46, 0.2), transparent 60%);
  background-size: 100% 100%;
  animation: starDrift 80s linear infinite;
  opacity: 0.55;
  pointer-events: none;
}

.starfield::after {
  content: "";
  position: absolute;
  inset: -50%;
  background-image:
    radial-gradient(1px 1px at 12% 15%, #ffffff 50%, transparent 51%),
    radial-gradient(1px 1px at 28% 70%, #ffffff 50%, transparent 51%),
    radial-gradient(1px 1px at 52% 25%, #ffffff 50%, transparent 51%),
    radial-gradient(1px 1px at 67% 88%, #ffffff 50%, transparent 51%),
    radial-gradient(1px 1px at 83% 47%, #ffffff 50%, transparent 51%),
    radial-gradient(1px 1px at 38% 92%, #ffffff 50%, transparent 51%),
    radial-gradient(1px 1px at 5% 60%, #ffffff 50%, transparent 51%),
    radial-gradient(1px 1px at 92% 18%, #ffffff 50%, transparent 51%);
  background-size: 320px 320px;
  opacity: 0.55;
  animation: starDrift 200s linear infinite;
}

@keyframes starDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-80px, -40px, 0); }
}

.nebula {
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(40% 30% at 15% 25%, rgba(15, 158, 142, 0.18), transparent 70%),
    radial-gradient(35% 25% at 80% 70%, rgba(26, 111, 156, 0.12), transparent 70%),
    radial-gradient(30% 25% at 55% 90%, rgba(196, 92, 46, 0.08), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  animation: nebulaPulse 18s ease-in-out infinite alternate;
}

@keyframes nebulaPulse {
  from { opacity: 0.45; transform: scale(1); }
  to   { opacity: 0.75; transform: scale(1.04); }
}

/* ---------- Üst bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  height: var(--hud-h);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 247, 246, 0.75) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 12px;
  border: 1px solid rgba(120, 180, 255, 0.35);
  border-radius: 8px;
  background: rgba(10, 16, 40, 0.7);
  color: #7dd3fc;
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-back:hover {
  background: rgba(56, 189, 248, 0.15);
  color: #0a1628;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
}
.brand__logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}
.brand__sub {
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
}

/* HUD */
.hud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hud__cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  min-width: 90px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hud__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hud__value {
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hud__divider, .hud__total { color: var(--text-dim); font-weight: 500; font-size: 13px; }

.hud__cell--score .hud__value { color: var(--accent); }
.hud__cell--combo .hud__value { color: var(--accent-warm); transition: transform .25s var(--easing); }
.hud__cell--combo.is-bump .hud__value { transform: scale(1.18); }
.hud__cell--lives .hud__value { display: inline-flex; gap: 4px; align-items: center; }

.heart {
  width: 16px;
  height: 14px;
  position: relative;
  display: inline-block;
}
.heart::before, .heart::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 14px;
  border-radius: 6px 6px 0 0;
  background: var(--danger);
  box-shadow: 0 0 8px rgba(255, 102, 128, 0.7);
}
.heart::before { left: 0; transform: rotate(-45deg); transform-origin: bottom right; }
.heart::after  { right: 0; transform: rotate(45deg); transform-origin: bottom left; }
.heart[data-on="false"]::before,
.heart[data-on="false"]::after { background: rgba(120, 130, 170, 0.25); box-shadow: none; }

.hud__cell--timer .hud__value { min-width: 84px; flex-direction: column; align-items: stretch; gap: 4px; }
.timer-bar {
  height: 4px;
  background: rgba(120, 130, 170, 0.18);
  border-radius: 4px;
  overflow: hidden;
}
.timer-bar__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--success), var(--accent));
  transition: width 0.1s linear, background 0.3s var(--easing);
}
.timer-bar__fill.is-low   { background: linear-gradient(90deg, var(--accent-warm), #ff8a3d); }
.timer-bar__fill.is-crit  { background: linear-gradient(90deg, var(--danger), #ff3d3d); animation: critPulse 0.6s ease-in-out infinite alternate; }

@keyframes critPulse {
  from { box-shadow: 0 0 0 rgba(255, 60, 80, 0); }
  to   { box-shadow: 0 0 12px rgba(255, 60, 80, 0.7); }
}

/* ---------- Sahne ---------- */
.stage {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  min-height: 0;
}

.canvas-wrap {
  position: relative;
  width: min(720px, 92vw);
  height: min(560px, calc(100vh - var(--hud-h) - 220px));
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(15, 158, 142, 0.12), transparent 70%),
    #ffffff;
  border: 1px solid var(--panel-edge);
  box-shadow:
    inset 0 0 40px rgba(15, 158, 142, 0.04),
    0 12px 32px rgba(10, 22, 40, 0.08);
  touch-action: none;
}

.canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* ---------- Faz banner (Hatırla! / Şimdi tıkla!) ---------- */
.phase-banner {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--panel-edge);
  border-radius: 999px;
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--easing), transform 0.35s var(--easing);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.1);
}
.phase-banner.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.phase-banner.is-warn { color: var(--danger); border-color: rgba(154, 61, 47, 0.35); box-shadow: 0 8px 20px rgba(154, 61, 47, 0.12); }
.phase-banner.is-good { color: var(--success); border-color: rgba(15, 158, 142, 0.4); }

/* ---------- Sıra paneli ---------- */
.sequence-panel {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.sequence-panel__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.sequence-panel__track {
  display: flex;
  gap: 8px;
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(80, 90, 130, 0.18);
  border: 1px solid rgba(120, 140, 200, 0.22);
  display: grid;
  place-items: center;
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  transition: all 0.3s var(--easing);
  position: relative;
}
.step.is-current {
  background: rgba(15, 158, 142, 0.18);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(15, 158, 142, 0.4);
  animation: stepPulse 1s ease-in-out infinite;
}
.step.is-done {
  background: rgba(74, 222, 128, 0.18);
  border-color: var(--success);
  color: var(--success);
}
.step.is-fail {
  background: rgba(255, 102, 128, 0.18);
  border-color: var(--danger);
  color: var(--danger);
  animation: stepShake 0.4s var(--easing);
}
@keyframes stepPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}
@keyframes stepShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ---------- Hint ---------- */
.hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 90vw;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(243, 247, 246, 0.82) 0%, rgba(10, 22, 40, 0.35) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--easing);
}
.modal.modal--show { opacity: 1; pointer-events: auto; }
.modal[hidden] { display: none; }

.modal__card {
  position: relative;
  width: min(560px, 92vw);
  padding: 36px 32px 28px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--panel-edge);
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.14);
  text-align: center;
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s var(--easing), opacity 0.35s var(--easing);
}
.modal.modal--show .modal__card { transform: translateY(0) scale(1); opacity: 1; }
.modal__card--compact { padding: 28px 28px 22px; max-width: 460px; }

.modal__glow {
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  pointer-events: none;
  background: radial-gradient(60% 80% at 50% 0%, rgba(15, 158, 142, 0.35), transparent 60%);
  mask: linear-gradient(180deg, black 0%, transparent 60%);
  -webkit-mask: linear-gradient(180deg, black 0%, transparent 60%);
}
.modal__glow--success { background: radial-gradient(60% 80% at 50% 0%, rgba(74, 222, 128, 0.4), transparent 60%); }
.modal__glow--danger  { background: radial-gradient(60% 80% at 50% 0%, rgba(255, 102, 128, 0.4), transparent 60%); }
.modal__glow--win     { background: radial-gradient(60% 80% at 50% 0%, rgba(255, 207, 102, 0.5), transparent 60%); }

.modal__title {
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 36px;
  margin: 0 0 6px;
  letter-spacing: 0.06em;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal__title span {
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--text-dim);
  -webkit-text-fill-color: var(--text-dim);
  font-weight: 500;
}
.modal__title--sm { font-size: 26px; margin-bottom: 10px; }

.modal__lead {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
  margin: 14px auto 18px;
  max-width: 460px;
}
.modal__lead--sm { font-size: 13px; margin: 4px auto 14px; }

.modal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
  text-align: left;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}
.modal__list li {
  padding: 10px 12px;
  background: rgba(15, 158, 142, 0.06);
  border-left: 2px solid var(--accent);
  border-radius: 6px;
}
.modal__list span {
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
}

.modal__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  margin: 10px 0 18px;
}
.modal__stat {
  padding: 10px 8px;
  background: rgba(120, 140, 200, 0.08);
  border: 1px solid var(--panel-edge);
  border-radius: 10px;
  font-family: "Syne", "Figtree", system-ui, sans-serif;
}
.modal__stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.modal__stat-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.modal__hint {
  font-size: 12px;
  color: var(--text-dim);
  margin: 14px 0 0;
}

/* Oturum durumu / en iyi skor satırı (intro modal) */
.modal__user-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 10px;
  margin: 8px auto 4px;
  border-radius: 999px;
  background: rgba(15, 158, 142, 0.06);
  border: 1px solid var(--panel-edge);
  font-size: 12px;
  color: var(--text);
}
.modal__user-badge {
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.18);
  color: var(--success);
}
.modal__user-badge--anon { background: rgba(255, 207, 102, 0.16); color: var(--accent-warm); }
.modal__user-name { font-weight: 600; }
.modal__user-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}
.modal__user-link:hover { opacity: 0.85; }
.modal__user-hint { color: var(--text-dim); font-size: 11px; }

.modal__best {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2px 14px;
  margin: 10px auto 4px;
  padding: 10px 16px;
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(15, 158, 142, 0.16) 0%, rgba(26, 111, 156, 0.12) 100%);
  border: 1px solid var(--panel-edge);
  max-width: 360px;
}
.modal__best-label {
  grid-row: 1 / 3;
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-right: 12px;
  border-right: 1px solid var(--panel-edge);
}
.modal__best-value {
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}
.modal__best-meta {
  font-size: 11px;
  color: var(--text-dim);
}

/* Game Over / Win modalda skor kaydı bildirimi */
.modal__score-note {
  margin: 6px auto 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(120, 140, 200, 0.08);
  border: 1px solid var(--panel-edge);
  font-size: 13px;
  color: var(--text);
  max-width: 380px;
}
.modal__score-note--info { color: var(--text-dim); }
.modal__score-note--warn { color: var(--accent-warm); border-color: rgba(255, 207, 102, 0.4); }
.modal__score-note--good {
  color: var(--success);
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.08);
}
.modal__score-note strong {
  color: var(--accent);
  letter-spacing: 0.04em;
}

.modal__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

/* ---------- Buton ---------- */
.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(120, 140, 200, 0.1);
  color: var(--text);
  transition: transform 0.2s var(--easing), background 0.2s var(--easing), box-shadow 0.25s var(--easing);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 158, 142, 0.28);
}
.btn--primary:hover {
  box-shadow: 0 10px 24px rgba(15, 158, 142, 0.36);
}

/* ---------- Toast/Combo bildirimi ---------- */
.toasts {
  position: fixed;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.toast {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--panel-edge);
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  animation: toastIn 0.4s var(--easing), toastOut 0.4s var(--easing) 1.4s forwards;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 18px rgba(15, 158, 142, 0.22);
}
.toast--combo  { color: var(--accent-warm); border-color: rgba(255, 207, 102, 0.4); box-shadow: 0 0 18px rgba(255, 207, 102, 0.4); }
.toast--good   { color: var(--success); }
.toast--bad    { color: var(--danger); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}

/* ---------- Ses butonu ---------- */
.audio-toggle {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--panel-edge);
  color: var(--text);
  font-family: "Syne", "Figtree", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(10, 22, 40, 0.08);
  backdrop-filter: blur(6px);
  transition: opacity 0.2s var(--easing);
}
.audio-toggle:hover { opacity: 0.85; }
.audio-toggle[aria-pressed="false"] { opacity: 0.5; }
.audio-toggle[aria-pressed="false"] .audio-toggle__icon::after {
  content: "";
  position: absolute;
  width: 18px; height: 2px;
  background: currentColor;
  transform: rotate(-30deg);
  border-radius: 2px;
}
.audio-toggle__icon { position: relative; display: inline-block; width: 14px; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .topbar { flex-direction: column; height: auto; gap: 12px; padding: 12px 16px; }
  .brand { align-self: flex-start; }
  .hud { width: 100%; justify-content: space-between; gap: 6px; }
  .hud__cell { min-width: 0; padding: 6px 10px; flex: 1; }
  .hud__cell--lives { flex: 1.1; }
  .hud__cell--timer { flex: 1.4; }
  .hud__value { font-size: 14px; }
  .canvas-wrap { height: min(480px, calc(100vh - 240px)); }
  .modal__title { font-size: 26px; }
  .phase-banner { font-size: 11px; padding: 8px 16px; }
}

@media (max-width: 480px) {
  .brand__logo { height: 18px; }
  .brand__sub { font-size: 10px; }
  .hud__label { font-size: 9px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .starfield, .starfield::after, .nebula { animation: none; }
  .step.is-current, .timer-bar__fill.is-crit { animation: none; }
}
