/* ── Dark full-bleed gradient background ──
   Swap the gradient below for a background-image later if desired. */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
  color: #e0e0e0;
  min-height: 100vh;
}

#app {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px;
}

h1 {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #c8b4ff;
}

/* ── Prediction card ── */
.prediction {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 28px;
  text-align: center;
}

.prediction .question {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9e9eb8;
  margin-bottom: 12px;
}

.prediction .probability {
  font-size: 5rem;
  font-weight: 700;
  color: #c8b4ff;
  line-height: 1;
  margin-bottom: 8px;
}

.prediction .probability span {
  font-size: 2rem;
  vertical-align: super;
}

.prediction .verdict {
  font-style: italic;
  font-size: 1.1rem;
  color: #b0b0c8;
  margin-bottom: 20px;
}

.prediction .reasoning {
  font-size: 0.95rem;
  color: #8888a8;
  margin-bottom: 20px;
  line-height: 1.5;
}

.prediction .sources-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7878a0;
  margin-bottom: 8px;
  text-align: left;
}

.prediction .sources-list {
  list-style: none;
  padding: 0;
}

.prediction .sources-list li {
  margin-bottom: 4px;
}

.prediction .sources-list a {
  color: #a0a0d0;
  text-decoration: none;
  font-size: 0.9rem;
}

.prediction .sources-list a:hover {
  color: #c8b4ff;
  text-decoration: underline;
}

/* ── Loading / empty states ── */
#app p {
  text-align: center;
  color: #606080;
}

/* ── Disclaimer footer ── */
#disclaimer {
  max-width: 680px;
  margin: 40px auto 24px;
  padding: 0 24px;
  text-align: center;
  font-size: 0.5rem;
  line-height: 1.5;
  color: #6a6a85;
  font-style: italic;
}

#viewcount {
  max-width: 680px;
  margin: 8px auto 0;
  text-align: center;
  font-size: 0.5rem;
  color: #6a6a85;
  font-style: italic;
}
