html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(70, 95, 160, 0.35), transparent 40%),
    linear-gradient(135deg, #070914, #10172b 50%, #080a12);
  color: #f4efe6;
  font-family: Georgia, "Times New Roman", serif;
}

a,
a:link,
a:visited {
  color: #e8c878;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #fff1b8;
  text-decoration: underline;
  text-decoration-color: #fff1b8;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.lantern-card {
  max-width: 720px;
  padding: 2.5rem;
  border: 1px solid rgba(235, 198, 116, 0.55);
  background: rgba(8, 10, 18, 0.78);
  box-shadow: 0 0 45px rgba(235, 198, 116, 0.14);
  border-radius: 18px;
}

.kicker {
  margin: 0 0 0.75rem;
  color: #e8c878;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

h1 {
  margin: 0 0 1.5rem;
  color: #fff8dc;
  font-size: 2.15rem;
  line-height: 1.15;
  font-weight: normal;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.soft-note {
  color: #d9c99c;
  font-style: italic;
}

.divider {
  margin: 2rem 0;
  color: #e8c878;
  text-align: center;
  font-size: 1.4rem;
}

.signature {
  color: #fff1b8;
  text-align: center;
  font-size: 1.15rem;
}

@media (max-width: 640px) {
  .page {
    align-items: flex-start;
    padding: 1rem;
  }

  .lantern-card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  p {
    font-size: 1rem;
  }
  
  .update-list {
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 1.4rem;
}

.update-list li {
  margin-bottom: 0.45rem;
}
}