body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #000000;
    color: #f0e9dc;
    text-align: center;
    overflow-x: hidden;
}

.logo {
    width: 80%;
    max-width: 500px;
    margin: 30px auto 10px;
    display: block;
}

#audio-player {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #d4af37;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 20px #d4af3780;
}

#audio {
    width: 100%;
    margin-bottom: 15px;
    color-scheme: dark;
    background-color: #111;
}

#visualizer {
    width: 100%;
    height: auto;
    margin: 10px 0;
    background-color: #111;
    border-radius: 8px;
}

#playlist {
    margin: 15px 0;
}

/* Track Styling */
.track {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #444;
    transition: background-color 0.3s ease;
    background-color: #000;
}

.track:hover {
    background-color: #222;
    color: #ffcc00;
}

.track.playing {
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
}

.track-header {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 6px;
    text-align: center;
}

.track-meta {
    display: none;
    padding: 10px;
    font-size: 0.9em;
    line-height: 1.4;
    color: #ccc;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    margin-top: 8px;
    text-align: left;
}

.track.open .track-meta {
    display: block;
}

#startButton {
    background-color: #ffcc00;
    border: none;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

#startButton:hover {
    background-color: #ffaa00;
}

/* Band Info Section */
.band-info-toggle {
    margin: 40px 0;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 2px solid #d4af37;
    border-radius: 20px;
    box-shadow: 0 0 20px #d4af3780;
    padding: 20px;
}

#toggleBandInfo {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#toggleBandInfo:hover {
    background-color: #f0e9dcf;
    color: #4b3b47;
}

#bandInfo {
    text-align: left;
    background-color: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    color: #f0e9dc;
}

#bandInfo ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
}

#bandInfo li {
    padding: 6px 0;
    font-size: 1.1em;
}

.hidden {
    display: none;
}

@media (max-width: 600px) {
    .logo {
        width: 95%;
    }

    #audio-player {
        padding: 10px;
    }

    #bandInfo {
        padding: 15px;
    }
}

.intro-banner {
    max-width: 700px;
    margin: 20px auto 0;
	margin-bottom: 20px;
    padding: 15px 20px;
    color: #f0e9dc;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 12px;
    font-style: italic;
    box-shadow: 0 0 12px #d4af3740;
    line-height: 1.5;
}

.intro-banner strong {
    color: #d4af37;
    font-weight: 700;
}

/* EQ Panel Styling */
#eq-panel {
    max-width: 700px;
    margin: 40px auto;
    padding: 60px 20px 80px;
    background-color: #111;
    border: 2px solid #d4af37;
    border-radius: 20px;
    box-shadow: 0 0 20px #d4af3780;
    overflow-x: auto;
}

#eq-panel h2 {
    margin-top: 0;
    color: #d4af37;
}

#eq-panel select {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #222;
    color: #f0e9dc;
    margin-bottom: 25px;
    margin-top: 10px;
}

#eqSliders {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
    max-width: 50px;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.slider-wrapper input[type="range"] {
    appearance: none;
    -webkit-appearance: none;
    width: 100px;
    height: 30px;
    transform: rotate(-90deg);
    background: transparent;
    cursor: pointer;
}

.slider-wrapper input[type="range"]::-webkit-slider-runnable-track {
    background: #333;
    border-radius: 4px;
}

.slider-wrapper input[type="range"]::-moz-range-track {
    background: #333;
    border-radius: 4px;
}

.slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 16px;
    width: 16px;
    background: #ffcc00;
    border-radius: 50%;
    border: none;
    margin-top: -6px;
}

.slider-wrapper input[type="range"]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    background: #ffcc00;
    border-radius: 50%;
    border: none;
}

.slider-wrapper span {
    color: #f0e9dc;
    font-size: 0.85em;
    display: block;
    margin-top: 20px;
    line-height: 1;
}

/* Responsive Side-by-Side Layout Wrapper */
.responsive-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* On larger screens, arrange side by side */
@media (min-width: 1024px) {
    .responsive-wrapper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }

    #audio-player {
        flex: 2;
        max-width: 700px;
        margin: 0;
    }

    .side-panel {
        flex: 1;
        max-width: 500px;
    }

    #eq-panel, .band-info-toggle {
        margin: 0 0 30px;
    }
}

.headphones-line {
    background-color: #111;
    color: #ffeb3b;
    padding: 14px 20px;
    margin: 20px 0;
    border: 2px solid #ffeb3b;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85em;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
    text-shadow: 0 0 2px #000;
    transform: translateZ(0);
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 20px #ffc107;
    }
    50% {
        box-shadow: 0 0 30px #ffc107;
    }
}

.playlist-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.playlist-buttons button {
    background-color: #ffcc00;
    border: none;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1em;
    transition: background-color 0.3s ease;
    width: 250px;
    max-width: 90%;
}

.playlist-buttons button:hover {
    background-color: #ffaa00;
}

.playlist-buttons button.active {
    outline: 2px solid #d4af37;
    background-color: #ffee58;
    color: #000;
}

.lyrics-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  max-height: 100vh;
  box-sizing: border-box;
  background-color: #111; 
  color: #f0e9dc; 
  box-shadow: -5px 0 15px rgba(212, 175, 55, 0.5); 
  padding: 30px 20px;
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.4s ease-in-out;
  border-left: 2px solid #d4af37; 
}

.lyrics-panel.open {
  right: 0;
}

.lyrics-panel h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #d4af37; 
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

#lyricsContent {
  margin-top: 20px;
  white-space: pre-wrap;
  line-height: 1.6;
  color: #f0e9dc; 
  font-size: 1rem;
  padding-bottom: 100px;
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #d4af37;
  cursor: pointer;
  z-index: 1001;
}

.close-btn:hover {
  color: #ffcc00;
}

.lyrics-button {
  background-color: #d4af37;
  color: #000;
  padding: 6px 12px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.lyrics-button:hover {
  background-color: #ffcc00;
}

@media (max-width: 768px) {
  .lyrics-panel {
    width: 90%;
  }
}

.playlist-description {
    color: #aaa;
    font-style: italic;
    margin: 5px 0 15px;
    line-height: 1.4;
}

/* Albums grid (Echo Saints) */
.albums-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 30px;
}

.album-card {
  width: 250px;
  background: #111;                 /* dark background inside the card */
  border: 2px solid #d4af37;        /* gold border to match the site */
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5); /* soft gold glow */
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}

.album-card:hover {
  transform: translateY(-2px);
  background: #222;                 /* darken background on hover */
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.7); /* brighter gold glow */
}

.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #252535;
}

.album-title {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 1rem;
  color: #d4af37;                   /* gold title text */
}

.band-mini-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 12px 0 20px 0;
}

.band-mini-cards img {
    width: 200px;
    height: auto;
    border-radius: 6px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.band-mini-cards img:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.35),
        0 0 18px rgba(212, 175, 55, 0.25),
        0 0 24px rgba(212, 175, 55, 0.15);
}

@media (max-width: 600px) {
    .band-mini-cards img {
        width: 120px;
    }
}

.avatar-modal {
    position: fixed;
    inset: 0;
    background: transparent;  /* let the vignette control the darkness */
    display: none;            /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.avatar-modal.open {
    display: flex;
}

/* Dark vignette overlay */
.avatar-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(0, 0, 0, 0.45) 0%,   /* darker center */
        rgba(0, 0, 0, 0.9) 100%  /* very dark edges */
    );
    z-index: 1;
}

.avatar-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 2;  /* above vignette */
}

/* Modal image — proper responsive sizing */
.avatar-modal-content img {
    display: block;
    width: auto;
    height: auto;
    max-width: 50vw;   /* Desktop: show at ~50% screen width */
    max-height: 80vh;  /* Prevent vertical overflow */
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
}

/* Mobile override — bigger but still fully visible */
@media (max-width: 600px) {
    .avatar-modal-content img {
        max-width: 85vw;
        max-height: 80vh;
    }
}

/* Close button */
.avatar-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    border: none;
    background: #000;
    color: #f5e3b8;
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3; /* above vignette & image */
}