/* --- Sections Programmes Premium (Vertical) --- */
.event-section-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--dark);
}

/* Arrière-plan flouté avec superposition */
.event-bg-blur {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(15px) brightness(0.2);
    transform: scale(1.1);
    z-index: 0;
}

.event-container-v {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Alternance : Image à droite pour les sections paires */
.event-section-premium:nth-child(even) .event-container-v {
    flex-direction: row-reverse;
}

/* Style de l'image de présentation */
.event-visual {
    flex: 1;
    position: relative;
}

.event-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.event-section-premium:hover .event-image-wrapper img {
    transform: scale(1.05);
}

/* Contenu textuel */
.event-info-content {
    flex: 1;
    color: white;
}

.event-tag {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.event-info-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

/* Timer stylisé */
.timer-flex {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.timer-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    min-width: 85px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-box .num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.timer-box .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
}

/* Zone Audio */
.audio-player-v3 {
    background: linear-gradient(135deg, rgba(31, 92, 77, 0.3) 0%, rgba(0,0,0,0.5) 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary);
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .event-container-v, .event-section-premium:nth-child(even) .event-container-v {
        flex-direction: column;
        text-align: center;
    }
    .event-info-content h2 { font-size: 2.5rem; }
    .timer-flex { justify-content: center; }
}