body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top left, #ffb6f9 0%, #f78bd4 25%, #c46cff 55%, #5b4bff 100%);
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #fff;
  padding: 16px;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.yes-button,
.no-button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.yes-button {
  background: linear-gradient(135deg, #ff6fb1, #ff9a6f);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 111, 177, 0.45);
}

.no-button {
  background: rgba(255, 255, 255, 0.15);
  color: #ffe4f5;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.yes-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 26px rgba(255, 111, 177, 0.65);
}

.no-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
}

.yes-button:active,
.no-button:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.gif_container {
  margin-top: 24px;
}

.gif_container img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
  .buttons {
    flex-direction: column;
  }

  .yes-button,
  .no-button {
    width: 100%;
    justify-content: center;
  }
}