@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to top right, #ffd6e0, #fcb1b1);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.wish-container {
  background: #fff;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  text-align: center;
  max-width: 500px;
  width: 90%;
  animation: fadeIn 1.5s ease-in-out;
}

h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: #d63384;
}

h1 span {
  display: block;
  font-size: 2rem;
  color: #6f42c1;
}

.photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin: 1rem 0;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.countdown-box {
  background: #ffe6f0;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 15px;
}

.countdown {
  font-size: 1.5rem;
  color: #d6336c;
  font-weight: bold;
  margin-top: 0.5rem;
}

.message {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #444;
}

.song-link {
  font-weight: bold;
  font-size: 1.1rem;
  color: #0077cc;
  text-decoration: none;
  border-bottom: 2px dashed #0077cc;
  padding: 4px 8px;
  border-radius: 10px;
  background-color: #e6f2ff;
  display: inline-block;
  transition: 0.3s ease;
}

.song-link:hover {
  background-color: #cce6ff;
  color: #00509e;
  border-color: #00509e;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
