:root {
    --primary: #ff0055; /* Fun Neon Pink */
    --secondary: #00e5ff; /* Cyan */
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-light: #ffffff;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
}

/* HERO */
.hero {
    padding: 50px 20px;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.main-album-art {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--primary);
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 10px;
}

/* BAND MEMBERS */
.member-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

.member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
}

/* MUSIC PLAYER */
.music-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.player-container {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
}

.now-playing {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    text-align: center;
    border-right: 1px solid #333;
}

.now-playing img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.playlist-area {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    max-height: 500px;
    overflow-y: auto;
}

/* TABS */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--secondary);
    color: white;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.tab-btn.active {
    background: var(--secondary);
    color: black;
}

.content-view {
    display: none;
}

.content-view.active {
    display: block;
}

/* SONG LIST */
#song-list {
    list-style: none;
    padding: 0;
}

#song-list li {
    padding: 10px;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: background 0.2s;
}

#song-list li:hover {
    background: #333;
}

#lyrics-text {
    white-space: pre-wrap; /* Keeps lyric formatting */
    line-height: 1.6;
    color: #ccc;
}

.download-link {
    display: block;
    margin-top: 15px;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* MOBILE FIX */
@media (max-width: 700px) {
    .player-container {
        flex-direction: column;
    }
    .now-playing {
        border-right: none;
        border-bottom: 1px solid #333;
    }
}