:root {
    --mz-bg: #0a1628;
    --mz-bg-2: #060d1a;
  
    --mz-cyan: #37d6ff;
    --mz-magenta: #ff3bd4;
  
    --mz-text: rgba(255,255,255,.92);
    --mz-muted: rgba(255,255,255,.72);
    --mz-soft: rgba(255,255,255,.08);
    --mz-soft-2: rgba(255,255,255,.12);
  
    --mz-radius-xl: 18px;
    --mz-shadow: 0 18px 70px rgba(0, 0, 0, .55);
  }
  
  * { box-sizing: border-box; }
  html, body { height: 100%; }
  
  body.mz-maint {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--mz-text);
    background: radial-gradient(1000px 520px at 15% 20%, rgba(55, 214, 255, 0.12), transparent 60%),
                radial-gradient(1000px 520px at 85% 75%, rgba(255, 59, 212, 0.10), transparent 60%),
                linear-gradient(180deg, var(--mz-bg) 0%, var(--mz-bg-2) 100%);
    overflow-x: hidden;
  }
  
  .mz-wrap {
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 36px 18px;
  }
  
  .mz-shell {
    width: 100%;
    max-width: 980px;
    position: relative;
  }
  
  /* .mz-bg {
    position: absolute;
    inset: -40px -20px;
    background:
      radial-gradient(700px 260px at 20% 10%, rgba(55, 214, 255, .12), transparent 55%),
      radial-gradient(700px 260px at 80% 90%, rgba(255, 59, 212, .10), transparent 55%);
    filter: blur(0px);
    pointer-events: none;
  } */
  
  .mz-card {
    position: relative;
    border-radius: var(--mz-radius-xl);
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    box-shadow: var(--mz-shadow);
    padding: 26px;
    overflow: hidden;
  }
  
  .mz-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(600px 260px at 20% 25%, rgba(55, 214, 255, 0.10), transparent 60%),
      radial-gradient(600px 260px at 80% 75%, rgba(255, 59, 212, 0.08), transparent 60%);
    pointer-events: none;
  }
  
  .mz-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    z-index: 1;
  }
  
  .mz-brand { display: inline-flex; align-items: center; text-decoration: none; }
  .mz-logo { height: 34px; width: auto; display: block; }
  
  .mz-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255,255,255,.90);
    border: 1px solid rgba(55, 214, 255, .20);
    background: linear-gradient(135deg, rgba(55,214,255,.14), rgba(255,59,212,.10));
  }
  
  .mz-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--mz-cyan), var(--mz-magenta));
    box-shadow: 0 0 16px rgba(55,214,255,.35);
  }
  
  .mz-title {
    position: relative;
    z-index: 1;
    font-size: 36px;
    line-height: 1.12;
    margin: 10px 0 10px;
    letter-spacing: -0.02em;
  }
  
  .mz-subtitle {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--mz-muted);
    font-size: 15.5px;
    line-height: 1.55;
    max-width: 62ch;
  }
  
  .mz-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
  }
  
  .mz-panel {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(10, 22, 40, .55);
    overflow: hidden;
  }
  
  .mz-panel-title {
    padding: 14px 14px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(55,214,255,.75);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  
  .mz-panel-body {
    padding: 14px;
  }
  
  .mz-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,.10);
  }
  
  .mz-row:last-of-type {
    border-bottom: none;
  }
  
  .mz-label {
    font-size: 13px;
    color: rgba(255,255,255,.70);
  }
  
  .mz-value {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,.92);
  }
  
  .mz-countdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
  }
  
  .mz-count {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    padding: 10px 10px 9px;
    text-align: center;
  }
  
  .mz-count-num {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
  }
  
  .mz-count-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.66);
    margin-top: 3px;
  }
  
  .mz-progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
    margin-top: 14px;
  }
  
  .mz-progress-bar {
    display: block;
    height: 100%;
    width: 45%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(55,214,255,.75), rgba(255,59,212,.70));
    /* filter: saturate(1.05); */
    animation: mzBar 2.2s ease-in-out infinite;
    will-change: transform;
  }
  
  @keyframes mzBar {
    from { transform: translateX(-110%); }
    to   { transform: translateX(330%); }
  }
  
  .mz-help {
    margin: 0 0 12px;
    color: rgba(255,255,255,.74);
    font-size: 14.5px;
    line-height: 1.55;
  }
  
  .mz-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }
  
  .mz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,.10);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
  }
  
  .mz-btn:hover {
    transform: translateY(-1px);
  }
  
  .mz-btn-primary {
    background: linear-gradient(135deg, rgba(55,214,255,.22), rgba(255,59,212,.18));
    border-color: rgba(55,214,255,.25);
    color: rgba(255,255,255,.95);
  }
  
  .mz-btn-primary:hover {
    border-color: rgba(55,214,255,.40);
  }
  
  .mz-btn-ghost {
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.86);
  }
  
  .mz-btn-ghost:hover {
    border-color: rgba(255,255,255,.18);
  }
  
  .mz-arrow {
    opacity: .75;
  }
  
  .mz-meta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,.10);
    color: rgba(255,255,255,.70);
    font-size: 12.5px;
    line-height: 1.45;
  }
  
  .mz-meta-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 0;
  }
  
  .mz-meta-ic { width: 18px; }
  
  .mz-divider {
    height: 1px;
    background: linear-gradient(90deg,
      rgba(55,214,255,.18),
      rgba(255,59,212,.18),
      rgba(55,214,255,.18)
    );
    margin: 18px 0 14px;
    opacity: .9;
  }
  
  .mz-footer {
    /* width: 100%; */
    /* position: relative; */
    /* z-index: 1; */
    margin-top: 26px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,.62);
    font-size: 12.5px;
  }
  
  .mz-dot { opacity: .7; }
  .mz-footer-link {
    color: rgba(255,255,255,.78);
    text-decoration: none;
  }
  .mz-footer-link:hover { text-decoration: underline; }
  
  /* Responsive */
  @media (max-width: 860px) {
    .mz-grid {
      grid-template-columns: 1fr;
    }
    .mz-title {
      font-size: 32px;
    }
  }
  