:root {
  --accent1: #ffb3ec;
  --accent2: #c3a6ff;
  --accent3: #a5d8ff;
  --text: #f6f3ff;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: linear-gradient(120deg, #2b1055, #7597de, #ffb3ec);
  background-size: 400% 400%;
  animation: bgShift 12s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 40px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

h1.main-char {
  font-size: 1.8rem;
  margin-bottom: 10px;
  animation: glowPulse 2.5s ease-in-out infinite;
  text-shadow: 0 0 8px #ffb3ec, 0 0 16px #c3a6ff, 0 0 24px #a5d8ff;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 8px #ffb3ec, 0 0 16px #c3a6ff, 0 0 24px #a5d8ff;
  }
  50% {
    text-shadow: 0 0 20px #ffb3ec, 0 0 36px #c3a6ff, 0 0 48px #a5d8ff;
  }
}

.subtitle {
  font-size: 0.95rem;
  color: #d1c8ff;
  margin-bottom: 25px;
}

.message {
  min-height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  font-size: 1.1rem;
  color: #f6f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

button {
  border: none;
  padding: 12px 22px;
  font-size: 1rem;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.yes {
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.yes:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.no {
  background: rgba(255, 255, 255, 0.1);
  color: #d1c8ff;
}

.no:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.heart {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  fill: url(#grad);
  animation: beat 2s infinite;
}

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

footer {
  margin-top: 25px;
  font-size: 0.8rem;
  color: #cbbaff;
  font-style: italic;
}

.floating-pokemon {
  position: absolute;
  width: 80px;
  opacity: 0.9;
  pointer-events: none;
  animation: floatUp 6s ease-in-out forwards;
  z-index: 1;
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateY(-120px) scale(1); opacity: 1; }
  100% { transform: translateY(-220px) scale(1.1); opacity: 0; }
}

.sparkle {
  position: absolute;
  font-size: 20px;
  animation: sparkleAnim 1s ease-in-out forwards;
  pointer-events: none;
  z-index: 3;
}

@keyframes sparkleAnim {
  0% { opacity: 0; transform: scale(0.5) translateY(0); }
  50% { opacity: 1; transform: scale(1.2) translateY(-30px); }
  100% { opacity: 0; transform: scale(0.6) translateY(-60px); }
}