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

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

.container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.initials {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 20px;
  min-width: 100px;
}

.time-box span {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
}

.time-box small {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer {
  margin-top: 25px;
  font-size: 1rem;
  opacity: 0.9;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  body {
    padding: 20px;
  }

  .container {
    width: 100%;
    padding: 30px 20px;
    border-radius: 16px;
  }

  .initials {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.05rem;
    margin-bottom: 25px;
  }

  .countdown {
    gap: 15px;
  }

  .time-box {
    flex: 1 1 45%;
    min-width: unset;
    padding: 18px 10px;
  }

  .time-box span {
    font-size: 2rem;
  }

  .footer {
    font-size: 0.95rem;
  }
}

.love-button {
  margin-top: 20px;
  padding: 12px 26px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff5f9e, #ff8dc7);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.love-button:active {
  transform: scale(0.95);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Hearts */
.heart {
  position: fixed;
  bottom: -30px;
  font-size: 24px;
  pointer-events: none;
  animation: floatUp 4s linear forwards;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-110vh) translateX(var(--x)) scale(1.4);
    opacity: 0;
  }
}

