body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

canvas#snow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.wrapper {
  text-align: center;
  padding: 30px;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  max-width: 320px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.slide {
  display: none;
}
.slide img {
  width: 100%;
  border-radius: 12px;
}
.fade {
  animation: fadeEffect 1.5s;
}
@keyframes fadeEffect {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pretty-btn {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #e91e63;
  color: white;
  cursor: pointer;
  font-size: 1rem;
}

/* Modals */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-dialog {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
}
.modal-dialog.scrollable {
  max-height: 85vh;
}
.modal img {
  width: 100%;
  margin: 8px 0;
  border-radius: 8px;
}
.close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  float: right;
  cursor: pointer;
}

.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e91e63;
  border: none;
  border-radius: 50%;
  padding: 12px;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 15px;
  font-size: 0.8rem;
  color: #aaa;
}
