:root {
  --black: #050206;
  --maroon: #2b0f1c;
  --pink: #d81159;
  --pink-bright: #ff2f78;
  --cream: #f5eeda;
  --cream-dim: #c9c0a8;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: radial-gradient(ellipse at 50% 20%, var(--maroon) 0%, var(--black) 60%);
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 100px;
  animation: fadeIn 1.4s ease-out both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-wrap {
  position: relative;
  width: min(220px, 42vw);
  margin-bottom: 12px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.logo {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(216, 17, 89, 0.55));
  animation: glowPulse 3.2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(216, 17, 89, 0.45)); }
  50% { filter: drop-shadow(0 0 34px rgba(255, 47, 120, 0.85)); }
}

.logo-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 17, 89, 0.35) 0%, rgba(216, 17, 89, 0) 70%);
  z-index: 1;
  animation: ringPulse 3.2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.headline {
  margin: 18px 0 8px;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  font-weight: 800;
  text-transform: uppercase;
}

.headline .line {
  display: block;
}

.headline .accent {
  color: var(--pink-bright);
  text-shadow: 0 0 24px rgba(255, 47, 120, 0.55);
}

.date {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 4px;
  font-size: 1.1rem;
  color: var(--cream-dim);
  flex-wrap: wrap;
  justify-content: center;
}

.strike {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
}

.strike::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: var(--pink-bright);
  transform: rotate(-4deg);
  box-shadow: 0 0 8px rgba(255, 47, 120, 0.7);
}

.date-note {
  font-style: italic;
  opacity: 0.85;
}

.tagline {
  margin: 14px 0 28px;
  max-width: 420px;
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 18px;
}

.social {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(245, 238, 218, 0.25);
  color: var(--cream);
  transition: all 0.25s ease;
}

.social svg {
  width: 18px;
  height: 18px;
}

.social:hover {
  color: var(--pink-bright);
  border-color: var(--pink-bright);
  box-shadow: 0 0 16px rgba(255, 47, 120, 0.45);
  transform: translateY(-3px);
}

.footer {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245, 238, 218, 0.4);
  z-index: 1;
  letter-spacing: 0.04em;
}

@media (max-width: 420px) {
  .headline {
    font-size: 2.4rem;
  }
  .tagline {
    font-size: 0.92rem;
  }
}
