.breakup-screen {
  min-height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 25px;
}

.breakup-screen h1 {
  font-size: clamp(42px, 9vw, 90px);
  animation: fadeUp 1.5s ease forwards;
}

.breakup-screen p {
  margin-top: 18px;
  font-size: 20px;
  opacity: .85;
  animation: fadeUp 2.2s ease forwards;
}

.broken-heart {
  font-size: 90px;
  margin-bottom: 20px;
  animation: breakPulse 1.8s infinite ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px) scale(.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes breakPulse {
  0%, 100% {
    transform: scale(1) rotate(-4deg);
  }
  50% {
    transform: scale(1.15) rotate(4deg);
  }
}