:root {
  --bg-color: #080808;
  --surface-color: #111111;
  --surface-border: #222222;
  --surface-border-hover: #333333;
  --text-primary: #f0f0f0;
  --text-muted: #8c8c8c;
  --text-faint: #555555;
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.2);
  --accent-blue: #0070f3;
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: 48px 48px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.radial-glow {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(120, 119, 198, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100vh;
  justify-content: space-between;
  box-sizing: border-box;
}

/* ── Top Navigation ────────────────────────────── */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--surface-border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: block;
}

.brand-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-domain {
  color: #777777;
  font-weight: 500;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.02);
  padding: 5px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}

.status-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent-emerald);
}

/* ── Hero Content ──────────────────────────────── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.badge-tag {
  display: inline-block;
}

.tag-code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.02);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  display: inline-block;
}

.headline {
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheadline {
  font-size: clamp(13px, 1.6vw, 14.5px);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.55;
  font-weight: 400;
}

/* ── Clean Notification Card ───────────────────── */
.notify-card {
  border: 1px solid var(--surface-border);
  background: var(--surface-color);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.6);
}

.notify-top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.notify-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notify-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  display: inline-block;
}

.notify-title-small {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.notify-timer-status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.notify-form {
  max-width: 100%;
}

.input-wrapper {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--surface-border);
  border-radius: 6px;
  padding: 4px 4px 4px 14px;
  transition: border-color 0.2s ease;
}

.input-wrapper:focus-within {
  border-color: #ffffff;
}

.input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 8px 0;
}

.input-wrapper input::placeholder {
  color: var(--text-faint);
}

.input-wrapper button {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 9px 18px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.input-wrapper button:hover {
  background-color: #e5e5e5;
}

.input-wrapper button:disabled {
  background-color: #262626;
  color: var(--text-muted);
  cursor: default;
}

.form-feedback {
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 8px;
  min-height: 16px;
}

.form-feedback.success {
  color: var(--accent-emerald);
}

/* ── Minecraft Countdown Card ─────────────────── */
.minecraft-countdown-card {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #222222;
  box-shadow:
    inset -3px -3px 0 rgba(0,0,0,0.5),
    inset 3px 3px 0 rgba(255,255,255,0.05),
    0 16px 36px -12px rgba(0, 0, 0, 0.8);
  image-rendering: pixelated;
}

/* Grass top strip */
.grass-top {
  height: 12px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect x='0' y='0' width='4' height='4' fill='rgba(0,0,0,0.15)'/%3E%3Crect x='4' y='4' width='4' height='4' fill='rgba(0,0,0,0.1)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #5c9c2a 0%, #4a8c1f 60%, #3a7015 100%);
  border-bottom: 2px solid #2d5a0e;
}

/* Dirt strip below grass */
.dirt-layer {
  height: 6px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8'%3E%3Crect x='0' y='0' width='8' height='4' fill='rgba(0,0,0,0.12)'/%3E%3Crect x='8' y='4' width='8' height='4' fill='rgba(0,0,0,0.18)'/%3E%3Crect x='4' y='2' width='4' height='3' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #7a4a22 0%, #6b3e1a 100%);
  border-bottom: 2px solid #1a0e04;
}

/* Main card body */
.countdown-inner {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Crect x='0' y='0' width='8' height='8' fill='rgba(0,0,0,0.08)'/%3E%3Crect x='8' y='8' width='8' height='8' fill='rgba(0,0,0,0.08)'/%3E%3C/svg%3E"),
    #0c0c0c;
  padding: 18px 20px 22px 20px;
}

/* COMING SOON heading */
.mc-coming-soon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.mc-pixel-text {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(16px, 2.6vw, 22px);
  color: #ffffff;
  letter-spacing: 0.05em;
  text-shadow:
    2px 2px 0 #000000,
    -1px -1px 0 rgba(0,0,0,0.7);
}

.mc-pixel-text.mc-green {
  color: #5cca2a;
  text-shadow:
    2px 2px 0 #1e4508,
    -1px -1px 0 rgba(0,0,0,0.7);
}

.mc-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.mc-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #888888;
  letter-spacing: 0.06em;
}

.mc-status {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #5cca2a;
  letter-spacing: 0.04em;
}

.mc-blink {
  display: inline-block;
  animation: mcBlink 1s step-end infinite;
}

@keyframes mcBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.countdown-item {
  flex: 1;
  background: #0f0f0f;
  border: 1px solid #242424;
  border-radius: 6px;
  padding: 8px 6px 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset -2px -2px 0 rgba(0,0,0,0.5),
    inset 2px 2px 0 rgba(255,255,255,0.03);
}

/* ── Calendar Page Slider Styles ──────────────── */
.calendar-slide-box {
  position: relative;
  width: 100%;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1e1e1e 0%, #151515 49%, #050505 51%, #101010 100%);
  border-radius: 4px;
  border: 1px solid #2c2c2c;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 3px 6px rgba(0,0,0,0.5);
}

/* Center split crease line for flip calendar card */
.calendar-slide-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 3;
  pointer-events: none;
}

.mc-digit {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

.mc-digit-active {
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}

.mc-digit-incoming {
  transform: translateY(-100%);
  opacity: 0;
  z-index: 2;
}

.mc-slide-out-down {
  animation: calendarSlideOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mc-slide-in-down {
  animation: calendarSlideIn 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1) forwards;
}

@keyframes calendarSlideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes calendarSlideIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Minecraft pixel font on numbers */
.mc-num {
  font-family: 'Press Start 2P', monospace !important;
  font-size: clamp(16px, 2.8vw, 22px) !important;
  color: #ffffff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow:
    2px 2px 0 #000000,
    -1px -1px 0 rgba(0,0,0,0.6);
  letter-spacing: 0.04em;
}

/* Minecraft label font */
.mc-label {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 7.5px !important;
  letter-spacing: 0.06em;
  color: #5cca2a;
  margin-top: 8px;
  text-shadow: 1px 1px 0 #1a4a00;
}

.mc-sep {
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  color: #444444;
  user-select: none;
  padding-bottom: 16px;
}

/* ── Terminal Card ─────────────────────────────── */
.terminal-card {
  border: 1px solid var(--surface-border);
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.7);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--surface-border);
  font-family: var(--font-mono);
  font-size: 11px;
}

.window-buttons {
  display: flex;
  gap: 6px;
}

.win-btn {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.win-close { background-color: #ff5f56; }
.win-min { background-color: #ffbd2e; }
.win-max { background-color: #27c93f; }

.terminal-title {
  color: var(--text-muted);
}

.terminal-version {
  color: var(--text-faint);
}

.terminal-body {
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.log-line {
  color: var(--text-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.3s ease, background-color 0.2s ease;
  line-height: 1.4;
  padding: 4px 8px;
  border-left: 2px solid transparent;
  border-radius: 4px;
}

.log-line.completed {
  opacity: 1;
  border-left-color: rgba(16, 185, 129, 0.35);
}

.log-line.active,
.log-line.running-line {
  opacity: 1;
  background: rgba(249, 115, 22, 0.06);
  border-left-color: #f97316;
}

.log-prefix {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.log-prefix.ok {
  color: var(--accent-emerald);
}

.log-prefix.running {
  color: #f97316;
  text-shadow: 0 0 10px rgba(249, 115, 22, 0.45);
}

.log-prefix.sync {
  color: #38bdf8;
}

/* Orange RUN radar indicator */
.run-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.run-core {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #f97316;
  box-shadow: 0 0 6px #f97316;
}

.run-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid #f97316;
  box-sizing: border-box;
  animation: runPing 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes runPing {
  0% {
    transform: scale(0.5);
    opacity: 0.95;
  }
  80%, 100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.sync-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #38bdf8;
  margin-right: 4px;
  animation: pulse 1.5s infinite;
}

.log-key {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  min-width: 105px;
  flex-shrink: 0;
}

.log-desc {
  color: #ffffff;
  font-size: 11.5px;
}

.log-duration {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: #777777;
  min-width: 48px;
  text-align: right;
  flex-shrink: 0;
}

.log-duration.dur-live {
  color: #f97316;
  font-weight: 600;
}

.blinking-dots {
  animation: blinkDots 1.4s infinite;
}

@keyframes blinkDots {
  0%, 20% { opacity: 0; }
  40% { opacity: 0.5; }
  60%, 100% { opacity: 1; }
}

/* ── Redesigned Emerald Green Progress Section ───── */
.progress-container {
  padding: 14px 18px 12px 18px;
  background: rgba(16, 185, 129, 0.02);
  border-top: 1px solid var(--surface-border);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-label-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse 1.8s infinite;
}

.progress-title-green {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #10b981;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
}

.progress-stage-chip {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.progress-metrics-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-elapsed {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.progress-percentage.green {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  min-width: 40px;
  text-align: right;
}

.progress-track {
  height: 7px;
  background: #141414;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid #222222;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
  position: relative;
}

/* Vibrant Emerald Green Progress Fill with animated diagonal stripes */
.progress-fill.green {
  height: 100%;
  border-radius: 9999px;
  background: 
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.15) 0px,
      rgba(255, 255, 255, 0.15) 8px,
      transparent 8px,
      transparent 16px
    ),
    linear-gradient(90deg, #047857 0%, #10b981 50%, #34d399 100%);
  background-size: 24px 24px, 100% 100%;
  animation: progressStripesMove 1.2s linear infinite;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.6);
  width: 0%;
  transition: width 0.25s ease-out;
}

@keyframes progressStripesMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 24px 0, 0 0; }
}

.progress-telemetry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 8px;
}

.telem-key {
  color: #666666;
  margin-right: 4px;
}

.telem-val-green {
  color: #10b981;
  font-weight: 600;
}

/* ── Footer ────────────────────────────────────── */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-size: 12px;
  border-top: 1px solid var(--surface-border);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-meta {
  color: var(--text-faint);
  font-family: var(--font-mono);
}

/* ── Responsive rules ──────────────────────────── */
@media (max-width: 640px) {
  .container {
    padding: 20px 14px 28px 14px;
    gap: 18px;
  }

  .top-nav {
    padding-bottom: 12px;
  }

  .brand-text {
    font-size: 14px;
  }

  .brand-icon {
    width: 22px;
    height: 22px;
  }

  .status-indicator {
    padding: 4px 8px;
  }

  .status-label {
    font-size: 9.5px;
  }

  .hero-content {
    gap: 14px;
  }

  .headline {
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.2;
  }

  .subheadline {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .notify-card {
    padding: 12px 14px;
  }

  .notify-top-line {
    margin-bottom: 8px;
  }

  .notify-title-small {
    font-size: 12px;
  }

  .notify-timer-status {
    font-size: 9px;
  }

  .input-wrapper {
    padding: 3px 3px 3px 10px;
    gap: 6px;
  }

  .input-wrapper input {
    font-size: 12px;
    padding: 6px 0;
  }

  .input-wrapper button {
    padding: 7px 12px;
    font-size: 11px;
  }

  .grass-top {
    height: 10px;
  }

  .dirt-layer {
    height: 5px;
  }

  .countdown-inner {
    padding: 12px 12px 16px 12px;
  }

  .mc-coming-soon-title {
    gap: 8px;
    margin-bottom: 6px;
  }

  .mc-pixel-text {
    font-size: 14px;
  }

  .mc-meta-row {
    margin-bottom: 10px;
  }

  .mc-badge {
    font-size: 8.5px;
  }

  .mc-status {
    font-size: 8px;
  }

  .countdown-grid {
    gap: 5px;
  }

  .mc-sep {
    display: none;
  }

  .countdown-item {
    padding: 6px 4px 8px 4px;
  }

  .calendar-slide-box {
    height: 40px;
  }

  .mc-num {
    font-size: 14px !important;
  }

  .mc-label {
    font-size: 6.5px !important;
    margin-top: 6px;
  }

  .terminal-header {
    padding: 6px 10px;
    font-size: 10px;
  }

  .terminal-body {
    padding: 8px 10px;
    font-size: 10.5px;
    gap: 4px;
  }

  .log-prefix {
    min-width: 38px;
    font-size: 9.5px;
  }

  .log-key {
    font-size: 9.5px;
  }

  .log-desc {
    font-size: 10px;
  }

  .progress-container {
    padding: 10px 12px 10px 12px;
  }

  .progress-title-green {
    font-size: 10px;
  }

  .progress-stage-chip {
    font-size: 8.5px;
    padding: 1px 4px;
  }

  .progress-elapsed {
    font-size: 9.5px;
  }

  .progress-percentage.green {
    font-size: 11px;
    min-width: 32px;
  }

  .progress-track {
    height: 5px;
  }

  .progress-telemetry {
    font-size: 8.5px;
    gap: 6px;
    margin-top: 8px;
    padding-top: 6px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
    font-size: 10.5px;
  }

  .footer-links {
    gap: 12px;
  }
}
