:root {
  color-scheme: dark;
  --bg: #141018;
  --bg-card: #1c1624;
  --surface: #241e2e;
  --text: #f4f0f8;
  --muted: #9a92a8;
  --avulot: #a88bf0;
  --avulot-soft: #d4c4f8;
  --chance: #f0b848;
  --chance-soft: rgba(240, 184, 72, 0.15);
  --mood: #e87898;
  --mood-soft: rgba(232, 120, 152, 0.15);
  --border: rgba(168, 139, 240, 0.12);
  --shadow: 0 26px 68px rgba(168, 139, 240, 0.12);
  --radius: 18px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body:
    "SF Pro Text",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 40% at 15% 20%, var(--mood-soft), transparent 50%),
    radial-gradient(ellipse 50% 45% at 85% 30%, var(--chance-soft), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(168, 139, 240, 0.12), transparent 50%),
    var(--bg);
}

.page {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 76px;
}

.hero {
  margin-bottom: 32px;
  padding: 40px 36px 44px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.chance-dice {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.chance-dice span {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--chance);
}

.chance-dice span:nth-child(2) {
  background: linear-gradient(145deg, var(--surface), var(--mood-soft));
  color: var(--mood);
  transform: rotate(8deg);
}

.chance-dice span:nth-child(3) {
  color: var(--avulot-soft);
  transform: rotate(-6deg);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--avulot);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}

.brand-title .avulot {
  color: var(--avulot-soft);
  font-style: italic;
}

.brand-title .chance {
  color: var(--chance);
  font-weight: 700;
}

.brand-title .mood {
  display: block;
  margin-top: 6px;
  font-size: 0.42em;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mood);
}

h1 {
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 14px;
  max-width: 52ch;
  font-size: 0.97rem;
  color: var(--muted);
}

.updated {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--chance);
  background: var(--chance-soft);
  border-radius: 999px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.highlights li:nth-child(1) {
  border-bottom: 3px solid var(--avulot);
}

.highlights li:nth-child(2) {
  border-bottom: 3px solid var(--chance);
}

.highlights li:nth-child(3) {
  border-bottom: 3px solid var(--mood);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--text);
}

.highlights span {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.card {
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.card--wide {
  grid-column: 1 / -1;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--avulot);
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.card p + p {
  margin-top: 10px;
}

a {
  color: var(--avulot-soft);
  font-weight: 650;
}

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

.footer {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(168, 139, 240, 0.15), rgba(232, 120, 152, 0.1));
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--avulot-soft);
}

@media (max-width: 720px) {
  .highlights,
  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 32px 0 56px;
  }

  .hero {
    padding: 30px 22px 34px;
  }
}
