:root {
  --pink: #ff8fab;
  --pink-deep: #fb6f92;
  --cream: #fff5f8;
  --rose: #ffe3ec;
  --text: #5b3a44;
  --shadow: 0 12px 30px rgba(251, 111, 146, .18);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(160deg, #fff0f5 0%, #ffe4ec 45%, #ffd6e0 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  transition: transform .15s ease-out;
}

.hearts span {
  position: absolute;
  font-size: 34px;
  color: rgba(251, 111, 146, .14);
  animation: float 9s ease-in-out infinite;
  user-select: none;
}

.hearts span:nth-child(1) { left: 4%;  top: 8%;  animation-delay: 0s; }
.hearts span:nth-child(2) { left: 16%; top: 70%; animation-delay: 1.2s; font-size: 24px; }
.hearts span:nth-child(3) { left: 28%; top: 20%; animation-delay: 2.1s; font-size: 44px; }
.hearts span:nth-child(4) { left: 42%; top: 85%; animation-delay: .6s; }
.hearts span:nth-child(5) { left: 55%; top: 12%; animation-delay: 3s; font-size: 26px; }
.hearts span:nth-child(6) { left: 66%; top: 62%; animation-delay: 1.8s; }
.hearts span:nth-child(7) { left: 78%; top: 18%; animation-delay: .3s; font-size: 40px; }
.hearts span:nth-child(8) { left: 90%; top: 55%; animation-delay: 2.6s; font-size: 26px; }
.hearts span:nth-child(9) { left: 22%; top: 40%; animation-delay: 4s; font-size: 30px; }
.hearts span:nth-child(10){ left: 70%; top: 38%; animation-delay: 5s; font-size: 30px; }
.hearts span:nth-child(11){ left: 8%;  top: 45%; animation-delay: 3.6s; font-size: 20px; }
.hearts span:nth-child(12){ left: 48%; top: 30%; animation-delay: 4.5s; font-size: 22px; }
.hearts span:nth-child(13){ left: 36%; top: 58%; animation-delay: 2.s; font-size: 20px; }
.hearts span:nth-child(14){ left: 84%; top: 78%; animation-delay: 1.5s; }
.hearts span:nth-child(15){ left: 14%; top: 92%; animation-delay: 2.9s; font-size: 20px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(8deg); }
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.hero {
  text-align: center;
  padding: 30px 0 44px;
}

.kicker {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--pink-deep);
  opacity: .85;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(40px, 9vw, 72px);
  color: #d6406f;
  letter-spacing: .02em;
  line-height: 1.1;
}

.hero h1 .love {
  color: var(--pink-deep);
  animation: beat 1.4s ease-in-out infinite;
  display: inline-block;
}

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

.subtitle {
  margin-top: 14px;
  font-size: 17px;
  opacity: .9;
}

.stamp {
  display: inline-block;
  margin-top: 26px;
  border: 2px dashed var(--pink-deep);
  color: var(--pink-deep);
  padding: 8px 22px;
  border-radius: 14px;
  letter-spacing: .3em;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, .55);
  transform: rotate(-3deg);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}

.card {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(6px);
  border: 1.5px solid var(--rose);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(251, 111, 146, .26);
}

.emoji {
  font-size: 38px;
  margin-bottom: 10px;
}

.card h2 {
  font-size: 20px;
  color: #b83a5e;
  margin-bottom: 6px;
}

.meta {
  font-size: 11.5px;
  color: var(--pink-deep);
  opacity: .8;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card p:last-child {
  line-height: 1.65;
  font-size: 15px;
}

.verdict {
  text-align: center;
  margin: 48px 0 20px;
  padding: 34px 24px;
  background: rgba(255, 255, 255, .7);
  border-radius: 26px;
  border: 1.5px solid var(--rose);
  box-shadow: var(--shadow);
}

.verdict h2 {
  font-size: clamp(24px, 5vw, 34px);
  color: #b83a5e;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  margin-top: 34px;
  font-size: 13px;
  opacity: .65;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .hearts span, .hero h1 .love { animation: none; }
  .hearts { transform: none !important; }
}

@media (max-width: 520px) {
  .wrap { padding: 24px 14px 40px; }
  .hearts span { font-size: 22px; }
}