* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0c1015;
  min-height: 100vh;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  /*background: linear-gradient(to bottom, #0c1015 0%, #1a2a3a 100%);*/
}

.hero h1 {
  font-size: 100px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.hero .tagline {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  font-weight: 300;
  letter-spacing: 4px;
}

.photo-section {
  position: sticky;
  top: 0px;
  z-index: 10;
  height: 80vh;
  overflow: hidden;
}

.band-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-bottom: 100px;
  background: linear-gradient(to bottom, transparent 0%, #0c1015 15%, #0c1015 100%);
  min-height: 100vh;
  margin-top: -50vh;
}

.player-container {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 500px;
  width: 100%;
  position: relative;
  backdrop-filter: blur(10px);
}

h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
  font-size: 24px;
}

.song {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.song:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.song-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  display: block;
}

audio {
  width: 100%;
  height: 40px;
  outline: none;
}

audio::-webkit-media-controls-panel {
  background-color: #fff;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-pause-button {
  background-color: #667eea;
  border-radius: 50%;
}

.download-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
  text-align: center;
}

.download-section h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 800;
}

.download-section p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.download-icon {
  margin-right: 8px;
  font-size: 18px;
}

@media (max-width: 600px) {
  .hero {
    min-height: 15vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: 4px;
  }

  .hero .tagline {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .photo-section {
    top: 15vh;
    height: 85vh;
  }

  .player-container {
    padding: 30px 20px;
  }

  .song-title {
    font-size: 16px;
  }

  .download-btn {
    font-size: 14px;
    padding: 12px 25px;
  }
}
