/* FUSSEP MINI PLAYER STYLES */
.fussep-mini-player {
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background: var(--main-color, rgb(0, 58, 174));
    color: #fff;
    margin-bottom: 30px;
}
.fussep-mini-player * {
    box-sizing: border-box;
}

/* Common Text */
.fmp-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.fmp-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Controls Base */
.fmp-ctrl-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fmp-ctrl-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.fmp-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: var(--main-color, rgb(0, 58, 174));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fmp-play-btn:hover {
    transform: scale(1.08);
}
.fmp-icon-play, .fmp-icon-pause {
    width: 25px;
    height: 25px;
}

/* Progress Bar Base */
.fmp-progress-bar-wrap {
    height: 6px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    border-radius: 3px;
    position: relative;
}
.fmp-progress-bar {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 0%;
    background: #fff;
    border-radius: 3px;
}

/* Times */
.fmp-time {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}


/* --------------------------
 * MODE: VERTICAL 
 * --------------------------*/
.fmp-vertical {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
}
.fmp-vertical .fmp-cover {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}
.fmp-vertical .fmp-content {
    padding: 30px 25px;
    position: relative;
}
.fmp-vertical .fmp-info {
    margin-right: 60px; /* Leave space for absolute play btn if needed, or place normal */
}
/* In vertical, the Play button is usually on the right, floated */
.fmp-vertical .fmp-play-btn {
    position: absolute;
    top: 30px;
    right: 25px;
}
.fmp-vertical .fmp-progress-area {
    margin-top: 5px;
    margin-bottom: 15px;
}
.fmp-vertical .fmp-bottom-ctrls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fmp-vertical .fmp-time {
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin-bottom: 20px; /* If we want time under bar */
}
/* Wait, image 1 shows time UNDER progress bar, separately on Left and Right */
.fmp-vertical .fmp-bottom-ctrls {
    flex-direction: column; 
    align-items: flex-start;
}
.fmp-vertical .fmp-time {
    width: 100%;
    justify-content: space-between;
}
.fmp-vertical .fmp-time-sep { display: none; }
.fmp-vertical .fmp-sub-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}


/* --------------------------
 * MODE: HORIZONTAL 
 * --------------------------*/
.fmp-horizontal {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 200px;
}
.fmp-horizontal .fmp-cover {
    width: 200px;
    min-width: 200px;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.fmp-horizontal .fmp-content {
    flex: 1;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fmp-horizontal .fmp-play-btn {
    position: absolute;
    top: 30px;
    right: 30px;
}
.fmp-horizontal .fmp-bottom-ctrls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.fmp-horizontal .fmp-time {
    margin-right: auto;
}
.fmp-horizontal .fmp-sub-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}
.fmp-horizontal .fmp-progress-area {
    margin-top: 20px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .fmp-horizontal {
        flex-direction: column;
        height: auto;
    }
    .fmp-horizontal .fmp-cover {
        width: 100%;
        height: 250px;
    }
}
