:root {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #33102a;
  background: radial-gradient(circle at top, #ffe3f2 0%, #fff8fb 45%, #ffffff 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 32px 28px;
  text-align: center;
  max-width: 520px;
  box-shadow: 0 20px 50px rgba(118, 17, 73, 0.15);
  border: 1px solid rgba(255, 190, 221, 0.8);
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #aa3167;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 8px 0 20px;
}

.gifs {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
  height: 18em;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.gifs img {
  width: 60%;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid #ffd3e8;
  height: auto;
}

.note {
  font-size: 1rem;
  margin: 8px 0 18px;
}

.actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 50px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-yes {
  background: linear-gradient(135deg, #ff5aa5, #ff8bd1);
  color: white;
  box-shadow: 0 10px 20px rgba(255, 90, 165, 0.35);
}

.btn-no {
  background: #fff0f6;
  color: #aa3167;
  border: 2px dashed #ffb7d9;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.footer {
  font-size: 0.9rem;
  color: #aa3167;
}

@media (max-width: 600px) {
  .card {
    padding: 26px 20px;
  }

  .actions {
    min-height: 120px;
  }
}
