:root {
  --heart: #ff4d6d;
  --glow: rgba(255,77,109,0.45);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #050505;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* HEART BACKGROUND */
.heart-bg {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 520px;
  height: 520px;
  fill: var(--heart);
  opacity: 0.15;
  filter: blur(45px);
  animation: heartbeat 2s infinite;
  z-index: 0;
}

@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  20% { transform: scale(1.2); }
  40% { transform: scale(1); }
  60% { transform: scale(1.15); }
}

/* CONTAINER */
.container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 5rem;
}

.now {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  color: var(--heart);
  text-shadow: 0 0 20px var(--glow);
}

.tagline {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 2rem;
}

/* TIMER */
.timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.timer span {
  font-size: 2rem;
}

.timer label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: #777;
}

.timer-note {
  font-size: 0.75rem;
  color: #888;
}

/* STORY */
.story {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.chapter {
  line-height: 1.9;
  font-size: 0.95rem;
  color: #ddd;
}

.chapter .date {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.6rem;
}

.chapter.highlight {
  border-left: 2px solid var(--heart);
  padding-left: 1.5rem;
}

.future {
  text-align: center;
}

.emphasis {
  font-size: 1.1rem;
  color: #fff;
}

.whisper {
  font-style: italic;
  color: #aaa;
}

/* FOOTER + MESSAGE */
footer {
  margin-top: 6rem;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

.message-box {
  margin-top: 3rem;
}

.message-box h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--heart);
}

.message-box p {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.message-box form {
  max-width: 400px;
  margin: 0 auto;
}

.message-box input,
.message-box textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.8rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.message-box textarea {
  resize: none;
  height: 120px;
}

.message-box button {
  background: var(--heart);
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
}
