/* CONFIGURATION DU POINT DE CHUTE (ANCRE) */
html { scroll-behavior: smooth; }

#selection {
    scroll-margin-top: 140px; /* Espace de sécurité sous le header master fixed */
    padding: 20px 5% 100px;
    position: relative;
    z-index: 10;
}

/* Titre Nos Radios Néon Blue */
.wr-grid-master-title {
    text-align: center;
    color: #00eaff !important;
    font-weight: 900;
    font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
    margin-bottom: 55px !important;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}

/* LA GRILLE UNIVERSELLE */
.wr-main-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* CARTE DE RADIO (DESIGN GIVRÉ) */
.wr-radio-card-pro {
    background: rgba(15, 32, 32, 0.75); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 234, 255, 0.2);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none !important;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.wr-radio-card-pro:hover {
    transform: translateY(-12px);
    border-color: #00eaff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 234, 255, 0.15);
}

/* IMAGE ET BOUTON LECTURE NEON */
.wr-img-play-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.wr-img-play-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.wr-play-overlay-neon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.wr-play-circle-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 234, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2.2px solid #00eaff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px #00eaff;
}

.wr-play-circle-box svg {
    fill: #00eaff;
    width: 25px;
    margin-left: 4px;
}

.wr-play-text-neon {
    color: #00eaff;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* HOVER ANIMATION */
.wr-radio-card-pro:hover .wr-play-overlay-neon { opacity: 1; }

.wr-radio-card-pro:hover img {
    transform: scale(1.1);
    filter: blur(2px) brightness(0.8);
}

/* TITRE CARD */
.wr-card-name-label {
    display: block;
    color: #00eaff !important;
    padding: 22px;
    font-weight: 800;
    font-size: 1.25rem;
    text-align: center;
}

/* RESPONSIVE MOBILE : 2 CARTES PAR LIGNE */
@media (max-width: 600px) {
    #selection {
        padding: 10px 14px 70px;
        scroll-margin-top: 115px;
    }

    .wr-grid-master-title {
        font-size: 1.75rem !important;
        margin-bottom: 28px !important;
    }

    .wr-main-grid-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        max-width: 100%;
    }

    .wr-radio-card-pro {
        border-radius: 14px;
        border-width: 1px;
    }

    .wr-radio-card-pro:hover {
        transform: none;
    }

    .wr-card-name-label {
        padding: 12px 6px;
        font-size: 0.82rem;
        line-height: 1.15;
    }

    .wr-play-circle-box {
        width: 42px;
        height: 42px;
        border-width: 1.8px;
    }

    .wr-play-circle-box svg {
        width: 18px;
    }

    .wr-play-text-neon {
        font-size: 10px;
        letter-spacing: 1px;
        margin-top: 6px;
    }
}
