@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #b3b3b3;
  --soft: #999999;
  --line: rgba(255,255,255,0.16);
  --line-strong: rgba(255,255,255,0.28);
  --panel: rgba(255,255,255,0.03);
  --panel-2: rgba(255,255,255,0.02);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--fg);
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  text-shadow:
    0 0 8px rgba(255,255,255,0.35),
    0 0 14px rgba(120,180,255,0.25),
    0 0 22px rgba(120,180,255,0.15);
}

body.flicker { transform: translateX(1px); }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.045);
  opacity: 0;
  pointer-events: none;
}

body.flicker::after { opacity: 1; }

a {
  color: var(--soft);
  text-decoration: none;
}

a:hover { color: var(--fg); }

.wrap {
  width: min(1100px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 30px 0 60px;
}

.hero {
  text-align: left;
  margin-bottom: 30px;
}

.kicker {
  font-family: Oswald, sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 12px;
}

h1, h2, h3 {
  margin: 0;
  font-family: Oswald, sans-serif;
  color: var(--fg);
}

h1 {
  font-size: clamp(34px, 6vw, 58px);
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2 {
  font-size: 26px;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  font-weight: 400;
}

.subtitle {
  margin: 0 0 10px 0;
  max-width: 900px;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  color: var(--fg);
}

.note {
  margin: 0 0 20px 0;
  max-width: 900px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.section {
  margin-top: 30px;
}

.section-title {
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.section-title p {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.mood-box,
.card,
.warning {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );
  border: 1px solid var(--line);
}

.mood-box {
  padding: 18px;
}

.mood-box p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.warning-list,
.news-stack {
  display: grid;
  gap: 16px;
}

.card-inner,
.warning-inner {
  padding: 18px;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.dot::before {
  content: "•";
  margin-right: 6px;
}

.headline {
  margin-bottom: 10px;
}

.reason,
.summary,
.verdict {
  margin: 10px 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.label {
  font-family: Oswald, sans-serif;
  color: var(--fg);
  margin-right: 6px;
}

.metrics {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  border: 1px solid var(--line-strong);
  padding: 5px 9px;
  font-family: Oswald, sans-serif;
  font-size: 11px;
  color: var(--muted);
}

.news-actions {
  margin-top: 16px;
}

.news-read-btn {
  display: inline-block;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  padding: 8px 14px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.news-read-btn:hover {
  color: #f0f0f0;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}

.warning-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.confidence {
  font-family: Oswald, sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.warning p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
}

.hint {
  margin-top: 10px !important;
  font-family: Oswald, sans-serif !important;
  font-size: 13px !important;
  color: var(--muted) !important;
}

.empty {
  border: 1px dashed var(--line-strong);
  padding: 18px;
  text-align: center;
  color: var(--muted);
  font-family: Oswald, sans-serif;
}

@media (max-width: 720px) {
  .wrap {
    width: calc(100vw - 18px);
  }

  h3 { font-size: 26px; }

  .label {
    display: block;
    margin-bottom: 3px;
  }
}
