 :root {
  --bg: #000000;
  --panel: #0c0c0c;
  --divider: #222;

  --text: #cfcfcf;
  --muted: #666;
  --off: #555;

  /* Status colors */
  --on: #00C853;     /* Bloomberg green */
 --green: #00C853;
  --yellow: #FFC107; /* Amber */
  --red: #D32F2F;    /* Deep red */
--orange: #FF6F00;  /* Strong amber-orange */
--sand: rgba(255,220,160,0.95);
  --blue: rgba(185,225,255,0.75); /* clean electric blue */


}

@keyframes pulse-green {
  0% {
    opacity: 0.85;
    text-shadow:
      0 0 4px rgba(0, 200, 83, 0.35),
      0 0 8px rgba(0, 200, 83, 0.20);
  }

  50% {
    opacity: 1;
    text-shadow:
      0 0 8px rgba(0, 200, 83, 0.75),
      0 0 18px rgba(0, 200, 83, 0.45);
  }

  100% {
    opacity: 0.85;
    text-shadow:
      0 0 4px rgba(0, 200, 83, 0.35),
      0 0 8px rgba(0, 200, 83, 0.20);
  }
}


    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
      background: var(--bg);
      color: var(--text);
    }
.container {
  max-width: 1200px; /* give breathing room */
  margin: 0px auto;
  padding: 0 24px;
}
    h1 {
      font-size: 32px;
    margin-bottom: 10px;
    }

h1 a, #intro a { color: var(--text); text-decoration:underline }
h1 a:hover, #intro a:hover { text-decoration:none }

    h2 {
      margin: 0 0 12px;
      font-size: 18px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #eee;
text-align:center
    }

    .section {
      background: var(--panel);
      border: 1px solid var(--divider);
      padding: 20px 24px;
      margin-bottom: 24px;
    }

.section.mass-tracker {
border:none;
margin-bottom:0;
padding:0
}

    .divider {
      margin: 32px 0;
      border-top: 1px solid var(--divider);
    }

    .row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid #111;
    }

    .row:last-child {
      border-bottom: none;
    }

    .label {
      font-size: 15px;
    }

    .value {
      font-family: monospace;
      font-size: 15px;
      color: #eee;
    }

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

    .icon {
  font-size: 18px;
  color: var(--off);
}

/* ON = alive, glowing, breathing */
.icon.on {
  color: var(--on);
  animation: pulse-green 2.8s ease-in-out infinite;
}

/* Flat semantic states */
.icon.yellow { color: var(--yellow); }
.icon.red { color: var(--red); }

.green { color: var(--on); }
.red { color: var(--red); }
.yellow { color: var(--yellow); }
.orange { color: var(--orange); }
.sand {color: var(--sand) }
.muted {color: var(--muted) }
.blue { color: var(--blue); }



    .money {
      color: var(--muted);
      font-size: 13px;
      margin-left: 6px;
    }

    .all-go {
      margin-top: 12px;
      color: var(--muted);
      text-align: center;
    }

  .all-go.green, .money.green {
      color: var(--green)!important;
    }

    .aready {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 20px;
      letter-spacing: 0.05em;
    }

    .aready span {
      font-size: 14px;
      color: var(--muted);
      margin-left: 8px;
    }

canvas {
  width: 100%;
  max-width: 100%;
  background: #000;
  border: 1px solid var(--divider);
}

.chart-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.chart-wrapper canvas {
  display: block;
}

.mass-row {
  margin: 16px 0 20px;
}

.mass-bar {
  position: relative;
  height: 14px;
  background: #111;
  border: 1px solid #222;
  overflow: hidden;
}

.mass-fill {
  height: 100%;
  width: var(--pct);
  background: var(--on);
  box-shadow:
    0 0 6px rgba(0, 200, 83, 0.6),
    0 0 14px rgba(0, 200, 83, 0.3);
  transition: width 0.6s ease;
}

.mass-row.complete .mass-fill {
  box-shadow:
    0 0 8px rgba(0, 200, 83, 0.9),
    0 0 20px rgba(0, 200, 83, 0.5);
}

.mass-label {
  margin-top: 6px;
 
  font-size: 15px;
  color: var(--text);
}

.mass-pct {
  color: var(--on);
  margin-right: 6px;
}

.mass-desc {
  color: var(--muted);
}

#intro p { line-height:125% }

@media (max-width: 600px) {
#intro p { text-align:left }
#intro p.indent { padding-left:15px;border-left: 1px solid var(--muted)}

}
.note .indent { margin-left:0 }

.note { color: var(--muted); margin:0 10px 0 10px }
.note p { font-size:14px; line-height:150% }
.note sup { font-size:15px }
.note a, .section p a, .readmore p a { color: var(--muted); }
.note a:hover, .section p a:hover, .readmore p a:hover { text-decoration:none }

.section p, .section li, .readmore p, .readmore li { font-size:15px;color: var(--muted);line-height:125% }

.readmore {
  margin-bottom: 40px;
}

.readmore-toggle {
  display: block;
  margin: 8px auto 16px;
  background: none;
  border: none;
  color: #FFF;
  font-size: 13px;
  cursor: pointer;
  padding: 6px 0 0;
  text-align: center;
}


/* collapsed state */
.readmore-content {
  max-height: 4.5em; /* ~3 lines */
  overflow: hidden;
  position: relative;
  transition: max-height 0.35s ease;
}

/* expanded */
.readmore.open .readmore-content {
  max-height: 100vh;
}

/* subtle fade at bottom when collapsed */
.readmore-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5em;
  background: linear-gradient(to bottom, rgba(0,0,0,0), var(--panel));
}

.readmore.open .readmore-content::after {
  display: none;
}

.readmore-toggle {
  background: none;
  border: none;
  color: #FFF
  font-size: 13px;
  cursor: pointer;
  padding: 6px 0 0;
}

.readmore-toggle:hover {
  color: var(--text);
}

.row.vol-data {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.row.vol-data .label {
  width: 100%;

}

.row.vol-data .value {
  width: 100%;

}
.ops-state {
  display: flex;
  width: 100%;line-height:125%
}

.ops-state div {
  flex: 1;
  padding: 10px;
  text-align: center;
  color: #000;
}

.ops-state .off {
  background: var(--muted);
}

.ops-state .monitor {
  background: var(--yellow);
  font-weight: 600;
}

.ops-state .on {
  background: var(--green);
  font-weight: 600;
}

.mkt-indicator .off { color:var(--muted)!important }

div#vol-mon-head {
    margin: 70px 0 10px 0; }

.row.mkt-indicator {
  flex-wrap: wrap;
}
.row.mkt-indicator > div:last-child {
  flex: 0 0 100%;
  margin-top: 6px;
}

.mkt-indicator .value {
  display: none;
}

.mkt-indicator .value.active {
  display: inline-flex; /* or flex */
}

.mkt-indicator .value i {
  margin-right: 6px;
}

/* ===== Glance Dashboard ===== */

.glance-grid {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr; /* 20% | 60% | 20% */
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}


.glance-card {
  background: var(--panel);
  border: 1px solid var(--divider);
  padding: 28px 24px;
  text-align: center;
}

.glance-card--secondary {
  opacity: 0.75;
  transform: scale(0.94);
  transition: all 0.3s ease;
}

.glance-card:not(.glance-card--secondary) .glance-value {
  font-size: 48px;
  letter-spacing: 0.08em;
}
.glance-card:not(.glance-card--secondary) {
  border: 1px solid #333;
  box-shadow:
    0 0 30px rgba(0, 200, 83, 0.08),
    inset 0 0 40px rgba(0, 200, 83, 0.03);
}


.glance-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.glance-value {
  font-size: 34px;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Indicator line */
.glance-indicator {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.4;
}


/* Reuse your icon system */
.glance-indicator .icon {
  font-size: 16px;
}

/* Responsive: collapse to vertical stack */
@media (max-width: 900px) {
  .glance-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Glance section: full-width band, no panel chrome ===== */
.section--glance {
  background: transparent;
  border: none;
  padding: 0;
}

#regime-section .value {
  text-transform: uppercase;
}

.version { text-align:center;font-size:12px;margin-bottom:50px}

#regime-summary { margin-top:14px; font-size:15px }

.footer {
  margin: 60px 0 40px 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
a { color:#FFF }
a:hover { text-decoration:none }
.footer a { color: var(--muted); }

.top-nav {
  width: 100%;
  padding: 12px 0;
  background: #111;
  border-bottom: 1px solid #222;
  text-align: center;
  font-size: 0.9rem;
}

.nav-inner a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.2s ease;
}

.nav-inner a:hover {
  color: #fff;
}

.nav-sep {
  color: #555;
}

.top-nav a.active {
  color: #00d084;
  font-weight: 700;
}

