:root {
  --bg: #100b17;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-border: rgba(255, 255, 255, 0.16);
  --text: #f7ecff;
  --muted: #cbbbd8;
  --accent: #d9b8ff;
  --accent-2: #f3d38b;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(217, 184, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(243, 211, 139, 0.12), transparent 28%),
    linear-gradient(145deg, #08050d, var(--bg) 45%, #1c1028);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow-x: hidden;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.85) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,0.45) 1px, transparent 1.5px);
  background-size: 110px 110px, 180px 180px;
  background-position: 10px 20px, 50px 80px;
  opacity: 0.28;
}

main {
  width: min(920px, 100%);
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  text-shadow: 0 18px 45px var(--shadow);
}

.subtitle {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.card {
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.11), var(--panel));
  border-radius: 28px;
  padding: clamp(24px, 5vw, 42px);
  box-shadow: 0 28px 80px var(--shadow);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
}

.moon-wrap {
  display: flex;
  justify-content: center;
}

.moon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff9df, #e7d5a6 55%, #8f7b57 100%);
  box-shadow:
    0 0 28px rgba(243, 211, 139, 0.45),
    0 0 90px rgba(217, 184, 255, 0.24);
  position: relative;
  overflow: hidden;
}

.moon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(16, 11, 23, 0.86);
  transform: translateX(var(--shadow-offset, -45%));
  box-shadow: 0 0 24px rgba(16, 11, 23, 0.4);
}

.moon-info h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.date {
  color: var(--accent-2);
  margin: 0 0 18px;
  font-size: 1rem;
}

.description {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.12rem;
  margin: 0 0 22px;
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.95rem;
}

footer {
  text-align: center;
  color: rgba(247, 236, 255, 0.52);
  margin-top: 22px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  body {
    padding: 22px;
    align-items: flex-start;
  }

  .card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .details {
    justify-content: center;
  }
}

