:root {
  color-scheme: dark;
  font-family: "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #04050a;
  color: #fffaf7;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 48px 56px;
  overflow: hidden;
  background: #04050a;
}

.background-panel {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 118, 164, 0.34), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(125, 92, 255, 0.3), transparent 26%),
    linear-gradient(120deg, #05030b 0%, #130a22 38%, #241029 70%, #0b0711 100%);
  z-index: 0;
  transform: scale(1.08);
  filter: blur(0.2px);
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(7, 8, 20, 0.92) 0%, rgba(42, 12, 31, 0.62) 45%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.36;
  z-index: 1;
  animation: pulse 7s ease-in-out infinite;
}

.glow-one {
  background: #ff76a4;
  width: 220px;
  height: 220px;
  top: 8%;
  left: 8%;
}

.glow-two {
  background: #7d5cff;
  width: 320px;
  height: 320px;
  bottom: 2%;
  right: 8%;
  animation-delay: 2s;
}

.hearts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hearts span {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  animation: floatHeart 8s linear infinite;
}

.hearts span:nth-child(1) { left: 8%; top: 20%; animation-delay: 0s; }
.hearts span:nth-child(2) { right: 12%; top: 16%; animation-delay: 2s; }
.hearts span:nth-child(3) { left: 45%; bottom: 18%; animation-delay: 4s; }

.hero,
.message-card {
  position: relative;
  z-index: 2;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 78vh;
}

.hero-card,
.message-card {
  background: rgba(12, 10, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);  animation: fadeInUp 1s ease both;}

.hero-card {
  max-width: 860px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1.02;
  margin: 0 0 20px;
  text-shadow: 0 10px 42px rgba(0, 0, 0, 0.3);
}

.description {
  font-size: 1.15rem;
  line-height: 1.9;
  max-width: 720px;
  color: rgba(255, 250, 247, 0.86);
}

.actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #fff2f6, #ffd7e4);
  color: #2b1124;
  box-shadow: 0 10px 30px rgba(255, 138, 179, 0.28);
}

.message-card {
  width: min(820px, 100%);
  margin-top: 22px;
}

.message-card p {
  font-size: 1.2rem;
  line-height: 1.9;
  margin: 0 0 12px;
}

.message-card span {
  font-weight: 700;
  color: #ffd7e4;
}

.love-collection {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.love-block {
  background: rgba(10, 8, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
}

.love-block h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #ffd7e4;
}

.love-block p {
  margin: 8px 0;
  line-height: 1.8;
  color: rgba(255, 250, 247, 0.86);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.45; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatHeart {
  0% { transform: translateY(10px) scale(0.8); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0; }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px 18px 28px;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-card,
  .message-card {
    width: 100%;
  }
}
