.rna-player {
    position: fixed;
    top: 70px; /* juste sous le header */
    left: 0;
    width: 100%;
    z-index: 9999;
	background: #9A040E;
    color: #fff;
}




.corps-rna-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 74%;
    margin: 0 auto;
    font-weight: 600;
}

.player-left
 {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    width: 100%;
}

.player-info {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.player-cover {
    width: 70px;
    height: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.11rem;
    margin-right: -10px;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-artist {
    font-weight: lighter;
	font-size: 0.86rem;
}

.player-title {
	font-weight: lighter; 
	font-size: 0.83rem;	
	margin-top: 0.6rem;
}

.player-track {
    opacity: 0.8;
}

.player-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.play-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-right input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 150px;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.player-right input[type="range"]::-webkit-slider-runnable-track {
    background: #ffffff;
    height: 3px;
    border-radius: 5px;
}

.player-right input[type="range"]::-moz-range-track {
    background: #ffffff;
    height: 3px;
    border-radius: 5px;
}

.player-right input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 3px solid #e30613;
    border-radius: 50%;
    margin-top: -8px;
}

.player-right input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 3px solid #e30613;
    border-radius: 50%;
}

/* ==========================
   ≤ 992px — tablette paysage
============================ */
@media (max-width: 992px) {

    .corps-rna-player {
        width: 90%;
        gap: 20px;
    }

    .player-left {
        gap: 25px;
        width: 100%;
    }

    .player-cover {
        width: 55px;
        height: 55px;
    }

    .play-btn {
        font-size: 28px;
        width: 50px;
        height: 50px;
    }

    .player-info {
        font-size: 0.9rem;
    }

    .player-right input[type="range"] {
        width: 120px;
        border: none;
    }
}

/* =====================================
   ≤ 768px — tablette portrait / mobile
====================================== */
@media (max-width: 768px) {

    .corps-rna-player {
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        gap: 15px;
        text-align: center;
    }

    .player-left {
        width: 100%;
        justify-content: flex-start;
        gap: 40px;
    }

    .player-cover {
        width: 45px;
        height: 45px;
    }

    .play-btn {
        font-size: 20px;
        width: 45px;
        height: 45px;
    }

    .player-info {
        font-size: 0.75rem;
        text-align: left;
    }

    .player-right {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        display: none;
    }

    .player-right input[type="range"] {
        width: 160px;
    }
}

