/* Global */
body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #ff7eb3, #ff758c, #ffb199);
  color: #ffffff;
  animation: gradientShift 10s ease infinite;
  background-size: 300% 300%;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Container */
.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 35px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* Title */
h1 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffe9fd, #fff3d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sections */
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  color: #fff7f7;
}

p {
  line-height: 1.7;
  font-size: 18px;
}

/* Fun highlight box */
.highlight-box {
  background: rgba(255,255,255,0.15);
  padding: 20px;
  border-radius: 15px;
  margin: 25px 0;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 20px;
  background: #ffefef;
  color: #ff4d7c;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.button:hover {
  background: #ffffff;
  transform: scale(1.07);
}

/* Fun "music badges" */
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 10px 18px;
  border-radius: 30px;
  margin: 8px 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  opacity: 0.8;
  font-size: 14px;
}
