/* ===== SECTION HOMMAGE POPULAIRE ===== */

.hommage-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hommage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hommage-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hommage-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #f0d77e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: fadeInDown 1s ease;
}

.hommage-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-style: italic;
    animation: fadeInUp 1s ease 0.2s both;
}

.hommage-video-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(212, 175, 55, 0.2),
        0 0 60px rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease 0.4s both;
    transition: all 0.5s ease;
}

.hommage-video-container:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(212, 175, 55, 0.4),
        0 0 80px rgba(212, 175, 55, 0.3);
}

.hommage-video-wrapper {
    position: relative;
    padding-top: 56.25%; /* Ratio 16:9 */
    background: #000000;
}

.hommage-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hommage-video-info {
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.hommage-video-title {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    text-align: center;
}

.hommage-video-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 25px;
}

.hommage-video-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.hommage-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.hommage-meta-item strong {
    color: #d4af37;
    font-weight: 700;
}

/* Message si pas de vidéo */
.hommage-empty {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-gray);
}

.hommage-empty-icon {
    font-size: 100px;
    margin-bottom: 30px;
    opacity: 0.3;
}

.hommage-empty-title {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 15px;
}

.hommage-empty-text {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .hommage-section {
        padding: 60px 0;
    }

    .hommage-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hommage-subtitle {
        font-size: 16px;
    }

    .hommage-video-container {
        border-radius: 20px;
    }

    .hommage-video-info {
        padding: 25px;
    }

    .hommage-video-title {
        font-size: 22px;
    }

    .hommage-video-description {
        font-size: 14px;
    }

    .hommage-video-meta {
        flex-direction: column;
        gap: 15px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}