body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: url('https://images.pexels.com/photos/164938/pexels-photo-164938.jpeg') no-repeat center center fixed;
  background-size: cover;
}

header {
  background: rgba(0, 0, 0, 0.7);
  padding: 0;
  text-align: center;
}

.banner {
  width: 50%;
  max-height: 500px;
  object-fit: cover;
  border-bottom: 3px solid #e91e63;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.nav-links {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.nav-links li {
  margin: 0 20px;
  padding: 14px 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover {
  color: #e91e63;
  border-bottom: 2px solid #e91e63;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.6);
}

section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background: rgba(0, 0, 0, 0.7);
  margin-top: 20px;
  border-radius: 12px;
  text-align: center;
}

.media-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

form input,
form textarea,
form select {
  width: 90%;
  max-width: 500px;
  padding: 10px;
  border: none;
  border-radius: 8px;
}

form button {
  background-color: #e91e63;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #c2185b;
}

h3 {
  color: #e91e63;
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #ccc;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    margin: 10px 0;
  }

  form input,
  form textarea,
  form select {
    width: 95%;
  }
.bg-music-control {
  text-align: center;
  margin: 20px 0;
}

#toggleMusic {
  padding: 10px 20px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#toggleMusic:hover {
  background-color: #c2185b;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}
}