* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050509;
  color: #f7f7ff;
  min-height: 100vh;
}

/* Full-screen background image support */
body.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Desktop background image (replace URL with your desktop image) */
@media (min-width: 768px) {
  body.has-bg-image {
    background-image: url('desktop-bg.jpg');
  }
}

/* Mobile background image (replace URL with your mobile image) */
@media (max-width: 767.98px) {
  body.has-bg-image {
    background-image: url('mobile-bg.jpg');
  }
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 40px;
}

.top-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: #000000;
}

@media (min-width: 768px) {
  h1 {
    font-size: clamp(3.125rem, 6.25vw, 4.25rem);
  }
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #f7f7ff;
  text-decoration: none;
}

.social-icon-img {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  object-fit: contain;
  display: block;
}

.social-label {
  white-space: nowrap;
}

.social-btn--x .social-icon {
  background: #000000;
}

.social-btn--youtube .social-icon {
  background: #ff0000;
}

.social-btn--bandcamp .social-icon {
  background: #1da0c3;
}

.social-btn--soundcloud .social-icon {
  background: #ff5500;
}

.social-btn--bluesky .social-icon {
  background: #1185fe;
}

.social-btn--facebook .social-icon {
  background: #1877f2;
}

.social-btn:hover,
.social-btn:focus-visible {
  background: #1b1b35;
}

.layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.players-column {
  flex: 2;
}

.player {
  margin-bottom: 16px;
}

.player iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.bio-column {
  flex: 1.3;
}

.artist-bio {
  max-width: 52rem;
  margin: 0;
  text-align: left;
  font-size: 10pt;
  line-height: 1.5;
  border: 2px solid #f7f7ff;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  main {
    padding: 40px 32px 56px;
  }

  .artist-bio {
    font-size: 16pt;
  }

  h1 {
    margin-bottom: 32px;
  }

  .layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .player {
    margin-bottom: 20px;
  }
}

