* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  background-color: #000000;
  color: #fff;
  padding-top: 0;
}

.site-title {
  width: 100%;
  background: #000000;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  letter-spacing: 2px;
  transition: color 0.3s;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
}

.bio {
  text-align: center;
  max-width: 350px;
}

.bio img {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  border: 2px solid #4A2C59;
  margin-bottom: 1rem;
  transition: filter 0.3s ease;
}

.bio img:hover {
  filter: grayscale(100%);
}

.player {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.player-box {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(74,44,89,0.2);
  text-align: center;
}

#song-title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #FF69B4;
  font-weight: bold;
}

#artist-credits {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #fff;
}

.artist-bold {
  font-weight: bold;
  color: #FF69B4;
}

.volume-control {
  margin: 1rem 0;
}

#volume {
  width: 100%;
  max-width: 200px;
  cursor: pointer;
}

.tracklist {
  max-height: 150px;
  overflow-y: auto;
  margin-top: 1rem;
  text-align: left;
  padding: 0.5rem;
  background: #111;
  border-radius: 8px;
}

.tracklist div {
  padding: 0.3rem;
  cursor: pointer;
  color: #fff;
}

.tracklist div:hover {
  background-color: #222;
}

.gallery {
  padding: 2rem;
  text-align: center;
}

h2 {
  border-bottom: 2px solid #4A2C59;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.25rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

iframe {
  width: 100%;
  max-width: 360px;
  height: 202.5px;
  border: 2px solid #4A2C59;
  border-radius: 8px;
}

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