/* Le CSS pour le texte après la vidéo */
.video-end-container {
    margin: 30px 0;
}

.video-end-text {
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-end-text.video-end-visible {
    transform: translateY(0);
    opacity: 1;
}

.video-end-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

/* Animation cachée */
.video-end-hidden {
    display: block !important; /* Force l'affichage pour JS */
}


/* Responsive */
@media (max-width: 768px) {
    .video-end-text {
        margin: 20px 0;
        padding: 15px;
    }
}
/* FIN du CSS pour le texte après la vidéo */
