:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow: hidden;
}

/* Background slideshow: two stacked layers cross-fade between images */
#bg-slideshow {
  position: fixed;
  inset: 0;
  z-index: 0;
}

#bg-slideshow .bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}

#bg-slideshow .bg-layer.active {
  opacity: 1;
}

/* Darkening overlay so foreground text stays legible over any image */
#bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 2;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.artist-name {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.social-links {
  margin-top: clamp(16px, 3vw, 32px);
  display: flex;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 1;
  border-bottom-color: #fff;
}
