* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #2E4BBF 0%, #6A2FB0 100%);
  color: #FFFFFF;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

/* --- Bloc du haut : "The end of time is / [date]" --- */

.hero {
  text-align: center;
  margin-bottom: 60px;
}

.hero__label {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.85;
  margin: 0 0 8px;
}

.hero__date {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

/* --- Bloc du bas : liste des risques --- */

.risks {
  width: 100%;
  max-width: 420px;
}

.risks__title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin: 0 0 16px;
  text-align: center;
}

.risks__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.risk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 18px;
}

.risk__score {
  font-weight: 700;
}

.risk__score small {
  font-weight: 400;
  opacity: 0.7;
  font-size: 13px;
}