:root {
  --brand: #020F27;
  --accent: #F26419;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f6f8fb;
  color: #0b1220;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 18px;
}

#app {
  width: min(860px, 96vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  padding: 24px;
  border: 2px solid rgba(2,15,39,.08);
}

header h1 {
  margin: 0 0 4px 0;
  color: var(--brand);
  font-weight: 850;
  letter-spacing: .2px;
}

header .subtitle {
  margin: 0 0 10px 0;
  color: #6b7280;
  font-size: 0.95rem;
}

#badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2,15,39,0.08);
  color: var(--brand);
  margin-bottom: 10px;
}

#text {
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 6px 0 18px;
  white-space: pre-wrap;
}

#options button {
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 12px 18px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
}

#options button:hover {
  background: var(--accent);
}

.small {
  padding: 7px 12px !important;
  font-size: .9rem !important;
  background: #e9edf5 !important;
  color: #0b1220 !important;
}

.small:hover {
  background: #dfe6f2 !important;
}
