:root {
  color-scheme: dark;
  --bg: #07111f;
  --panel: rgba(13, 23, 40, 0.96);
  --panel-2: rgba(10, 19, 33, 0.94);
  --line: rgba(120, 170, 255, 0.18);
  --text: #edf4ff;
  --muted: #9eb0c8;
  --accent: #4ad6ff;
  --positive: #80f2b4;
  --negative: #ff8f9b;
  --warn: #ffcb6b;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: radial-gradient(circle at top, rgba(27, 57, 92, 0.32), transparent 55%), var(--bg); color: var(--text); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { padding: 12px; }

a { color: inherit; text-decoration: none; }

.watch-shell {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.watch-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px 2px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.meta {
  text-align: right;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.time-line {
  color: var(--muted);
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}

.pill.ok { color: var(--positive); border-color: rgba(128, 242, 180, 0.3); }
.pill.warn { color: var(--warn); border-color: rgba(255, 203, 107, 0.3); }
.pill.bad { color: var(--negative); border-color: rgba(255, 143, 155, 0.3); }
.pill.neutral { color: var(--accent); border-color: rgba(74, 214, 255, 0.3); }

.hero-card, .card {
  background: linear-gradient(180deg, rgba(19, 31, 53, 0.96), rgba(10, 18, 31, 0.96));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.34);
}

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

.price {
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 2px 0 8px;
}

.subline {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.card-value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.card-detail {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.force-card {
  padding-bottom: 12px;
}

.force-gauge {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
}

.force-gauge svg {
  width: min(100%, 300px);
  height: 150px;
  overflow: visible;
}

.force-arc {
  fill: none;
  stroke-width: 16;
  stroke-linecap: round;
  opacity: 0.96;
}

.force-arc.bull {
  stroke: var(--positive);
}

.force-arc.bear {
  stroke: var(--accent);
}

.force-needle {
  stroke: #eaff5f;
  stroke-width: 5;
  stroke-linecap: round;
  transform-origin: 110px 108px;
  transition: transform 420ms ease;
  filter: drop-shadow(0 0 8px rgba(234, 255, 95, 0.45));
}

.force-hub {
  fill: #eaff5f;
  stroke: #07111f;
  stroke-width: 3;
}

.force-axis {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.force-readout {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 2px;
}

.force-readout b {
  font-size: 22px;
  line-height: 1;
}

.force-readout span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.error {
  color: var(--negative);
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
  min-height: 18px;
}

@media (max-width: 520px) {
  body { padding: 10px; }
  .watch-top { padding: 6px 2px 0; }
  h1 { font-size: 21px; }
  .price { font-size: 48px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-value { font-size: 24px; }
}
