* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #ffe6f0, #ffc2d1);
  overflow-x: hidden;
  position: relative;
  padding: 20px;
}
.container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}
header h1 {
  font-size: 2.5em;
  margin: 20px 0;
  color: #ff4d88;
}
.highlight {
  color: #e60073;
}
header p {
  font-size: 1.2em;
  color: #cc0066;
}
.gallery {
  margin: 40px 0;
}
.gallery h2 {
  font-size: 1.8em;
  color: #d6336c;
  margin-bottom: 20px;
}
.photos-vertical {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.snap-box {
  width: 220px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid #ff99cc;
  box-shadow: 0 0 12px rgba(255, 105, 180, 0.3);
  background: #fff;
}

.snap-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.letter {
  background-color: #fff0f5;
  padding: 30px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 0 10px rgba(255, 0, 102, 0.2);
}
.letter h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #b30059;
}
.letter p {
  font-size: 1.1em;
  line-height: 1.6em;
  color: #660033;
}
footer {
  margin-top: 40px;
  color: #99004d;
  font-weight: bold;
}

/* Floating hearts */
.heart {
  position: fixed;
  top: 100vh;
  width: 20px;
  height: 20px;
  background: url('https://emoji.slack-edge.com/T02N94H51/heart/1f4e9b7564a0e9b8.png') no-repeat center;
  background-size: contain;
  animation: float 4s ease-in infinite;
  z-index: 999;
  pointer-events: none;
}

@keyframes float {
  to {
    transform: translateY(-110vh) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .photos img {
    width: 90%;
    height: auto;
  }
}
/* Existing styles remain same... add below for floating emojis */

.emoji {
  position: fixed;
  top: -2rem;
  font-size: 2rem;
  pointer-events: none;
  animation: drop 5s linear infinite;
  z-index: 1000;
}

@keyframes drop {
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

.sound-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.8rem;
  background-color: #ffccdd;
  border: none;
  border-radius: 50%;
  padding: 12px 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 105, 180, 0.4);
  transition: background 0.3s ease;
  z-index: 999;
}

.sound-btn:hover {
  background-color: #ff99cc;
}
.slideshow-container {
  width: 220px;
  aspect-ratio: 9 / 16;
  margin: 30px auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #ff99cc;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
  background: #fff;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  border-radius: 20px;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}
#bg-blend {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  filter: blur(4px) brightness(0.6); /* reduced blur */
  transition: background-image 1.5s ease-in-out;
}
