#screen-celebrate, #screen-sad {
  background: var(--cream);
  justify-content: flex-start;
  overflow-y: auto;
  z-index: 5;
  height: 100vh;
  height: 100dvh;
  min-height: auto;
}

.response-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5vh;
  padding-bottom: 20px;
}

.response-text {
  text-align: center;
  padding: 20px 24px 12px;
}

.response-text h2 {
  font-family: 'Playfair Display', serif;
  color: var(--purple-deep);
  font-size: clamp(1.3rem, 4.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 4px;
}

.response-text p {
  font-family: 'Quicksand', sans-serif;
  color: var(--purple-mid);
  font-size: clamp(0.85rem, 2.8vw, 1.1rem);
  font-weight: 500;
}

.add-to-calendar-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.75rem, 2.2vw, 0.9rem);
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.03em;
}

.add-to-calendar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(107,63,160,0.4);
}

.response-image {
  width: 100%;
  max-width: 900px;
  position: relative;
}

.response-image img {
  width: 100%;
  height: auto;
  display: block;
}

.response-image video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.response-image video.playing { opacity: 1; }

.confetti-piece {
  position: fixed;
  top: -20px;
  z-index: 10;
  pointer-events: none;
}

.rain-drop {
  position: fixed;
  width: 2px; height: 14px;
  background: linear-gradient(180deg, rgba(155,109,215,0.25), transparent);
  border-radius: 50%;
  pointer-events: none;
  animation: rainDrop 2.5s ease-in-out infinite;
}
