* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  max-width: 420px;
}

h1 {
  color: #e6005c;
  margin-bottom: 10px;
}

.subtitle {
  color: #555;
  margin-bottom: 30px;
}

button {
  background: #ff3366;
  color: white;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 51, 102, 0.4);
}

button:hover {
  background: #e6005c;
  transform: scale(1.05);
}

.note {
  margin-top: 20px;
  color: #777;
  font-size: 14px;
}

/* Floating hearts */
.hearts span {
  position: absolute;
  bottom: -50px;
  font-size: 20px;
  animation: float 6s linear infinite;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-110vh) scale(1.5);
    opacity: 0;
  }
}

.hiddenUrl {
  display: none;
  text-decoration: none;
}

.hidden {
  display: none;
  color: #e6005c;
}

.countdown {
  font-size: 18px;
  font-weight: bold;
  color: #e6005c;
  margin-top: 10px;
}

.countdown-text {
  margin-top: 15px;
  color: #555;
}

.fade-out {
  animation: fadeOut 0.6s forwards;
}

.fade-in {
  animation: fadeIn 0.6s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
