@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #0d1a26 url('https://source.unsplash.com/random/1920x1080?music,radio,night') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    backdrop-filter: blur(5px);
}

.container {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 60px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 500px;
    width: 90%;
}

.logo {
    width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.slogan {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

/* Style pour le texte "EN DIRECT" ou le titre de la chanson */
.live-indicator {
    font-size: 0.9em;
    color: #fff; /* Changé en blanc pour une meilleure lisibilité */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    height: 1.5em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8); /* Ajout d'une petite ombre pour le faire ressortir */
    text-align: center;
    width: 100%;
}

/* Style du lecteur Plyr */
.plyr--audio,
.plyr--audio .plyr__controls {
    background-color: #1a1a1a !important;
}

:root {
    --plyr-color-main: #007D8C; 
}

.plyr--audio .plyr__controls {
    padding: 20px;
}

.plyr--audio .plyr__controls .plyr__play-large {
    color: #E22B27;
    background: transparent;
    border: none;
}

.plyr--audio .plyr__controls button.plyr__control {
    color: #E22B27;
}

.plyr__progress__container {
    background: #444;
}

.plyr--full-ui input[type=range] {
    color: #E22B27;
}