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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

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

/* ✨ Layout */
header,
main,
footer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main {
  padding: 20px;
}

/* 🖼️ Logo */
.logo {
  width: 120px;
  max-width: 100%;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

/* 🖼️ Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.banner {
  width: 100%;
  max-width: 100%;
  height: auto;

  display: block;
  margin: 20px auto;

  border-radius: 24px;

  box-shadow:
    0 12px 35px rgba(255,105,180,.12),
    0 0 18px rgba(255,77,166,.08);
}

.bottom-banner {
  width: 100%;
  max-width: 300px;

  display: block;
  margin: 20px auto;

  border-radius: 24px;

  box-shadow:
    0 12px 35px rgba(255,105,180,.12),
    0 0 18px rgba(255,77,166,.08);
}

/* 💖 Text */
h1 {
  font-size: 2.4em;
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 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;
}

p {
  color: #555;
  line-height: 1.7;
}

.tagline {
  color: #777;
}

/* 🤍 Cards */
.card {
  background: #fff;
  width: 100%;
  max-width: 800px;

  padding: 25px;
  margin: 20px auto;

  border-radius: 20px;

  overflow: hidden;

  box-shadow:
    0 8px 20px rgba(255,105,180,.08);

  transition: .2s;
}

.card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 10px 24px rgba(255,105,180,.14);
}

/* 💕 Tagline box */
.tagline-box {
  width: fit-content;
  max-width: 90%;

  margin: 20px auto;
  padding: 10px 18px;

  border-left: 3px solid #ff4da6;

  background: rgba(255,77,166,.05);

  border-radius: 10px;
}

/* 💖 Buttons */
a {
  display: inline-flex;

  justify-content: center;
  align-items: center;

  background: #ff4da6;
  color: white;

  padding: 12px 22px;
  margin: 8px;

  border-radius: 999px;

  text-decoration: none;
  font-weight: 600;

  transition: .25s;
}

a:hover {
  background: #cc005f;

  box-shadow:
    0 0 14px rgba(204,0,95,.4);
}

/* ✨ 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: .6;

  animation: sparkleFall linear infinite;
}

/* ✨ Animations */
@keyframes sparkleFall {

  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: .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;
}

.footer-logo {
  width: 60px;
  border-radius: 12px;
  display: block;
  margin: 10px auto;
}

/* 🤍 Cards */
.card,
.merch-card {
  background: #fff;
  width: 100%;
  max-width: 800px;
  padding: 25px;
  margin: 20px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255,105,180,.08);
  transition: .2s;
}

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

/* 🛍️ Merch Images */
.card-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.thumb-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.merch-thumb {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* 💕 Tagline box */
.tagline-box {
  width: fit-content;
  max-width: 90%;
  margin: 20px auto;
  padding: 10px 18px;
  border-left: 3px solid #ff4da6;
  background: rgba(255,77,166,.05);
  border-radius: 10px;
}

/* 📱 Mobile */
@media (max-width:600px) {
  h1 {
    font-size: 2em;
  }

  .card,
  .merch-card {
    padding: 18px;
  }

  .card-images-grid {
    grid-template-columns: 1fr;
  }
}