/* 💖 Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  text-align: center;
  color: #111;
}

main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* 🖼️ Header */
header {
  padding: 10px;
  position: relative;
  z-index: 1;
}

.logo {
  width: 120px;
  border-radius: 20px;
}

/* 💖 Text */
h1 {
  font-size: 2.4em;
  font-weight: 800;
  line-height: 1.15;
  margin: 18px auto;
  max-width: 850px;

  background: linear-gradient(
    120deg,
    #ff4da6,
    #ff99cc,
    #ff4da6
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 4s linear infinite;
}

h2 {
  color: #ff4da6;
  font-size: 1.6em;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  line-height: 1.7;
}

.tagline {
  color: #777;
}

/* 🤍 Cards */
.card {
  background: #fff;
  color: #111;
  padding: 25px;
  margin: 20px auto;
  border-radius: 18px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(255, 105, 180, 0.08);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 105, 180, 0.14);
}

.card p {
  color: #555;
    }
.card {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}


/* 💖 Buttons */
a {
  display: inline-block;
  background: #ff4da6;
  color: #fff;
  padding: 12px 22px;
  margin: 8px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  outline: none;
  transition: 0.25s ease;
}

a:hover {
  background: #cc005f;
  box-shadow: 0 0 14px rgba(204, 0, 95, 0.4);
}

/* 🖼️ Banners */
.banner {
  width: 92%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 20px auto 30px;
  border-radius: 24px;
  box-shadow:
    0 12px 35px rgba(255, 105, 180, 0.12),
    0 0 18px rgba(255, 77, 166, 0.08);
}

.bottom-banner {
  width: 92%;
  max-width: 300px;
  display: block;
  margin: 25px auto;
  border-radius: 24px;
  box-shadow:
    0 12px 35px rgba(255, 105, 180, 0.12),
    0 0 18px rgba(255, 77, 166, 0.08);
}

/* 💕 Tagline Box */
.tagline-box {
  display: inline-block;
  margin: 15px auto;
  padding: 10px 18px;
  border-left: 3px solid #ff4da6;
  background: rgba(255, 77, 166, 0.05);
  border-radius: 10px;
}

.tagline-box p {
  margin: 0;
  color: #555;
}

/* ✨ Sparkles */
.bg-sparkle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sparkle {
  position: absolute;
  top: -40px;
  font-size: 16px;
  opacity: 0.6;
  animation: sparkleFall linear infinite;
}

@keyframes sparkleFall {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* 🖼️ Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  color: #777;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 60px;
  margin-top: 10px;
  opacity: 0.85;
  border-radius: 12px;
}