/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.5;
}

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    background: url('images/hero.jpg') center/cover fixed no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), #000);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Rock Salt', cursive;
    font-size: 80px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    font-style: italic;
}

/* === ABOUT === */
.about {
    padding: 80px 20px;
    text-align: center;
}

.about h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.about-gallery img {
    width: 250px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

/* === PLAYER === */
#player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    z-index: 9999;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-left img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.song-info {
    font-size: 12px;
    line-height: 1.2;
}

.player-center {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

#playPauseBtn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

#currentTime,
#duration {
    font-size: 12px;
    width: 40px;
    text-align: center;
}

.progress-container {
    flex: 1;
    height: 4px;
    background: #555;
    position: relative;
    cursor: pointer;
}

.progress {
    background: #fff;
    height: 100%;
    width: 0%;
}

.player-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

#volumeBar {
    width: 100px;
}

#muteBtn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* === FADE-IN === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        background-attachment: scroll;
        background-position: center top;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-gallery img {
        width: 90%;
        max-width: 300px;
    }

    #player-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .player-left,
    .player-center,
    .player-right {
        flex: none;
        width: 100%;
        justify-content: center;
        margin: 5px 0;
    }

    .player-left img {
        width: 30px;
        height: 30px;
    }

    #volumeBar {
        width: 80%;
        max-width: 150px;
    }
}
