@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #ffc3e1 0%, #ffb3d9 50%, #ff9ec7 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
}

.big-title {
  font-family: 'Pacifico', cursive;
  font-size: 4rem;
  color: white;
  text-shadow:
    0 5px 20px rgba(255, 20, 147, 0.5),
    0 10px 40px rgba(255, 20, 147, 0.3);
  margin-bottom: 30px;
  animation: pulse 2s infinite;
  transform: translateZ(50px);
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 50px;
  border-radius: 30px;
  box-shadow:
    0 20px 60px rgba(255, 105, 180, 0.4),
    0 30px 80px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in;
  width: 100%;
  max-width: 800px;
  transform: translateZ(30px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: #ff1493;
  margin-bottom: 25px;
  animation: pulse 2s infinite;
  text-shadow: 0 4px 8px rgba(255, 20, 147, 0.3);
  transform: translateZ(20px);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.image-container {
  margin: 25px 0;
  animation: slideIn 1s ease-out 0.3s both;
  transform: translateZ(15px);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#photo {
  max-width: 100%;
  max-height: 250px;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(255, 105, 180, 0.3),
    0 15px 50px rgba(0, 0, 0, 0.2);
  border: 5px solid #ffb3d9;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 30px;
}

button {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 35px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 15px rgba(0, 0, 0, 0.2),
    inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

button:active {
  transform: translateY(4px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.yes-btn {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: white;
}

.yes-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 20px rgba(255, 20, 147, 0.4),
    inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.no-btn {
  background: linear-gradient(135deg, #ffb3d9, #ff9ec7);
  color: #ff1493;
  transition: all 0.2s ease;
}

.no-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 20px rgba(255, 158, 199, 0.4),
    inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.message {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #ff1493;
  font-weight: 600;
  min-height: 30px;
  animation: fadeIn 0.5s ease;
  text-shadow: 0 2px 4px rgba(255, 20, 147, 0.2);
  transform: translateZ(10px);
}

.celebration {
  animation: bounceIn 0.8s ease;
  transform: translateZ(30px);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.celebration-title {
  font-family: 'Pacifico', cursive;
  font-size: 4rem;
  color: #ff1493;
  margin-bottom: 40px;
  animation: bounce 1s infinite;
  text-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
  transform: translateZ(25px);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.love-message {
  font-size: 1.5rem;
  color: #ff1493;
  line-height: 2;
  margin-bottom: 40px;
  text-shadow: 0 2px 6px rgba(255, 20, 147, 0.2);
  transform: translateZ(15px);
}

.love-message p {
  animation: fadeIn 1s ease both;
}

.love-message p:nth-child(2) {
  animation-delay: 0.3s;
}
.love-message p:nth-child(3) {
  animation-delay: 0.6s;
}
.love-message p:nth-child(4) {
  animation-delay: 0.9s;
}

.hearts {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 3rem;
  filter: drop-shadow(0 5px 10px rgba(255, 20, 147, 0.3));
  transform: translateZ(20px);
}

.heart {
  animation: float 3s ease-in-out infinite;
}

.heart:nth-child(2) {
  animation-delay: 0.2s;
}
.heart:nth-child(3) {
  animation-delay: 0.4s;
}
.heart:nth-child(4) {
  animation-delay: 0.6s;
}
.heart:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
