body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #331133, #090909 65%);
  color: white;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}

.page {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: 4rem;
  color: #ff5cc8;
  margin: 20px 0 5px;
  text-shadow: 0 0 25px rgba(255, 92, 200, 0.65);
}

.subtitle {
  color: #f2c7e8;
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 35px;
}

.player-box {
  margin: 0 auto 35px;
}

video {
  width: 100%;
  max-width: 950px;
  background: #000;
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(255, 92, 200, 0.35);
}

.song-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.song-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

button {
  font-family: 'Orbitron', sans-serif;
  background: #ff5cc8;
  color: white;
  border: none;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  min-width: 220px;
  box-shadow: 0 0 18px rgba(255, 92, 200, 0.4);
}

button:hover {
  background: #ff2fb3;
  transform: scale(1.03);
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.8rem;
  }

  button {
    width: 100%;
  }
}