/* Mobile First */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sonelia-player-wrapper {
    margin: 30px 0;
    padding: 0 10px;
}

.sonelia-player-wrapper h3 {
    text-align: center;
    color: #b89966;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.sonelia-player {
    background: #1c1c1c;
    border-radius: 40px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.sonelia-cover-top {
    text-align: center;
}

.sonelia-cover {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.sonelia-album-title {
    color: #b89966;
    font-size: 1.6em;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
}

.sonelia-time {
    color: #b89966;
    font-size: 1.2em;
    text-align: center;
    font-weight: 600;
}

.sonelia-progress-bar {
    width: 85%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    pointer-events: none;
}

.sonelia-progress-fill {
    height: 100%;
    width: 0%;
    background: #b89966;
    border-radius: 3px;
    transition: width 0.1s linear;
}

.sonelia-controls {
    display: flex;
    justify-content: center;
}

.sonelia-play {
    background: #b89966;
    color: #1c1c1c;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(184, 153, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sonelia-play.playing {
    background: #d4b580;
}

.sonelia-playlist-fullwidth {
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.sonelia-playlist {
    list-style: none;
    text-align: center;
}

.sonelia-playlist li {
    padding: 12px 0;
    color: #b89966;
    cursor: pointer;
    font-size: 1em;
    border-bottom: 1px solid #333;
}

.sonelia-playlist li.active {
    color: white;
    background: rgba(184, 153, 102, 0.15);
}


/* Scrollbar */

.sonelia-playlist-fullwidth::-webkit-scrollbar {
    width: 6px;
}

.sonelia-playlist-fullwidth::-webkit-scrollbar-track {
    background: #1c1c1c;
}

.sonelia-playlist-fullwidth::-webkit-scrollbar-thumb {
    background: #b89966;
    border-radius: 3px;
}


/* Promotions & Sonastia */

.sonelia-promotions,
.sonelia-sonastia {
    margin-top: 50px;
    text-align: center;
    padding: 0 10px;
}

.sonelia-promotions p,
.sonelia-sonastia p {
    color: #b89966;
    margin-bottom: 30px;
    font-size: 1.2em;
}

.sonelia-promotions>div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 30px;
}

.sonelia-promotions img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sonelia-promotions span {
    background: #b89966;
    color: #1c1c1c;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

.sonelia-sonastia a {
    background: #b89966;
    color: #1c1c1c;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2em;
    box-shadow: 0 5px 15px rgba(184, 153, 102, 0.4);
    display: inline-block;
}


/* Tablet & up */

@media (min-width: 768px) {
    .sonelia-player {
        padding: 40px;
        max-width: 550px;
    }
    .sonelia-cover {
        width: 220px;
        height: 220px;
    }
    .sonelia-album-title {
        font-size: 2em;
    }
    .sonelia-play {
        width: 85px;
        height: 85px;
    }
}

@media (min-width: 1024px) {
    .sonelia-player {
        max-width: 650px;
    }
    .sonelia-cover {
        width: 260px;
        height: 260px;
    }
}