/* Styles spÃ©cifiques par page */

/* Page Accueil */
.page-home {
    --accent-color: #D4AF37;
}

/* Hero Section avec vidÃ©o en arriÃ¨re-plan */
.page-home .hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    min-height: 85vh;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

/* Conteneur vidÃ©o en arriÃ¨re-plan */
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 2s ease-in-out;
    pointer-events: none;
}

.hero-video-item.active {
    opacity: 1;
    z-index: 1;
}

.hero-video-item iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77777778vh; /* 16:9 aspect ratio */
    height: 56.25vw; /* 16:9 aspect ratio */
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

/* Fallback si pas de vidÃ©o */
.hero-background-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

/* Overlay avec gradient et vignette pour mieux intÃ©grer */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center 40%, transparent 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.5) 70%,
            rgba(0, 0, 0, 0.75) 100%
        );
    z-index: 2;
    pointer-events: none;
}

/* Effet de lumiÃ¨re subtil qui suit la vidÃ©o */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center 35%,
        rgba(100, 0, 83, 0.15) 0%,
        transparent 60%
    );
    z-index: 1;
    pointer-events: none;
    animation: subtleGlow 8s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Particules esthÃ©tiques */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Contenu du hero avec effet glassmorphism pour mieux s'intÃ©grer */
.page-home .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: var(--spacing-xl) var(--spacing-md);
    animation: fadeInUp 1s ease-out;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge - Style intÃ©grÃ© avec la vidÃ©o */
.hero-badge {
    display: inline-block;
    margin-bottom: var(--spacing-lg);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Titre principal - Style intÃ©grÃ© avec la vidÃ©o */
.hero-title {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    font-family: 'Deuterium', var(--font-primary);
    color: #FFFFFF;
    text-shadow: 
        0 6px 30px rgba(0, 0, 0, 0.9),
        0 3px 15px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.3),
        2px 2px 6px rgba(0, 0, 0, 1),
        0 0 0 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

/* Sous-titre - Style intÃ©grÃ© avec la vidÃ©o */
.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: var(--spacing-md);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(212, 175, 55, 0.5),
        0 0 0 1px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    font-family: 'Deuterium', var(--font-primary);
}

/* Description - Style intÃ©grÃ© avec la vidÃ©o */
.hero-description {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-description p {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-shadow: 
        0 3px 20px rgba(0, 0, 0, 0.8),
        0 1px 8px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

/* Boutons CTA - Style comme les CTA des pages catÃ©gories */
.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 14px 32px;
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Deuterium', var(--font-primary);
    text-transform: none;
}

/* Bouton principal - Style intÃ©grÃ© avec glassmorphism */
.hero-btn-primary {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.9) 0%,
        rgba(244, 220, 110, 0.9) 25%,
        rgba(212, 175, 55, 0.9) 50%,
        rgba(180, 150, 40, 0.9) 75%,
        rgba(212, 175, 55, 0.9) 100%
    );
    backdrop-filter: blur(20px);
    color: #FFFFFF;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.6),
        0 4px 15px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, 
        rgba(220, 185, 65, 0.95) 0%,
        rgba(250, 230, 120, 0.95) 25%,
        rgba(220, 185, 65, 0.95) 50%,
        rgba(190, 160, 50, 0.95) 75%,
        rgba(220, 185, 65, 0.95) 100%
    );
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 6px 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 3px 10px rgba(212, 175, 55, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary span {
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.hero-btn-primary svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-btn-primary:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

/* Bouton secondaire - Style glassmorphism intÃ©grÃ© */
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary:active {
    transform: translateY(0);
}

.hero-btn-secondary span {
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.hero-btn-secondary svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-btn-secondary:hover svg {
    transform: scale(1.1);
}

/* Indicateur de scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-scroll-indicator:hover {
    color: rgba(255, 255, 255, 1);
}

/* Anciens styles hero-video supprimÃ©s - remplacÃ©s par hero-background-video */

/* Section Notre Ã‰quipe - Style similaire aux catÃ©gories */
.team-section {
    background: var(--color-bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.team-category-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-elegant);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    transition: all var(--transition-elegant);
    z-index: 1;
}

.team-category-card[data-category="realisation"] {
    background-image: url('../assets/images/team-realisation.png');
}

.team-category-card[data-category="image"] {
    background-image: url('../assets/images/team-image.png');
}

.team-category-card[data-category="recherche"] {
    background-image: url('../assets/images/team-recherche.png');
}

.team-category-card[data-category="production"] {
    background-image: url('../assets/images/team-production.png');
}

.team-category-card[data-category="montage"] {
    background-image: url('../assets/images/team-montage.png');
}

.team-category-card[data-category="design"] {
    background-image: url('../assets/images/team-design.png');
}

.team-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.05) 40%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
    transition: all var(--transition-elegant);
    z-index: 2;
}

.team-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.team-category-label {
    background: 
        linear-gradient(135deg, rgba(245, 230, 211, 0.98) 0%, rgba(245, 230, 211, 0.95) 50%, rgba(245, 230, 211, 0.98) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><defs><pattern id="paper" width="4" height="4" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="0.5" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23paper)"/></svg>');
    background-size: auto, 100px 100px;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(92, 64, 51, 0.2);
    clip-path: polygon(
        0% 8px, 8px 0%, calc(100% - 8px) 0%, 100% 8px,
        100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px),
        0% 8px
    );
    transition: all var(--transition-elegant);
    text-align: center;
    width: 100%;
    max-width: 90%;
}

.team-category-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    font-family: var(--font-primary);
    color: #5C4033;
    margin-bottom: var(--spacing-xs);
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.8),
        0 1px 1px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: all var(--transition-elegant);
    text-align: center;
}

.team-category-subtitle {
    font-size: 0.875rem;
    color: #6B4E3D;
    margin-bottom: 0;
    text-shadow: 
        0 1px 1px rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    transition: all var(--transition-elegant);
    font-weight: 400;
    max-width: 100%;
    font-family: var(--font-primary);
    text-align: center;
}

.team-category-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.team-category-card:hover::before {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.03) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.team-category-card:hover .team-category-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.08) 40%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.team-category-card:hover .team-category-label {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.team-category-card:hover .team-category-title {
    transform: translateY(-1px);
}

.team-category-card:hover .team-category-subtitle {
    transform: translateY(-1px);
}

.team-members {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-elegant);
}

.team-category-card:hover .team-members {
    opacity: 1;
    transform: translateY(0);
}

.team-member {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.team-member:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(4px);
}

.team-member-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.team-member-role {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    opacity: 0.7;
}

/* Page Ã‰quipe - Style minimaliste et professionnel */
.team-page {
    min-height: 100vh;
    background: var(--color-bg-primary);
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(var(--header-height) + var(--spacing-md));
}

/* Header minimaliste de la page Ã©quipe */
.team-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-xxl);
}

.team-back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
    font-weight: 500;
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-md));
    z-index: 100;
    background: var(--color-bg-primary);
    padding: var(--spacing-sm) 0;
    margin-top: calc(-1 * var(--spacing-sm));
    padding-top: var(--spacing-md);
}

.team-back-link:hover {
    color: var(--color-text-primary);
    transform: translateX(-4px);
}

.team-back-link svg {
    transition: transform 0.3s ease;
}

.team-back-link:hover svg {
    transform: translateX(-2px);
}

.team-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.team-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    font-family: 'Deuterium', var(--font-primary);
    color: var(--color-text-primary);
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B 0%, rgba(245, 158, 11, 0.8) 30%, rgba(245, 158, 11, 0.4) 60%, transparent 100%);
    border-radius: 2px;
}

.team-page-realisation .team-title::after {
    background: linear-gradient(90deg, #F59E0B 0%, rgba(245, 158, 11, 0.8) 30%, rgba(245, 158, 11, 0.4) 60%, transparent 100%);
}

.team-page-image .team-title::after {
    background: linear-gradient(90deg, #8B5CF6 0%, rgba(139, 92, 246, 0.8) 30%, rgba(139, 92, 246, 0.4) 60%, transparent 100%);
}

.team-page-recherche .team-title::after {
    background: linear-gradient(90deg, #3B82F6 0%, rgba(59, 130, 246, 0.8) 30%, rgba(59, 130, 246, 0.4) 60%, transparent 100%);
}

.team-page-production .team-title::after {
    background: linear-gradient(90deg, #F59E0B 0%, rgba(245, 158, 11, 0.8) 30%, rgba(245, 158, 11, 0.4) 60%, transparent 100%);
}

.team-page-montage .team-title::after {
    background: linear-gradient(90deg, #8B5CF6 0%, rgba(139, 92, 246, 0.8) 30%, rgba(139, 92, 246, 0.4) 60%, transparent 100%);
}

.team-page-design .team-title::after {
    background: linear-gradient(90deg, #EF4444 0%, rgba(239, 68, 68, 0.8) 30%, rgba(239, 68, 68, 0.4) 60%, transparent 100%);
}

.team-stats {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.team-stat-card {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-bg-secondary);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 120px;
}

.team-stat-card:hover {
    background: var(--color-bg-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    font-family: 'Deuterium', var(--font-primary);
}

.team-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Contenu de la page Ã©quipe */
.team-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) var(--spacing-xxl);
}

.team-section-content {
    margin-bottom: var(--spacing-xxl);
}

.team-section-header {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.team-section-accent {
    width: 4px;
    height: 32px;
    background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.team-page-realisation .team-section-accent {
    background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%);
}

.team-page-image .team-section-accent {
    background: linear-gradient(180deg, #8B5CF6 0%, #7C3AED 100%);
}

.team-page-recherche .team-section-accent {
    background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
}

.team-page-production .team-section-accent {
    background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%);
}

.team-page-montage .team-section-accent {
    background: linear-gradient(180deg, #8B5CF6 0%, #7C3AED 100%);
}

.team-page-design .team-section-accent {
    background: linear-gradient(180deg, #EF4444 0%, #DC2626 100%);
}

.team-section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    font-family: 'Deuterium', var(--font-primary);
    margin: 0;
}

.team-section-count {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-left: auto;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.team-member-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    border-top: 3px solid #F59E0B;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: var(--spacing-md);
}

.team-page-realisation .team-member-card {
    border-top-color: #F59E0B;
}

.team-page-image .team-member-card {
    border-top-color: #8B5CF6;
}

.team-page-recherche .team-member-card {
    border-top-color: #3B82F6;
}

.team-page-production .team-member-card {
    border-top-color: #F59E0B;
}

.team-page-montage .team-member-card {
    border-top-color: #8B5CF6;
}

.team-page-design .team-member-card {
    border-top-color: #EF4444;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-member-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.team-page-realisation .team-member-avatar {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.team-page-image .team-member-avatar {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.team-page-recherche .team-member-avatar {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.team-page-production .team-member-avatar {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.team-page-montage .team-member-avatar {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.team-page-design .team-member-avatar {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
    font-family: 'Deuterium', var(--font-primary);
}

.team-member-roles-count {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.team-member-roles {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.team-member-role-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.team-role-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F59E0B;
    margin-top: 8px;
    flex-shrink: 0;
}

.team-page-realisation .team-role-dot {
    background: #F59E0B;
}

.team-page-image .team-role-dot {
    background: #8B5CF6;
}

.team-page-recherche .team-role-dot {
    background: #3B82F6;
}

.team-page-production .team-role-dot {
    background: #F59E0B;
}

.team-page-montage .team-role-dot {
    background: #8B5CF6;
}

.team-page-design .team-role-dot {
    background: #EF4444;
}

.team-role-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.team-role-badge-principal {
    background: rgba(245, 158, 11, 0.15);
    color: #D97706;
}

.team-page-realisation .team-role-badge-principal,
.team-page-image .team-role-badge-principal,
.team-page-recherche .team-role-badge-principal,
.team-page-production .team-role-badge-principal,
.team-page-montage .team-role-badge-principal,
.team-page-design .team-role-badge-principal {
    background: rgba(245, 158, 11, 0.15);
    color: #D97706;
}

.team-role-badge-assistant {
    background: rgba(59, 130, 246, 0.15);
    color: #2563EB;
}

.team-role-badge-supplÃ©ant {
    background: rgba(139, 92, 246, 0.15);
    color: #7C3AED;
}

.team-role-description {
    color: var(--color-text-primary);
    flex: 1;
}

.section {
    padding: var(--spacing-xxl) var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xl) * 1.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    color: var(--color-black);
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color, #640053) 50%, transparent 100%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--color-gray-dark);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    margin-top: var(--spacing-lg);
    opacity: 0.85;
}

.categories-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.category-preview-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-elegant);
    background-image: var(--bg-image, none);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--category-color, #640053);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Fallback si l'image ne charge pas - utiliser un gradient basÃ© sur la couleur */
.category-preview-card:not([style*="url"]) {
    background-image: linear-gradient(135deg, var(--category-color, #640053) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
    transition: all var(--transition-elegant);
    z-index: 1;
}

.category-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 2;
    transition: all var(--transition-elegant);
}

.category-preview-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-lg);
    color: var(--color-white);
}

.category-preview-label {
    background: 
        /* Texture de grain */
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><filter id="grain"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23grain)" opacity="0.08"/></svg>') top left / 100px 100px repeat,
        /* Texture de fibres */
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.015) 1px
        ),
        /* Taches d'Ã¢ge subtiles */
        radial-gradient(ellipse 80px 60px at 20% 30%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60px 80px at 80% 70%, rgba(107, 78, 61, 0.08) 0%, transparent 45%),
        /* Fond parchemin */
        linear-gradient(135deg, 
            rgba(245, 230, 211, 0.95) 0%,
            rgba(247, 233, 216, 0.95) 25%,
            rgba(245, 230, 211, 0.95) 50%,
            rgba(243, 227, 206, 0.95) 75%,
            rgba(245, 230, 211, 0.95) 100%
        );
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.5),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(139, 115, 85, 0.2);
    clip-path: polygon(
        /* CÃ´tÃ© haut - irrÃ©gulier */
        0% 3%, 2% 0%, 5% 2%, 8% 0%, 12% 3%, 15% 0%, 18% 2%, 22% 0%,
        25% 3%, 28% 0%, 32% 2%, 35% 0%, 38% 3%, 42% 0%, 45% 2%, 48% 0%,
        52% 3%, 55% 0%, 58% 2%, 62% 0%, 65% 3%, 68% 0%, 72% 2%, 75% 0%,
        78% 3%, 82% 0%, 85% 2%, 88% 0%, 92% 3%, 95% 0%, 98% 2%, 100% 0%,
        /* CÃ´tÃ© droit - irrÃ©gulier */
        100% 3%, 98% 5%, 100% 8%, 98% 12%, 100% 15%, 98% 18%, 100% 22%,
        98% 25%, 100% 28%, 98% 32%, 100% 35%, 98% 38%, 100% 42%, 98% 45%,
        100% 48%, 98% 52%, 100% 55%, 98% 58%, 100% 62%, 98% 65%, 100% 68%,
        98% 72%, 100% 75%, 98% 78%, 100% 82%, 98% 85%, 100% 88%, 98% 92%, 100% 95%, 98% 98%, 100% 100%,
        /* CÃ´tÃ© bas - irrÃ©gulier */
        98% 100%, 95% 98%, 92% 100%, 88% 98%, 85% 100%, 82% 98%, 78% 100%,
        75% 98%, 72% 100%, 68% 98%, 65% 100%, 62% 98%, 58% 100%, 55% 98%,
        52% 100%, 48% 98%, 45% 100%, 42% 98%, 38% 100%, 35% 98%, 32% 100%,
        28% 98%, 25% 100%, 22% 98%, 18% 100%, 15% 98%, 12% 100%, 8% 98%, 5% 100%, 2% 98%, 0% 100%,
        /* CÃ´tÃ© gauche - irrÃ©gulier */
        0% 98%, 2% 95%, 0% 92%, 2% 88%, 0% 85%, 2% 82%, 0% 78%, 2% 75%,
        0% 72%, 2% 68%, 0% 65%, 2% 62%, 0% 58%, 2% 55%, 0% 52%, 2% 48%,
        0% 45%, 2% 42%, 0% 38%, 2% 35%, 0% 32%, 2% 28%, 0% 25%, 2% 22%,
        0% 18%, 2% 15%, 0% 12%, 2% 8%, 0% 5%, 2% 3%
    );
    transition: all var(--transition-elegant);
    text-align: center;
}

.category-preview-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    font-family: var(--font-primary);
    color: #5C4033;
    margin-bottom: var(--spacing-xs);
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.8),
        0 1px 1px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: all var(--transition-elegant);
    text-align: center;
}

.category-preview-description {
    font-size: 0.875rem;
    color: #6B4E3D;
    margin-bottom: 0;
    text-shadow: 
        0 1px 1px rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    transition: all var(--transition-elegant);
    font-weight: 400;
    max-width: 100%;
    font-family: var(--font-primary);
    text-align: center;
}

.category-preview-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-elegant);
    opacity: 0;
    transform: translateX(-8px);
    align-self: flex-end;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
}

.category-preview-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    transition: transform var(--transition-elegant);
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.category-preview-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.category-preview-card:hover::before {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.03) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.category-preview-card:hover .category-preview-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.08) 40%,
        rgba(0, 0, 0, 0.35) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.category-preview-card:hover .category-preview-label {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.category-preview-card:hover .category-preview-title {
    transform: translateY(-1px);
}

.category-preview-card:hover .category-preview-description {
    transform: translateY(-1px);
}

.category-preview-card:hover .category-preview-arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-preview-card:hover .category-preview-arrow svg {
    transform: translate(-47%, -50%);
}

/* Page Histoire */
.page-histoire {
    --accent-color: var(--color-histoire);
}

.page-histoire .page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(245, 158, 11, 0.8) 100%);
    color: var(--color-black);
    padding: var(--spacing-xl) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Header Histoire avec image de fond antique */
.page-histoire .category-hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
        url('../assets/images/header-histoire.png');
    background-size: 120% auto;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.page-histoire .category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.page-histoire .category-hero .container {
    position: relative;
    z-index: 2;
}

.page-histoire .category-hero h1 {
    color: #F5E6D3;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-family: 'Deuterium', var(--font-primary);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(245, 158, 11, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    line-height: 1.2;
}

.page-histoire .category-hero p {
    color: #E8D5B7;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.7),
        0 1px 5px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(245, 158, 11, 0.3);
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Science */
.page-science {
    --accent-color: var(--color-science);
}

.page-science .page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(59, 130, 246, 0.8) 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Header Science avec image de fond scientifique */
.page-science .category-hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
        url('../assets/images/header-science.png');
    background-size: 120% auto;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.page-science .category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.page-science .category-hero .container {
    position: relative;
    z-index: 2;
}

.page-science .category-hero h1 {
    color: #E3F2FD;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-family: 'Deuterium', var(--font-primary);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(59, 130, 246, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    line-height: 1.2;
}

.page-science .category-hero p {
    color: #BBDEFB;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.7),
        0 1px 5px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(59, 130, 246, 0.4);
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Page CinÃ©ma */
.page-cinema {
    --accent-color: var(--color-cinema);
}

.page-cinema .page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(239, 68, 68, 0.8) 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Header CinÃ©ma avec image de fond cinÃ©matographique */
.page-cinema .category-hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
        url('../assets/images/header-cinema.png');
    background-size: 120% auto;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.page-cinema .category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.page-cinema .category-hero .container {
    position: relative;
    z-index: 2;
}

.page-cinema .category-hero h1 {
    color: #FFE5E5;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-family: 'Deuterium', var(--font-primary);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(239, 68, 68, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    line-height: 1.2;
}

.page-cinema .category-hero p {
    color: #FFCCCC;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.7),
        0 1px 5px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(239, 68, 68, 0.4);
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Hors-SÃ©rie */
.page-hors-serie {
    --accent-color: var(--color-hors-serie);
}

.page-hors-serie .page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(236, 72, 153, 0.8) 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Header Hors-SÃ©rie avec image de fond spÃ©ciale */
.page-hors-serie .category-hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
        url('../assets/images/header-hors-serie.png');
    background-size: 120% auto;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.page-hors-serie .category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.page-hors-serie .category-hero .container {
    position: relative;
    z-index: 2;
}

.page-hors-serie .category-hero h1 {
    color: #FFE5F1;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-family: 'Deuterium', var(--font-primary);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(236, 72, 153, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    line-height: 1.2;
}

.page-hors-serie .category-hero p {
    color: #FFD6E8;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.7),
        0 1px 5px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(236, 72, 153, 0.4);
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Contact */
.page-contact {
    --accent-color: #6B21A8;
    --contact-primary: #6B21A8;
    --contact-primary-light: #7C3AED;
    --contact-primary-dark: #5B21B6;
    --contact-bg: #FAFAFA;
}

/* Hero Contact */
.page-contact .contact-hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
        url('../assets/images/header-contact.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: scroll;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-xxl) * 2) var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
}

.page-contact .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(107, 33, 168, 0.4) 0%,
        rgba(91, 33, 182, 0.3) 50%,
        rgba(107, 33, 168, 0.4) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.page-contact .contact-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-contact .contact-hero h1 {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    font-family: var(--font-primary);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(107, 33, 168, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
    line-height: 1.2;
}

.page-contact .contact-hero p {
    color: #E9D5FF;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.7),
        0 1px 5px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(107, 33, 168, 0.4);
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
}

.page-header h1 {
    color: inherit;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: var(--font-size-large);
    opacity: 0.9;
}

.page-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Styles communs pour les pages de catÃ©gories */
.page-histoire .article-card-category,
.page-science .article-card-category,
.page-cinema .article-card-category,
.page-hors-serie .article-card-category {
    color: var(--accent-color);
}

.page-histoire .nav-link.active,
.page-science .nav-link.active,
.page-cinema .nav-link.active,
.page-hors-serie .nav-link.active,
.page-contact .nav-link.active {
    color: var(--accent-color);
}

.page-histoire .section-title::after,
.page-science .section-title::after,
.page-cinema .section-title::after,
.page-hors-serie .section-title::after,
.page-contact .section-title::after {
    background-color: var(--accent-color);
}

.page-histoire .btn-primary,
.page-science .btn-primary,
.page-cinema .btn-primary,
.page-hors-serie .btn-primary,
.page-contact .btn-primary {
    color: var(--accent-color);
}

/* Section Contact */
.page-contact .contact-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #FAFAFA;
}

.page-contact .contact-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Informations Contact */
.page-contact .contact-info {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.page-contact .contact-info h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.page-contact .contact-description {
    color: var(--color-gray-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.page-contact .contact-details {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.page-contact .contact-detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: transparent;
    border-radius: 8px;
    transition: all var(--transition-elegant);
}

.page-contact .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6B21A8;
    border-radius: 8px;
    color: var(--color-white);
    flex-shrink: 0;
}

.page-contact .contact-detail-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.page-contact .contact-detail-item p {
    color: var(--color-gray);
    font-size: 0.8125rem;
    margin: 0;
}

/* Formulaire Contact */
.page-contact .contact-form-wrapper {
    position: relative;
}

.page-contact .contact-form-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: var(--spacing-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(107, 33, 168, 0.1);
}

.page-contact .contact-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-black);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.page-contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.page-contact .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-contact .form-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    color: var(--color-gray-dark);
    font-size: 0.875rem;
}

.page-contact .form-label .required {
    color: #EF4444;
    font-weight: 600;
}

.page-contact .form-input,
.page-contact .form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    color: var(--color-black);
    background: var(--color-white);
    transition: all var(--transition-fast);
    outline: none;
}

.page-contact .form-input:focus,
.page-contact .form-textarea:focus {
    border-color: #6B21A8;
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.08);
}

.page-contact .form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
    line-height: 1.5;
}

.page-contact .form-hint {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-top: -4px;
}

.page-contact .btn-contact-submit {
    width: 100%;
    padding: 12px 20px;
    background: #6B21A8;
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
    margin-top: var(--spacing-sm);
}

.page-contact .btn-contact-submit:hover:not(:disabled) {
    background: #7C3AED;
}

.page-contact .btn-contact-submit:active:not(:disabled) {
    background: #5B21B6;
}

.page-contact .btn-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.page-contact .btn-contact-submit svg {
    width: 18px;
    height: 18px;
}

/* Message de succÃ¨s/erreur */
.page-contact .contact-message {
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    display: none;
    font-weight: 500;
    font-size: 0.875rem;
    animation: slideDown 0.3s ease-out;
}

.page-contact .contact-message.show {
    display: block;
}

.page-contact .contact-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.page-contact .contact-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Message de succÃ¨s/erreur */
.message {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 4px;
    margin-bottom: var(--spacing-md);
    display: none;
}

.message.active {
    display: block;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   NOUVELLES PAGES CATÃ‰GORIES
   ============================================ */

.category-page {
    padding-bottom: var(--spacing-xxl);
}

.category-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(100, 0, 83, 0.8) 100%);
    color: var(--color-white);
    padding: var(--spacing-xxl) var(--spacing-md);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.category-hero h1 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
}

.category-hero p {
    font-size: var(--font-size-large);
    opacity: 0.95;
}

.category-section {
    padding: var(--spacing-xxl) var(--spacing-md);
}

.category-section:nth-child(even) {
    background: var(--color-gray-light);
}

/* Section header avec action */
.section-header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* VidÃ©o du moment */
.video-featured-section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.featured-video-container {
    max-width: 100%;
    margin: 0;
}

/* Style gÃ©nÃ©ral pour la vidÃ©o du moment - Style Antique Parchemin */
.featured-video-moment {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: var(--spacing-xxl) auto;
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    /* Fond sophistiquÃ© avec dÃ©gradÃ© de couleurs chaudes et texture subtile */
    background: 
        /* Texture de grain trÃ¨s subtile */
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.015) 0px,
            transparent 1px,
            transparent 3px,
            rgba(0, 0, 0, 0.015) 4px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.01) 0px,
            transparent 1px,
            transparent 3px,
            rgba(0, 0, 0, 0.01) 4px
        ),
        /* Motif filigrane subtil en arriÃ¨re-plan */
        radial-gradient(circle at 20% 30%, rgba(107, 78, 61, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 111, 71, 0.03) 0%, transparent 50%),
        /* Gradient principal sophistiquÃ© */
        linear-gradient(135deg, 
            #8B6F47 0%,
            #A0826D 15%,
            #8B6F47 30%,
            #6B4E3D 45%,
            #8B6F47 60%,
            #A0826D 75%,
            #8B6F47 100%
        );
    /* Ombres douces et diffuses pour profondeur */
    box-shadow: var(--shadow-elegant);
    /* Bordure fine dÃ©corative */
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Motif dÃ©coratif en filigrane (pseudo-Ã©lÃ©ment) */
.featured-video-moment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Motifs dÃ©coratifs subtils */
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
        /* Lignes dÃ©coratives subtiles */
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%);
    pointer-events: none;
    z-index: 1;
    border-radius: 24px;
    opacity: 0.6;
}

.featured-video-moment-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: calc(var(--spacing-xxl) * 1.2);
    align-items: center;
    position: relative;
    z-index: 2;
}

.featured-video-moment-video {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Conteneur vidÃ©o avec bordure Ã©lÃ©gante */
.featured-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-black);
    /* Bordure fine Ã©lÃ©gante */
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 0 0 1px rgba(212, 175, 55, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-elegant), box-shadow var(--transition-elegant), border-color var(--transition-elegant);
}

.featured-video-embed:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 0 0 2px rgba(212, 175, 55, 0.3),
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        var(--shadow-glow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.featured-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* Bouton YouTube moderne et Ã©lÃ©gant */
.btn-featured-video-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 16px 32px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-cream);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
    font-family: var(--font-primary);
    transition: all var(--transition-elegant);
    border: 2px solid var(--color-gold-antique);
    margin-top: var(--spacing-md);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Effet de brillance au survol */
.btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        transparent
    );
    transition: left var(--transition-smooth);
}

.btn-featured-video-youtube:hover::before {
    left: 100%;
}

.btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold-rich);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(212, 175, 55, 0.4),
        var(--shadow-glow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.btn-featured-video-youtube:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

/* IcÃ´ne YouTube stylisÃ©e */
.btn-featured-video-youtube svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-elegant), filter var(--transition-elegant);
}

.btn-featured-video-youtube:hover svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.6));
}

.featured-video-moment-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    position: relative;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Sceau de cire dÃ©coratif (supprimÃ©, remplacÃ© par l'icÃ´ne dans la catÃ©gorie) */
.featured-video-moment-info::after {
    display: none;
}

.featured-video-moment-category {
    font-size: var(--font-size-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-primary);
    color: var(--color-gold-antique);
    text-shadow: 
        0 2px 8px rgba(212, 175, 55, 0.4),
        0 1px 4px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(212, 175, 55, 0.2);
    position: relative;
    display: inline-block;
    padding-right: var(--spacing-sm);
}

/* IcÃ´ne dÃ©corative Ã  cÃ´tÃ© de la catÃ©gorie */
.featured-video-moment-category::after {
    display: none;
}

.featured-video-moment-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    color: var(--color-cream);
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

/* Ligne sÃ©paratrice dÃ©corative sous le titre */
.featured-video-moment-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--color-gold-antique) 0%,
        rgba(212, 175, 55, 0.6) 50%,
        transparent 100%
    );
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.featured-video-moment-date {
    font-size: var(--font-size-small);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
    color: rgba(245, 245, 220, 0.7);
    font-style: normal;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.featured-video-moment-description {
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
    color: rgba(245, 245, 220, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.btn-featured-video {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 14px 28px;
    background: var(--accent-color);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
}

.btn-featured-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    opacity: 0.9;
}

.btn-featured-video svg {
    width: 24px;
    height: 24px;
}

/* Style spÃ©cifique pour Histoire - Fond image avec parchemin */
.page-histoire .featured-video-moment {
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    margin: var(--spacing-xxl) auto;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../assets/images/moment-histoire.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border: none;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-histoire .featured-video-moment::before {
    display: none;
}

.page-histoire .featured-video-moment-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: calc(var(--spacing-xxl) * 1.2);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Cadre ancien pour la vidÃ©o */
.page-histoire .featured-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    border: 8px solid #8B7355;
    box-shadow: 
        /* Ombre interne pour effet de profondeur */
        inset 0 0 0 4px #D4AF37,
        inset 0 0 0 6px #8B7355,
        /* Ombres externes multiples pour effet de cadre ancien */
        0 0 0 2px #5C4033,
        0 0 0 4px #8B7355,
        0 0 0 6px #5C4033,
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        /* Ombres internes pour relief */
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    background: var(--color-black);
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.page-histoire .featured-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* Ornements dÃ©coratifs intÃ©grÃ©s aux coins du cadre - Histoire */
.page-histoire .featured-video-embed::before,
.page-histoire .featured-video-embed::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

.page-histoire .featured-video-embed::before {
    top: -8px;
    left: -8px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #D4AF37 0%, #B8941E 50%, #8B7355 100%);
    clip-path: polygon(0% 0%, 0% 40%, 40% 0%);
    box-shadow: 
        0 0 0 2px #8B7355,
        0 0 0 4px rgba(212, 175, 55, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 0 0 8px 0;
}

.page-histoire .featured-video-embed::after {
    bottom: -8px;
    right: -8px;
    background: 
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #D4AF37 0%, #B8941E 50%, #8B7355 100%);
    clip-path: polygon(60% 100%, 100% 100%, 100% 60%);
    box-shadow: 
        0 0 0 2px #8B7355,
        0 0 0 4px rgba(212, 175, 55, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 8px 0 0 0;
}

.page-histoire .featured-video-embed:hover {
    transform: translateY(-4px);
    box-shadow: 
        inset 0 0 0 4px #D4AF37,
        inset 0 0 0 6px #8B7355,
        0 0 0 2px #5C4033,
        0 0 0 4px #8B7355,
        0 0 0 6px #5C4033,
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 4px 8px rgba(0, 0, 0, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4);
}

/* Partie info en style parchemin rÃ©aliste */
.page-histoire .featured-video-moment-info {
    background: 
        /* Texture de grain trÃ¨s fine et rÃ©aliste */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>'),
        /* Texture de fibres de parchemin */
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.01) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.015) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.01) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.015) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        /* Taches d'Ã¢ge rÃ©alistes et variÃ©es */
        radial-gradient(ellipse 120px 80px at 12% 18%, rgba(107, 78, 61, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 100px 60px at 88% 75%, rgba(139, 115, 85, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 45% 8%, rgba(92, 64, 51, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60px 80px at 25% 90%, rgba(107, 78, 61, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 90px 70px at 75% 25%, rgba(139, 115, 85, 0.09) 0%, transparent 50%),
        /* Lignes de pliage subtiles */
        linear-gradient(90deg, transparent 48%, rgba(107, 78, 61, 0.08) 49%, rgba(107, 78, 61, 0.08) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(92, 64, 51, 0.06) 49%, rgba(92, 64, 51, 0.06) 51%, transparent 52%),
        /* Gradient parchemin avec variations naturelles */
        linear-gradient(135deg, 
            #F5E6D3 0%,
            #F7E9D8 5%,
            #F5E6D3 10%,
            #F3E3CE 15%,
            #F5E6D3 20%,
            #F9F1E6 25%,
            #F5E6D3 30%,
            #F0E0C8 35%,
            #F5E6D3 40%,
            #F7E9D8 45%,
            #F5E6D3 50%,
            #F9F1E6 55%,
            #F5E6D3 60%,
            #F3E3CE 65%,
            #F5E6D3 70%,
            #F7E9D8 75%,
            #F5E6D3 80%,
            #F0E0C8 85%,
            #F5E6D3 90%,
            #F9F1E6 95%,
            #F5E6D3 100%
        );
    border: none;
    border-radius: 0;
    /* Bords irrÃ©guliers avec clip-path */
    clip-path: polygon(
        0% 0%, 1% 3%, 0% 6%, 2% 9%, 0% 12%, 1% 15%,
        0% 18%, 2% 21%, 0% 24%, 1% 27%, 0% 30%, 2% 33%,
        0% 36%, 1% 39%, 0% 42%, 2% 45%, 0% 48%, 1% 51%,
        0% 54%, 2% 57%, 0% 60%, 1% 63%, 0% 66%, 2% 69%,
        0% 72%, 1% 75%, 0% 78%, 2% 81%, 0% 84%, 1% 87%,
        0% 90%, 2% 93%, 0% 96%, 1% 99%, 0% 100%,
        2% 100%, 5% 98%, 8% 100%, 12% 98%, 15% 100%, 18% 98%,
        22% 100%, 25% 98%, 28% 100%, 32% 98%, 35% 100%, 38% 98%,
        42% 100%, 45% 98%, 48% 100%, 52% 98%, 55% 100%, 58% 98%,
        62% 100%, 65% 98%, 68% 100%, 72% 98%, 75% 100%, 78% 98%,
        82% 100%, 85% 98%, 88% 100%, 92% 98%, 95% 100%, 98% 98%, 100% 100%,
        100% 98%, 98% 95%, 100% 92%, 98% 88%, 100% 85%, 98% 82%,
        100% 78%, 98% 75%, 100% 72%, 98% 68%, 100% 65%, 98% 62%,
        100% 58%, 98% 55%, 100% 52%, 98% 48%, 100% 45%, 98% 42%,
        100% 38%, 98% 35%, 100% 32%, 98% 28%, 100% 25%, 98% 22%,
        100% 18%, 98% 15%, 100% 12%, 98% 9%, 100% 6%, 98% 3%, 100% 0%
    );
    box-shadow: 
        /* Ombres profondes et rÃ©alistes */
        0 0 0 1px rgba(139, 115, 85, 0.3),
        0 0 0 2px rgba(107, 78, 61, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(139, 115, 85, 0.15),
        inset 0 0 60px rgba(107, 78, 61, 0.08);
    backdrop-filter: none;
    position: relative;
    padding: var(--spacing-xl);
    /* Effet de relief plus prononcÃ© */
    transform: perspective(1000px) rotateX(1.5deg) rotateY(-0.5deg);
    overflow: hidden;
}

/* Taches d'Ã¢ge subtiles sur le parchemin - Histoire */
.page-histoire .featured-video-moment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 150px 100px at 10% 15%, rgba(107, 78, 61, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 120px 90px at 90% 80%, rgba(139, 115, 85, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 100px 120px at 50% 5%, rgba(92, 64, 51, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 20% 95%, rgba(107, 78, 61, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse 110px 85px at 80% 20%, rgba(139, 115, 85, 0.11) 0%, transparent 55%);
    pointer-events: none;
    clip-path: inherit;
    opacity: 0.8;
    z-index: 1;
}

.page-histoire .featured-video-moment-info::after {
    display: none;
}

/* Typographie sur parchemin */
.page-histoire .featured-video-moment-category {
    color: #8B6F47;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.5),
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.page-histoire .featured-video-moment-title {
    color: #5C4033;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-histoire .featured-video-moment-title::after {
    background: linear-gradient(90deg, 
        #8B6F47 0%,
        #D4AF37 50%,
        #8B6F47 100%
    );
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.page-histoire .featured-video-moment-date {
    color: #6B4E3D;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.page-histoire .featured-video-moment-description {
    color: #4A3428;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Bouton YouTube trÃ¨s esthÃ©tique */
.page-histoire .btn-featured-video-youtube {
    background: 
        linear-gradient(135deg, 
            #D4AF37 0%,
            #F5E6D3 25%,
            #D4AF37 50%,
            #B8941E 75%,
            #D4AF37 100%
        );
    color: #2C1810;
    border: 3px solid #8B7355;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    box-shadow: 
        0 0 0 2px #D4AF37,
        0 0 0 4px #8B7355,
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.page-histoire .btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
}

.page-histoire .btn-featured-video-youtube:hover::before {
    left: 100%;
}

.page-histoire .btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 2px #D4AF37,
        0 0 0 4px #8B7355,
        0 0 0 6px #D4AF37,
        0 12px 32px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: #D4AF37;
}

.page-histoire .btn-featured-video-youtube:active {
    transform: translateY(-1px);
}

.page-histoire .btn-featured-video-youtube svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-elegant);
}

.page-histoire .btn-featured-video-youtube:hover svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.6));
}

/* Style spÃ©cifique pour Science - Fond image avec parchemin */
.page-science .featured-video-moment {
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    margin: var(--spacing-xxl) auto;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../assets/images/moment-science.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border: none;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-science .featured-video-moment::before {
    display: none;
}

.page-science .featured-video-moment-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: calc(var(--spacing-xxl) * 1.2);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Cadre ancien pour la vidÃ©o - Style Science */
.page-science .featured-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    border: 8px solid #1E40AF;
    box-shadow: 
        /* Ombre interne pour effet de profondeur */
        inset 0 0 0 4px #60A5FA,
        inset 0 0 0 6px #1E40AF,
        /* Ombres externes multiples pour effet de cadre ancien */
        0 0 0 2px #1E3A8A,
        0 0 0 4px #1E40AF,
        0 0 0 6px #1E3A8A,
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        /* Ombres internes pour relief */
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    background: var(--color-black);
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.page-science .featured-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* Ornements dÃ©coratifs intÃ©grÃ©s aux coins du cadre - Style Science */
.page-science .featured-video-embed::before,
.page-science .featured-video-embed::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

.page-science .featured-video-embed::before {
    top: -8px;
    left: -8px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #1E40AF 100%);
    clip-path: polygon(0% 0%, 0% 40%, 40% 0%);
    box-shadow: 
        0 0 0 2px #1E40AF,
        0 0 0 4px rgba(96, 165, 250, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 0 0 8px 0;
}

.page-science .featured-video-embed::after {
    bottom: -8px;
    right: -8px;
    background: 
        radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #1E40AF 100%);
    clip-path: polygon(60% 100%, 100% 100%, 100% 60%);
    box-shadow: 
        0 0 0 2px #1E40AF,
        0 0 0 4px rgba(96, 165, 250, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 8px 0 0 0;
}

.page-science .featured-video-embed:hover {
    transform: translateY(-4px);
    box-shadow: 
        inset 0 0 0 4px #60A5FA,
        inset 0 0 0 6px #1E40AF,
        0 0 0 2px #1E3A8A,
        0 0 0 4px #1E40AF,
        0 0 0 6px #1E3A8A,
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(96, 165, 250, 0.4),
        inset 0 4px 8px rgba(0, 0, 0, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4);
}

/* Partie info en style parchemin rÃ©aliste - Science */
.page-science .featured-video-moment-info {
    background: 
        /* Texture de grain trÃ¨s fine et rÃ©aliste */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>'),
        /* Texture de fibres de parchemin */
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.01) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.015) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.01) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.015) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        /* Taches d'Ã¢ge rÃ©alistes avec teinte bleue */
        radial-gradient(ellipse 120px 80px at 12% 18%, rgba(30, 64, 175, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 100px 60px at 88% 75%, rgba(37, 99, 235, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 45% 8%, rgba(29, 78, 216, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60px 80px at 25% 90%, rgba(30, 64, 175, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 90px 70px at 75% 25%, rgba(37, 99, 235, 0.09) 0%, transparent 50%),
        /* Lignes de pliage subtiles */
        linear-gradient(90deg, transparent 48%, rgba(30, 64, 175, 0.08) 49%, rgba(30, 64, 175, 0.08) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(29, 78, 216, 0.06) 49%, rgba(29, 78, 216, 0.06) 51%, transparent 52%),
        /* Gradient parchemin avec variations naturelles */
        linear-gradient(135deg, 
            #F5E6D3 0%,
            #F7E9D8 5%,
            #F5E6D3 10%,
            #F3E3CE 15%,
            #F5E6D3 20%,
            #F9F1E6 25%,
            #F5E6D3 30%,
            #F0E0C8 35%,
            #F5E6D3 40%,
            #F7E9D8 45%,
            #F5E6D3 50%,
            #F9F1E6 55%,
            #F5E6D3 60%,
            #F3E3CE 65%,
            #F5E6D3 70%,
            #F7E9D8 75%,
            #F5E6D3 80%,
            #F0E0C8 85%,
            #F5E6D3 90%,
            #F9F1E6 95%,
            #F5E6D3 100%
        );
    border: none;
    border-radius: 0;
    /* Bords irrÃ©guliers avec clip-path */
    clip-path: polygon(
        0% 0%, 1% 3%, 0% 6%, 2% 9%, 0% 12%, 1% 15%,
        0% 18%, 2% 21%, 0% 24%, 1% 27%, 0% 30%, 2% 33%,
        0% 36%, 1% 39%, 0% 42%, 2% 45%, 0% 48%, 1% 51%,
        0% 54%, 2% 57%, 0% 60%, 1% 63%, 0% 66%, 2% 69%,
        0% 72%, 1% 75%, 0% 78%, 2% 81%, 0% 84%, 1% 87%,
        0% 90%, 2% 93%, 0% 96%, 1% 99%, 0% 100%,
        2% 100%, 5% 98%, 8% 100%, 12% 98%, 15% 100%, 18% 98%,
        22% 100%, 25% 98%, 28% 100%, 32% 98%, 35% 100%, 38% 98%,
        42% 100%, 45% 98%, 48% 100%, 52% 98%, 55% 100%, 58% 98%,
        62% 100%, 65% 98%, 68% 100%, 72% 98%, 75% 100%, 78% 98%,
        82% 100%, 85% 98%, 88% 100%, 92% 98%, 95% 100%, 98% 98%, 100% 100%,
        100% 98%, 98% 95%, 100% 92%, 98% 88%, 100% 85%, 98% 82%,
        100% 78%, 98% 75%, 100% 72%, 98% 68%, 100% 65%, 98% 62%,
        100% 58%, 98% 55%, 100% 52%, 98% 48%, 100% 45%, 98% 42%,
        100% 38%, 98% 35%, 100% 32%, 98% 28%, 100% 25%, 98% 22%,
        100% 18%, 98% 15%, 100% 12%, 98% 9%, 100% 6%, 98% 3%, 100% 0%
    );
    box-shadow: 
        /* Ombres profondes et rÃ©alistes */
        0 0 0 1px rgba(30, 64, 175, 0.3),
        0 0 0 2px rgba(29, 78, 216, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(30, 64, 175, 0.15),
        inset 0 0 60px rgba(29, 78, 216, 0.08);
    backdrop-filter: none;
    position: relative;
    padding: var(--spacing-xl);
    /* Effet de relief plus prononcÃ© */
    transform: perspective(1000px) rotateX(1.5deg) rotateY(-0.5deg);
    overflow: hidden;
}

/* Taches d'Ã¢ge subtiles sur le parchemin - Science */
.page-science .featured-video-moment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 150px 100px at 10% 15%, rgba(30, 64, 175, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 120px 90px at 90% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 100px 120px at 50% 5%, rgba(29, 78, 216, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 20% 95%, rgba(30, 64, 175, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse 110px 85px at 80% 20%, rgba(37, 99, 235, 0.11) 0%, transparent 55%);
    pointer-events: none;
    clip-path: inherit;
    opacity: 0.8;
    z-index: 1;
}

.page-science .featured-video-moment-info::after {
    display: none;
}

/* Typographie sur parchemin - Science */
.page-science .featured-video-moment-category {
    color: #1E40AF;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.5),
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.page-science .featured-video-moment-title {
    color: #1E3A8A;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-science .featured-video-moment-title::after {
    background: linear-gradient(90deg, 
        #1E40AF 0%,
        #60A5FA 50%,
        #1E40AF 100%
    );
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
}

.page-science .featured-video-moment-date {
    color: #2563EB;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.page-science .featured-video-moment-description {
    color: #1E3A8A;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Bouton YouTube trÃ¨s esthÃ©tique - Science */
.page-science .btn-featured-video-youtube {
    background: 
        linear-gradient(135deg, 
            #3B82F6 0%,
            #93C5FD 25%,
            #3B82F6 50%,
            #2563EB 75%,
            #3B82F6 100%
        );
    color: #E0F2FE;
    border: 3px solid #1E40AF;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    box-shadow: 
        0 0 0 2px #60A5FA,
        0 0 0 4px #1E40AF,
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.page-science .btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
}

.page-science .btn-featured-video-youtube:hover::before {
    left: 100%;
}

.page-science .btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 2px #60A5FA,
        0 0 0 4px #1E40AF,
        0 0 0 6px #60A5FA,
        0 12px 32px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(96, 165, 250, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: #60A5FA;
}

.page-science .btn-featured-video-youtube:active {
    transform: translateY(-1px);
}

.page-science .btn-featured-video-youtube svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-elegant);
}

.page-science .btn-featured-video-youtube:hover svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(96, 165, 250, 0.6));
}

/* Style spÃ©cifique pour CinÃ©ma - Fond image avec parchemin */
.page-cinema .featured-video-moment {
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    margin: var(--spacing-xxl) auto;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../assets/images/moment-cinema.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border: none;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-cinema .featured-video-moment::before {
    display: none;
}

.page-cinema .featured-video-moment-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: calc(var(--spacing-xxl) * 1.2);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Cadre ancien pour la vidÃ©o - Style CinÃ©ma */
.page-cinema .featured-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    border: 8px solid #7F1D1D;
    box-shadow: 
        /* Ombre interne pour effet de profondeur */
        inset 0 0 0 4px #D4AF37,
        inset 0 0 0 6px #7F1D1D,
        /* Ombres externes multiples pour effet de cadre ancien */
        0 0 0 2px #5C1818,
        0 0 0 4px #7F1D1D,
        0 0 0 6px #5C1818,
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        /* Ombres internes pour relief */
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    background: var(--color-black);
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.page-cinema .featured-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* Ornements dÃ©coratifs intÃ©grÃ©s aux coins du cadre - Style CinÃ©ma */
.page-cinema .featured-video-embed::before,
.page-cinema .featured-video-embed::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

.page-cinema .featured-video-embed::before {
    top: -8px;
    left: -8px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #D4AF37 0%, #B8941E 50%, #7F1D1D 100%);
    clip-path: polygon(0% 0%, 0% 40%, 40% 0%);
    box-shadow: 
        0 0 0 2px #7F1D1D,
        0 0 0 4px rgba(212, 175, 55, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 0 0 8px 0;
}

.page-cinema .featured-video-embed::after {
    bottom: -8px;
    right: -8px;
    background: 
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #D4AF37 0%, #B8941E 50%, #7F1D1D 100%);
    clip-path: polygon(60% 100%, 100% 100%, 100% 60%);
    box-shadow: 
        0 0 0 2px #7F1D1D,
        0 0 0 4px rgba(212, 175, 55, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 8px 0 0 0;
}

.page-cinema .featured-video-embed:hover {
    transform: translateY(-4px);
    box-shadow: 
        inset 0 0 0 4px #D4AF37,
        inset 0 0 0 6px #7F1D1D,
        0 0 0 2px #5C1818,
        0 0 0 4px #7F1D1D,
        0 0 0 6px #5C1818,
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 4px 8px rgba(0, 0, 0, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4);
}

/* Partie info en style parchemin rÃ©aliste - CinÃ©ma */
.page-cinema .featured-video-moment-info {
    background: 
        /* Texture de grain trÃ¨s fine et rÃ©aliste */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>'),
        /* Texture de fibres de parchemin */
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.01) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.015) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.01) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.015) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        /* Taches d'Ã¢ge rÃ©alistes avec teinte bordeaux */
        radial-gradient(ellipse 120px 80px at 12% 18%, rgba(127, 29, 29, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 100px 60px at 88% 75%, rgba(153, 27, 27, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 45% 8%, rgba(92, 24, 24, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60px 80px at 25% 90%, rgba(127, 29, 29, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 90px 70px at 75% 25%, rgba(153, 27, 27, 0.09) 0%, transparent 50%),
        /* Lignes de pliage subtiles */
        linear-gradient(90deg, transparent 48%, rgba(127, 29, 29, 0.08) 49%, rgba(127, 29, 29, 0.08) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(92, 24, 24, 0.06) 49%, rgba(92, 24, 24, 0.06) 51%, transparent 52%),
        /* Gradient parchemin avec variations naturelles */
        linear-gradient(135deg, 
            #F5E6D3 0%,
            #F7E9D8 5%,
            #F5E6D3 10%,
            #F3E3CE 15%,
            #F5E6D3 20%,
            #F9F1E6 25%,
            #F5E6D3 30%,
            #F0E0C8 35%,
            #F5E6D3 40%,
            #F7E9D8 45%,
            #F5E6D3 50%,
            #F9F1E6 55%,
            #F5E6D3 60%,
            #F3E3CE 65%,
            #F5E6D3 70%,
            #F7E9D8 75%,
            #F5E6D3 80%,
            #F0E0C8 85%,
            #F5E6D3 90%,
            #F9F1E6 95%,
            #F5E6D3 100%
        );
    border: none;
    border-radius: 0;
    /* Bords irrÃ©guliers avec clip-path */
    clip-path: polygon(
        0% 0%, 1% 3%, 0% 6%, 2% 9%, 0% 12%, 1% 15%,
        0% 18%, 2% 21%, 0% 24%, 1% 27%, 0% 30%, 2% 33%,
        0% 36%, 1% 39%, 0% 42%, 2% 45%, 0% 48%, 1% 51%,
        0% 54%, 2% 57%, 0% 60%, 1% 63%, 0% 66%, 2% 69%,
        0% 72%, 1% 75%, 0% 78%, 2% 81%, 0% 84%, 1% 87%,
        0% 90%, 2% 93%, 0% 96%, 1% 99%, 0% 100%,
        2% 100%, 5% 98%, 8% 100%, 12% 98%, 15% 100%, 18% 98%,
        22% 100%, 25% 98%, 28% 100%, 32% 98%, 35% 100%, 38% 98%,
        42% 100%, 45% 98%, 48% 100%, 52% 98%, 55% 100%, 58% 98%,
        62% 100%, 65% 98%, 68% 100%, 72% 98%, 75% 100%, 78% 98%,
        82% 100%, 85% 98%, 88% 100%, 92% 98%, 95% 100%, 98% 98%, 100% 100%,
        100% 98%, 98% 95%, 100% 92%, 98% 88%, 100% 85%, 98% 82%,
        100% 78%, 98% 75%, 100% 72%, 98% 68%, 100% 65%, 98% 62%,
        100% 58%, 98% 55%, 100% 52%, 98% 48%, 100% 45%, 98% 42%,
        100% 38%, 98% 35%, 100% 32%, 98% 28%, 100% 25%, 98% 22%,
        100% 18%, 98% 15%, 100% 12%, 98% 9%, 100% 6%, 98% 3%, 100% 0%
    );
    box-shadow: 
        /* Ombres profondes et rÃ©alistes */
        0 0 0 1px rgba(127, 29, 29, 0.3),
        0 0 0 2px rgba(92, 24, 24, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(127, 29, 29, 0.15),
        inset 0 0 60px rgba(92, 24, 24, 0.08);
    backdrop-filter: none;
    position: relative;
    padding: var(--spacing-xl);
    /* Effet de relief plus prononcÃ© */
    transform: perspective(1000px) rotateX(1.5deg) rotateY(-0.5deg);
    overflow: hidden;
}

.page-cinema .featured-video-moment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 150px 100px at 10% 15%, rgba(127, 29, 29, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 120px 90px at 90% 80%, rgba(153, 27, 27, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 100px 120px at 50% 5%, rgba(92, 24, 24, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 20% 95%, rgba(127, 29, 29, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse 110px 85px at 80% 20%, rgba(153, 27, 27, 0.11) 0%, transparent 55%);
    pointer-events: none;
    clip-path: inherit;
    opacity: 0.8;
    z-index: 1;
}

.page-cinema .featured-video-moment-info::after {
    display: none;
}

/* Typographie sur parchemin - CinÃ©ma */
.page-cinema .featured-video-moment-category {
    color: #7F1D1D;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.5),
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.page-cinema .featured-video-moment-title {
    color: #5C1818;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-cinema .featured-video-moment-title::after {
    background: linear-gradient(90deg, 
        #7F1D1D 0%,
        #D4AF37 50%,
        #7F1D1D 100%
    );
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.page-cinema .featured-video-moment-date {
    color: #991B1B;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.page-cinema .featured-video-moment-description {
    color: #5C1818;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Bouton YouTube trÃ¨s esthÃ©tique - CinÃ©ma */
.page-cinema .btn-featured-video-youtube {
    background: 
        linear-gradient(135deg, 
            #EF4444 0%,
            #FCA5A5 25%,
            #EF4444 50%,
            #DC2626 75%,
            #EF4444 100%
        );
    color: #FFF8DC;
    border: 3px solid #7F1D1D;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    box-shadow: 
        0 0 0 2px #D4AF37,
        0 0 0 4px #7F1D1D,
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.page-cinema .btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
}

.page-cinema .btn-featured-video-youtube:hover::before {
    left: 100%;
}

.page-cinema .btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 2px #D4AF37,
        0 0 0 4px #7F1D1D,
        0 0 0 6px #D4AF37,
        0 12px 32px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: #D4AF37;
}

.page-cinema .btn-featured-video-youtube:active {
    transform: translateY(-1px);
}

.page-cinema .btn-featured-video-youtube svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-elegant);
}

.page-cinema .btn-featured-video-youtube:hover svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.6));
}

/* Style spÃ©cifique pour Hors-SÃ©rie - Rose profond avec accents cuivrÃ©s */
/* Style spÃ©cifique pour Hors-SÃ©rie - Fond image avec parchemin */
.page-hors-serie .featured-video-moment {
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    margin: var(--spacing-xxl) auto;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../assets/images/moment-hors-serie.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border: none;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-hors-serie .featured-video-moment::before {
    display: none;
}

.page-hors-serie .featured-video-moment-content {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: calc(var(--spacing-xxl) * 1.2);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Cadre ancien pour la vidÃ©o - Style Hors-SÃ©rie */
.page-hors-serie .featured-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    border: 8px solid #831843;
    box-shadow: 
        /* Ombre interne pour effet de profondeur */
        inset 0 0 0 4px #B87333,
        inset 0 0 0 6px #831843,
        /* Ombres externes multiples pour effet de cadre ancien */
        0 0 0 2px #6B1A3A,
        0 0 0 4px #831843,
        0 0 0 6px #6B1A3A,
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        /* Ombres internes pour relief */
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    background: var(--color-black);
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.page-hors-serie .featured-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

/* Ornements dÃ©coratifs intÃ©grÃ©s aux coins du cadre - Style Hors-SÃ©rie */
.page-hors-serie .featured-video-embed::before,
.page-hors-serie .featured-video-embed::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

.page-hors-serie .featured-video-embed::before {
    top: -8px;
    left: -8px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(184, 115, 51, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #B87333 0%, #9A5F2A 50%, #831843 100%);
    clip-path: polygon(0% 0%, 0% 40%, 40% 0%);
    box-shadow: 
        0 0 0 2px #831843,
        0 0 0 4px rgba(184, 115, 51, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 0 0 8px 0;
}

.page-hors-serie .featured-video-embed::after {
    bottom: -8px;
    right: -8px;
    background: 
        radial-gradient(circle at 70% 70%, rgba(184, 115, 51, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #B87333 0%, #9A5F2A 50%, #831843 100%);
    clip-path: polygon(60% 100%, 100% 100%, 100% 60%);
    box-shadow: 
        0 0 0 2px #831843,
        0 0 0 4px rgba(184, 115, 51, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 8px 0 0 0;
}

.page-hors-serie .featured-video-embed:hover {
    transform: translateY(-4px);
    box-shadow: 
        inset 0 0 0 4px #B87333,
        inset 0 0 0 6px #831843,
        0 0 0 2px #6B1A3A,
        0 0 0 4px #831843,
        0 0 0 6px #6B1A3A,
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(184, 115, 51, 0.4),
        inset 0 4px 8px rgba(0, 0, 0, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4);
}

/* Partie info en style parchemin rÃ©aliste - Hors-SÃ©rie */
.page-hors-serie .featured-video-moment-info {
    background: 
        /* Texture de grain trÃ¨s fine et rÃ©aliste */
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>'),
        /* Texture de fibres de parchemin */
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.01) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.015) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.01) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.015) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        /* Taches d'Ã¢ge rÃ©alistes avec teinte rose */
        radial-gradient(ellipse 120px 80px at 12% 18%, rgba(131, 24, 67, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 100px 60px at 88% 75%, rgba(159, 18, 57, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 45% 8%, rgba(107, 26, 58, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60px 80px at 25% 90%, rgba(131, 24, 67, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 90px 70px at 75% 25%, rgba(159, 18, 57, 0.09) 0%, transparent 50%),
        /* Lignes de pliage subtiles */
        linear-gradient(90deg, transparent 48%, rgba(131, 24, 67, 0.08) 49%, rgba(131, 24, 67, 0.08) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(107, 26, 58, 0.06) 49%, rgba(107, 26, 58, 0.06) 51%, transparent 52%),
        /* Gradient parchemin avec variations naturelles */
        linear-gradient(135deg, 
            #F5E6D3 0%,
            #F7E9D8 5%,
            #F5E6D3 10%,
            #F3E3CE 15%,
            #F5E6D3 20%,
            #F9F1E6 25%,
            #F5E6D3 30%,
            #F0E0C8 35%,
            #F5E6D3 40%,
            #F7E9D8 45%,
            #F5E6D3 50%,
            #F9F1E6 55%,
            #F5E6D3 60%,
            #F3E3CE 65%,
            #F5E6D3 70%,
            #F7E9D8 75%,
            #F5E6D3 80%,
            #F0E0C8 85%,
            #F5E6D3 90%,
            #F9F1E6 95%,
            #F5E6D3 100%
        );
    border: none;
    border-radius: 0;
    /* Bords irrÃ©guliers avec clip-path */
    clip-path: polygon(
        0% 0%, 1% 3%, 0% 6%, 2% 9%, 0% 12%, 1% 15%,
        0% 18%, 2% 21%, 0% 24%, 1% 27%, 0% 30%, 2% 33%,
        0% 36%, 1% 39%, 0% 42%, 2% 45%, 0% 48%, 1% 51%,
        0% 54%, 2% 57%, 0% 60%, 1% 63%, 0% 66%, 2% 69%,
        0% 72%, 1% 75%, 0% 78%, 2% 81%, 0% 84%, 1% 87%,
        0% 90%, 2% 93%, 0% 96%, 1% 99%, 0% 100%,
        2% 100%, 5% 98%, 8% 100%, 12% 98%, 15% 100%, 18% 98%,
        22% 100%, 25% 98%, 28% 100%, 32% 98%, 35% 100%, 38% 98%,
        42% 100%, 45% 98%, 48% 100%, 52% 98%, 55% 100%, 58% 98%,
        62% 100%, 65% 98%, 68% 100%, 72% 98%, 75% 100%, 78% 98%,
        82% 100%, 85% 98%, 88% 100%, 92% 98%, 95% 100%, 98% 98%, 100% 100%,
        100% 98%, 98% 95%, 100% 92%, 98% 88%, 100% 85%, 98% 82%,
        100% 78%, 98% 75%, 100% 72%, 98% 68%, 100% 65%, 98% 62%,
        100% 58%, 98% 55%, 100% 52%, 98% 48%, 100% 45%, 98% 42%,
        100% 38%, 98% 35%, 100% 32%, 98% 28%, 100% 25%, 98% 22%,
        100% 18%, 98% 15%, 100% 12%, 98% 9%, 100% 6%, 98% 3%, 100% 0%
    );
    box-shadow: 
        /* Ombres profondes et rÃ©alistes */
        0 0 0 1px rgba(131, 24, 67, 0.3),
        0 0 0 2px rgba(107, 26, 58, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(131, 24, 67, 0.15),
        inset 0 0 60px rgba(107, 26, 58, 0.08);
    backdrop-filter: none;
    position: relative;
    padding: var(--spacing-xl);
    /* Effet de relief plus prononcÃ© */
    transform: perspective(1000px) rotateX(1.5deg) rotateY(-0.5deg);
    overflow: hidden;
}

.page-hors-serie .featured-video-moment-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 150px 100px at 10% 15%, rgba(131, 24, 67, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 120px 90px at 90% 80%, rgba(159, 18, 57, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 100px 120px at 50% 5%, rgba(107, 26, 58, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 20% 95%, rgba(131, 24, 67, 0.09) 0%, transparent 50%),
        radial-gradient(ellipse 110px 85px at 80% 20%, rgba(159, 18, 57, 0.11) 0%, transparent 55%);
    pointer-events: none;
    clip-path: inherit;
    opacity: 0.8;
    z-index: 1;
}

.page-hors-serie .featured-video-moment-info::after {
    display: none;
}

/* Typographie sur parchemin - Hors-SÃ©rie */
.page-hors-serie .featured-video-moment-category {
    color: #831843;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.5),
        0 1px 1px rgba(0, 0, 0, 0.2);
}

.page-hors-serie .featured-video-moment-title {
    color: #6B1A3A;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-hors-serie .featured-video-moment-title::after {
    background: linear-gradient(90deg, 
        #831843 0%,
        #B87333 50%,
        #831843 100%
    );
    box-shadow: 0 0 8px rgba(184, 115, 51, 0.4);
}

.page-hors-serie .featured-video-moment-date {
    color: #9F1239;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.page-hors-serie .featured-video-moment-description {
    color: #6B1A3A;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Bouton YouTube trÃ¨s esthÃ©tique - Hors-SÃ©rie */
.page-hors-serie .btn-featured-video-youtube {
    background: 
        linear-gradient(135deg, 
            #EC4899 0%,
            #F9A8D4 25%,
            #EC4899 50%,
            #DB2777 75%,
            #EC4899 100%
        );
    color: #FFF8DC;
    border: 3px solid #831843;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    box-shadow: 
        0 0 0 2px #B87333,
        0 0 0 4px #831843,
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.page-hors-serie .btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
}

.page-hors-serie .btn-featured-video-youtube:hover::before {
    left: 100%;
}

.page-hors-serie .btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 2px #B87333,
        0 0 0 4px #831843,
        0 0 0 6px #B87333,
        0 12px 32px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(184, 115, 51, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: #B87333;
}

.page-hors-serie .btn-featured-video-youtube:active {
    transform: translateY(-1px);
}

.page-hors-serie .btn-featured-video-youtube svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-elegant);
}

.page-hors-serie .btn-featured-video-youtube:hover svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(184, 115, 51, 0.6));
}

/* Styles pour la vidÃ©o Ã  la une sur la page d'accueil selon la catÃ©gorie */
/* Hors-SÃ©rie sur page d'accueil */
.page-home .featured-video-category-hors-serie.featured-video-moment {
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    margin: var(--spacing-xxl) auto;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../assets/images/moment-hors-serie.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border: none;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-home .featured-video-category-hors-serie.featured-video-moment::before {
    display: none;
}

.page-home .featured-video-category-hors-serie .featured-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    border: 8px solid #831843;
    box-shadow: 
        inset 0 0 0 4px #B87333,
        inset 0 0 0 6px #831843,
        0 0 0 2px #6B1A3A,
        0 0 0 4px #831843,
        0 0 0 6px #6B1A3A,
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    background: var(--color-black);
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.page-home .featured-video-category-hors-serie .featured-video-embed::before,
.page-home .featured-video-category-hors-serie .featured-video-embed::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

.page-home .featured-video-category-hors-serie .featured-video-embed::before {
    top: -8px;
    left: -8px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(184, 115, 51, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #B87333 0%, #9A5F2A 50%, #831843 100%);
    clip-path: polygon(0% 0%, 0% 40%, 40% 0%);
    box-shadow: 
        0 0 0 2px #831843,
        0 0 0 4px rgba(184, 115, 51, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 0 0 8px 0;
}

.page-home .featured-video-category-hors-serie .featured-video-embed::after {
    bottom: -8px;
    right: -8px;
    background: 
        radial-gradient(circle at 70% 70%, rgba(184, 115, 51, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #B87333 0%, #9A5F2A 50%, #831843 100%);
    clip-path: polygon(60% 100%, 100% 100%, 100% 60%);
    box-shadow: 
        0 0 0 2px #831843,
        0 0 0 4px rgba(184, 115, 51, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 8px 0 0 0;
}

.page-home .featured-video-category-hors-serie .featured-video-embed:hover {
    transform: translateY(-4px);
    box-shadow: 
        inset 0 0 0 4px #B87333,
        inset 0 0 0 6px #831843,
        0 0 0 2px #6B1A3A,
        0 0 0 4px #831843,
        0 0 0 6px #6B1A3A,
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(184, 115, 51, 0.4),
        inset 0 4px 8px rgba(0, 0, 0, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4);
}

.page-home .featured-video-category-hors-serie .featured-video-moment-info {
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>'),
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.01) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.015) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.01) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.015) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        radial-gradient(ellipse 120px 80px at 12% 18%, rgba(131, 24, 67, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 100px 120px at 88% 25%, rgba(184, 115, 51, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 90px 100px at 25% 75%, rgba(131, 24, 67, 0.13) 0%, transparent 50%),
        radial-gradient(ellipse 110px 85px at 75% 82%, rgba(184, 115, 51, 0.11) 0%, transparent 52%),
        radial-gradient(ellipse 95px 110px at 50% 10%, rgba(131, 24, 67, 0.14) 0%, transparent 48%),
        linear-gradient(135deg, #F5E6D3 0%, #E8D5B7 25%, #F5E6D3 50%, #E8D5B7 75%, #F5E6D3 100%);
    border: 2px solid #B87333;
    border-radius: 0;
    clip-path: polygon(
        0% 0%, 
        0% calc(100% - 20px),
        10px calc(100% - 10px),
        20px 100%,
        calc(100% - 20px) 100%,
        calc(100% - 10px) calc(100% - 10px),
        100% calc(100% - 20px),
        100% 0%
    );
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(131, 24, 67, 0.3);
}

.page-home .featured-video-category-hors-serie .featured-video-moment-title {
    color: #6B1A3A;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-home .featured-video-category-hors-serie .featured-video-moment-title::after {
    background: linear-gradient(90deg, 
        #831843 0%,
        #B87333 50%,
        #831843 100%
    );
    box-shadow: 0 0 8px rgba(184, 115, 51, 0.4);
}

.page-home .featured-video-category-hors-serie .featured-video-moment-date {
    color: #9F1239;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.page-home .featured-video-category-hors-serie .featured-video-moment-description {
    color: #6B1A3A;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.page-home .featured-video-category-hors-serie .btn-featured-video-youtube {
    background: 
        linear-gradient(135deg, 
            #EC4899 0%,
            #F9A8D4 25%,
            #EC4899 50%,
            #DB2777 75%,
            #EC4899 100%
        );
    color: #FFF8DC;
    border: 3px solid #831843;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    box-shadow: 
        0 0 0 2px #B87333,
        0 0 0 4px #831843,
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.page-home .featured-video-category-hors-serie .btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
}

.page-home .featured-video-category-hors-serie .btn-featured-video-youtube:hover::before {
    left: 100%;
}

.page-home .featured-video-category-hors-serie .btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 2px #B87333,
        0 0 0 4px #831843,
        0 0 0 6px #B87333,
        0 12px 32px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(184, 115, 51, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: #B87333;
}

.page-home .featured-video-category-hors-serie .btn-featured-video-youtube:active {
    transform: translateY(-1px);
}

.page-home .featured-video-category-hors-serie .btn-featured-video-youtube svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    transition: transform var(--transition-elegant);
}

.page-home .featured-video-category-hors-serie .btn-featured-video-youtube:hover svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(184, 115, 51, 0.6));
}

/* Styles pour Histoire */
.page-home .featured-video-category-histoire.featured-video-moment {
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    margin: var(--spacing-xxl) auto;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../assets/images/moment-histoire.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-home .featured-video-category-histoire .featured-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    border: 8px solid #8B7355;
    box-shadow: 
        inset 0 0 0 4px #D4AF37,
        inset 0 0 0 6px #8B7355,
        0 0 0 2px #5C4033,
        0 0 0 4px #8B7355,
        0 0 0 6px #5C4033,
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    background: var(--color-black);
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.page-home .featured-video-category-histoire .featured-video-embed::before,
.page-home .featured-video-category-histoire .featured-video-embed::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
    pointer-events: none;
}

.page-home .featured-video-category-histoire .featured-video-embed::before {
    top: -8px;
    left: -8px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #D4AF37 0%, #B8941E 50%, #8B7355 100%);
    clip-path: polygon(0% 0%, 0% 40%, 40% 0%);
    box-shadow: 
        0 0 0 2px #8B7355,
        0 0 0 4px rgba(212, 175, 55, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 0 0 8px 0;
}

.page-home .featured-video-category-histoire .featured-video-embed::after {
    bottom: -8px;
    right: -8px;
    background: 
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #D4AF37 0%, #B8941E 50%, #8B7355 100%);
    clip-path: polygon(60% 100%, 100% 100%, 100% 60%);
    box-shadow: 
        0 0 0 2px #8B7355,
        0 0 0 4px rgba(212, 175, 55, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(255, 255, 255, 0.3);
    border-radius: 8px 0 0 0;
}

.page-home .featured-video-category-histoire .featured-video-embed:hover {
    transform: translateY(-4px);
    box-shadow: 
        inset 0 0 0 4px #D4AF37,
        inset 0 0 0 6px #8B7355,
        0 0 0 2px #5C4033,
        0 0 0 4px #8B7355,
        0 0 0 6px #5C4033,
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4),
        inset 0 4px 8px rgba(0, 0, 0, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4);
}

.page-home .featured-video-category-histoire .featured-video-embed iframe {
    z-index: 1;
}

.page-home .featured-video-category-histoire .featured-video-moment-info {
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>'),
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.015) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.01) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.015) 0px,
            transparent 0.3px,
            transparent 0.7px,
            rgba(0, 0, 0, 0.01) 1px,
            transparent 1.3px,
            transparent 1.7px,
            rgba(0, 0, 0, 0.015) 2px,
            transparent 2.3px,
            transparent 2.7px,
            rgba(0, 0, 0, 0.02) 3px
        ),
        radial-gradient(ellipse 120px 80px at 12% 18%, rgba(107, 78, 61, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 100px 60px at 88% 75%, rgba(139, 115, 85, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 80px 100px at 45% 8%, rgba(92, 64, 51, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60px 80px at 25% 90%, rgba(107, 78, 61, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 90px 70px at 75% 25%, rgba(139, 115, 85, 0.09) 0%, transparent 50%),
        linear-gradient(90deg, transparent 48%, rgba(107, 78, 61, 0.08) 49%, rgba(107, 78, 61, 0.08) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(92, 64, 51, 0.06) 49%, rgba(92, 64, 51, 0.06) 51%, transparent 52%),
        linear-gradient(135deg, 
            #F5E6D3 0%,
            #F7E9D8 5%,
            #F5E6D3 10%,
            #F3E3CE 15%,
            #F5E6D3 20%,
            #F9F1E6 25%,
            #F5E6D3 30%,
            #F0E0C8 35%,
            #F5E6D3 40%,
            #F7E9D8 45%,
            #F5E6D3 50%,
            #F9F1E6 55%,
            #F5E6D3 60%,
            #F3E3CE 65%,
            #F5E6D3 70%,
            #F7E9D8 75%,
            #F5E6D3 80%,
            #F0E0C8 85%,
            #F5E6D3 90%,
            #F9F1E6 95%,
            #F5E6D3 100%
        );
    border: none;
    border-radius: 0;
    clip-path: polygon(
        0% 0%, 1% 3%, 0% 6%, 2% 9%, 0% 12%, 1% 15%,
        0% 18%, 2% 21%, 0% 24%, 1% 27%, 0% 30%, 2% 33%,
        0% 36%, 1% 39%, 0% 42%, 2% 45%, 0% 48%, 1% 51%,
        0% 54%, 2% 57%, 0% 60%, 1% 63%, 0% 66%, 2% 69%,
        0% 72%, 1% 75%, 0% 78%, 2% 81%, 0% 84%, 1% 87%,
        0% 90%, 2% 93%, 0% 96%, 1% 99%, 0% 100%,
        2% 100%, 5% 98%, 8% 100%, 12% 98%, 15% 100%, 18% 98%,
        22% 100%, 25% 98%, 28% 100%, 32% 98%, 35% 100%, 38% 98%,
        42% 100%, 45% 98%, 48% 100%, 52% 98%, 55% 100%, 58% 98%,
        62% 100%, 65% 98%, 68% 100%, 72% 98%, 75% 100%, 78% 98%,
        82% 100%, 85% 98%, 88% 100%, 92% 98%, 95% 100%, 98% 98%, 100% 100%,
        100% 98%, 98% 95%, 100% 92%, 98% 88%, 100% 85%, 98% 82%,
        100% 78%, 98% 75%, 100% 72%, 98% 68%, 100% 65%, 98% 62%,
        100% 58%, 98% 55%, 100% 52%, 98% 48%, 100% 45%, 98% 42%,
        100% 38%, 98% 35%, 100% 32%, 98% 28%, 100% 25%, 98% 22%,
        100% 18%, 98% 15%, 100% 12%, 98% 9%, 100% 6%, 98% 3%, 100% 0%
    );
    box-shadow: 
        0 0 0 1px rgba(139, 115, 85, 0.3),
        0 0 0 2px rgba(107, 78, 61, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.5),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(139, 115, 85, 0.15),
        inset 0 0 60px rgba(107, 78, 61, 0.08);
    backdrop-filter: none;
    position: relative;
    padding: var(--spacing-xl);
    transform: perspective(1000px) rotateX(1.5deg) rotateY(-0.5deg);
    overflow: hidden;
}

.page-home .featured-video-category-histoire .featured-video-moment-title {
    color: #5C4033;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-home .featured-video-category-histoire .featured-video-moment-title::after {
    background: linear-gradient(90deg, 
        #8B7355 0%,
        #D4AF37 50%,
        #8B7355 100%
    );
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.page-home .featured-video-category-histoire .featured-video-moment-date {
    color: #8B7355;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.page-home .featured-video-category-histoire .featured-video-moment-description {
    color: #5C4033;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.page-home .featured-video-category-histoire .btn-featured-video-youtube {
    background: linear-gradient(135deg, 
        #D4AF37 0%,
        #F5E6D3 25%,
        #D4AF37 50%,
        #B8941E 75%,
        #D4AF37 100%
    );
    color: #5C4033;
    border: 3px solid #8B7355;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    box-shadow: 
        0 0 0 2px #D4AF37,
        0 0 0 4px #8B7355,
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.page-home .featured-video-category-histoire .btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
}

.page-home .featured-video-category-histoire .btn-featured-video-youtube:hover::before {
    left: 100%;
}

.page-home .featured-video-category-histoire .btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 2px #D4AF37,
        0 0 0 4px #8B7355,
        0 0 0 6px #D4AF37,
        0 12px 32px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: #D4AF37;
}

/* Styles pour Science */
.page-home .featured-video-category-science.featured-video-moment {
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    margin: var(--spacing-xxl) auto;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../assets/images/moment-science.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-home .featured-video-category-science .featured-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    border: 8px solid #2563EB;
    box-shadow: 
        inset 0 0 0 4px #3B82F6,
        inset 0 0 0 6px #2563EB,
        0 0 0 2px #1E40AF,
        0 0 0 4px #2563EB,
        0 0 0 6px #1E40AF,
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    background: var(--color-black);
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.page-home .featured-video-category-science .featured-video-embed iframe {
    z-index: 1;
}

.page-home .featured-video-category-science .featured-video-moment-info {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 25%, #DBEAFE 50%, #BFDBFE 75%, #DBEAFE 100%);
    border: 2px solid #3B82F6;
    border-radius: 0;
    clip-path: polygon(
        0% 0%, 
        0% calc(100% - 20px),
        10px calc(100% - 10px),
        20px 100%,
        calc(100% - 20px) 100%,
        calc(100% - 10px) calc(100% - 10px),
        100% calc(100% - 20px),
        100% 0%
    );
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(37, 99, 235, 0.3);
}

.page-home .featured-video-category-science .featured-video-moment-title {
    color: #1E40AF;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-home .featured-video-category-science .featured-video-moment-title::after {
    background: linear-gradient(90deg, 
        #2563EB 0%,
        #3B82F6 50%,
        #2563EB 100%
    );
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.page-home .featured-video-category-science .featured-video-moment-date {
    color: #2563EB;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.page-home .featured-video-category-science .featured-video-moment-description {
    color: #1E40AF;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.page-home .featured-video-category-science .btn-featured-video-youtube {
    background: linear-gradient(135deg, 
        #3B82F6 0%,
        #60A5FA 25%,
        #3B82F6 50%,
        #2563EB 75%,
        #3B82F6 100%
    );
    color: #FFF8DC;
    border: 3px solid #2563EB;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    box-shadow: 
        0 0 0 2px #3B82F6,
        0 0 0 4px #2563EB,
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.page-home .featured-video-category-science .btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
}

.page-home .featured-video-category-science .btn-featured-video-youtube:hover::before {
    left: 100%;
}

.page-home .featured-video-category-science .btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 2px #3B82F6,
        0 0 0 4px #2563EB,
        0 0 0 6px #3B82F6,
        0 12px 32px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(59, 130, 246, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: #3B82F6;
}

/* Styles pour Cinéma */
.page-home .featured-video-category-cinema.featured-video-moment {
    max-width: var(--max-width);
    width: calc(100% - var(--spacing-md) * 2);
    margin: var(--spacing-xxl) auto;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-xl);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../assets/images/moment-cinema.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-home .featured-video-category-cinema .featured-video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 4px;
    border: 8px solid #DC2626;
    box-shadow: 
        inset 0 0 0 4px #EF4444,
        inset 0 0 0 6px #DC2626,
        0 0 0 2px #B91C1C,
        0 0 0 4px #DC2626,
        0 0 0 6px #B91C1C,
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    background: var(--color-black);
    overflow: hidden;
    transition: all var(--transition-elegant);
}

.page-home .featured-video-category-cinema .featured-video-embed iframe {
    z-index: 1;
}

.page-home .featured-video-category-cinema .featured-video-moment-info {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 25%, #FEE2E2 50%, #FECACA 75%, #FEE2E2 100%);
    border: 2px solid #EF4444;
    border-radius: 0;
    clip-path: polygon(
        0% 0%, 
        0% calc(100% - 20px),
        10px calc(100% - 10px),
        20px 100%,
        calc(100% - 20px) 100%,
        calc(100% - 10px) calc(100% - 10px),
        100% calc(100% - 20px),
        100% 0%
    );
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(220, 38, 38, 0.3);
}

.page-home .featured-video-category-cinema .featured-video-moment-title {
    color: #B91C1C;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-home .featured-video-category-cinema .featured-video-moment-title::after {
    background: linear-gradient(90deg, 
        #DC2626 0%,
        #EF4444 50%,
        #DC2626 100%
    );
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.page-home .featured-video-category-cinema .featured-video-moment-date {
    color: #DC2626;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.page-home .featured-video-category-cinema .featured-video-moment-description {
    color: #B91C1C;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.page-home .featured-video-category-cinema .btn-featured-video-youtube {
    background: linear-gradient(135deg, 
        #EF4444 0%,
        #F87171 25%,
        #EF4444 50%,
        #DC2626 75%,
        #EF4444 100%
    );
    color: #FFF8DC;
    border: 3px solid #DC2626;
    border-radius: 0;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 40px;
    box-shadow: 
        0 0 0 2px #EF4444,
        0 0 0 4px #DC2626,
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-md);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.page-home .featured-video-category-cinema .btn-featured-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.6s;
}

.page-home .featured-video-category-cinema .btn-featured-video-youtube:hover::before {
    left: 100%;
}

.page-home .featured-video-category-cinema .btn-featured-video-youtube:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 2px #EF4444,
        0 0 0 4px #DC2626,
        0 0 0 6px #EF4444,
        0 12px 32px rgba(0, 0, 0, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(239, 68, 68, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4);
    border-color: #EF4444;
}

/* Responsive - Style Antique */
@media (max-width: 968px) {
    .featured-video-moment {
        width: calc(100% - var(--spacing-sm) * 2);
        padding: var(--spacing-xl) var(--spacing-md);
        border-radius: 20px;
    }
    
    .featured-video-moment-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .featured-video-moment-video {
        order: 1;
    }
    
    .featured-video-moment-info {
        order: 2;
        padding: var(--spacing-lg);
    }
    
    .featured-video-moment-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        padding-bottom: var(--spacing-sm);
    }
    
    .featured-video-moment-title::after {
        width: 60px;
    }
    
    .featured-video-moment-category {
        font-size: clamp(0.8125rem, 1.3vw, 1rem);
        letter-spacing: 2px;
    }
    
    .featured-video-moment-description {
        font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
    }
    
    .btn-featured-video-youtube {
        width: 100%;
        padding: 14px 28px;
        font-size: clamp(0.875rem, 1vw, 1rem);
        justify-content: center;
    }
    
    .btn-featured-video-youtube svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .featured-video-moment {
        padding: var(--spacing-lg) var(--spacing-sm);
        border-radius: 16px;
        margin: var(--spacing-xl) auto;
    }
    
    .featured-video-moment-content {
        gap: var(--spacing-lg);
    }
    
    .featured-video-moment-info {
        padding: var(--spacing-md);
    }
    
    .featured-video-moment-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .featured-video-moment-title::after {
        width: 50px;
        height: 1.5px;
    }
    
    .featured-video-moment-category {
        font-size: 0.8125rem;
        letter-spacing: 1.5px;
        margin-bottom: var(--spacing-sm);
    }
    
    .featured-video-moment-date {
        font-size: 0.8125rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .featured-video-moment-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .btn-featured-video-youtube {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .btn-featured-video-youtube svg {
        width: 18px;
        height: 18px;
    }
}

/* Grille de vidÃ©os */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

/* Grille de 4 vidÃ©os pour la page d'accueil */
#homeVideos.videos-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    #homeVideos.videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #homeVideos.videos-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-card-image {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: var(--color-black);
}

.video-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-card-content {
    padding: var(--spacing-md);
}

.video-card-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-black);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: var(--font-size-small);
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

.video-card-youtube-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-color);
    text-decoration: none;
    font-size: var(--font-size-small);
    font-weight: 600;
    margin-top: var(--spacing-sm);
    transition: all var(--transition-fast);
}

.video-card-youtube-link:hover {
    color: var(--accent-color);
    gap: var(--spacing-sm);
}

.video-card-youtube-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.video-card-youtube-link:hover svg {
    transform: translateX(2px);
}

/* Preview d'article */
.articles-preview {
    margin-top: var(--spacing-lg);
}

.article-preview-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.article-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-preview-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.article-preview-image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.article-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-preview-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-preview-category {
    font-size: var(--font-size-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}

.article-preview-title {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
    line-height: 1.3;
}

.article-preview-excerpt {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.article-preview-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: var(--font-size-small);
    color: var(--color-gray);
}

.article-preview-author {
    font-weight: 600;
}

/* CTA Section - Style premium avec image de fond et effets */
.cta-section {
    position: relative;
    background: 
        linear-gradient(135deg, var(--accent-color) 0%, rgba(100, 0, 83, 0.95) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23grain)"/></svg>');
    background-size: cover, 200px 200px;
    background-position: center;
    color: var(--color-white);
    padding: var(--spacing-xxl) var(--spacing-md);
    margin-top: var(--spacing-xxl);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Overlay avec gradient fondu */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Effets de lumiÃ¨re animÃ©s (LED) */
.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 30%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-playlist {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: var(--color-white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
    font-weight: 900;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.5),
            0 2px 10px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 255, 255, 0.2);
    }
    100% {
        text-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.5),
            0 2px 10px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(255, 255, 255, 0.3),
            0 0 60px rgba(255, 255, 255, 0.1);
    }
}

.cta-content p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Bouton CTA Principal - Style premium avec effets LED et ombres */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    color: var(--accent-color);
    padding: 20px 48px;
    border-radius: 50px;
    font-weight: 900;
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 2;
}

/* Effet shimmer animÃ© continu */
.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.7), 
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.7),
        transparent
    );
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -200%;
    }
    50% {
        left: 200%;
    }
    100% {
        left: 200%;
    }
}

/* Effet de lumiÃ¨re LED autour du bouton (halo pulsant) */
.btn-cta-primary::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.6) 100%
    );
    border-radius: 50px;
    opacity: 0.6;
    z-index: -1;
    filter: blur(15px);
    animation: pulseHalo 2.5s ease-in-out infinite;
}

@keyframes pulseHalo {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
        filter: blur(15px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.08);
        filter: blur(20px);
    }
}

.btn-cta-primary:hover::after {
    opacity: 1;
    animation: pulseHalo 1s ease-in-out infinite;
    filter: blur(25px);
}

.btn-cta-primary:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 0 6px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(255, 255, 255, 0.5),
        0 0 100px rgba(255, 255, 255, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.95),
        inset 0 -3px 0 rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #f0f0f0 100%);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-cta-primary:active {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 18px 55px rgba(0, 0, 0, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 255, 255, 0.4);
}

.btn-cta-primary span {
    position: relative;
    z-index: 2;
    font-weight: 900;
}

.btn-cta-primary svg {
    width: 30px;
    height: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.btn-cta-primary:hover svg {
    transform: scale(1.25) rotate(12deg);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

/* Bouton CTA Secondaire - Style Ã©lÃ©gant */
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-cta-secondary:hover {
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.btn-cta-secondary:hover::before {
    width: 100%;
}

.btn-cta-secondary:active {
    transform: translateY(-1px);
}

.btn-cta-secondary svg {
    transition: transform 0.3s ease;
}

.btn-cta-secondary:hover svg {
    transform: translateX(4px);
}

/* Animation d'apparition pour le CTA */
@keyframes ctaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-playlist {
    animation: ctaFadeInUp 0.6s ease-out;
}

.cta-content h3 {
    animation: ctaFadeInUp 0.6s ease-out 0.1s both;
}

.cta-content p {
    animation: ctaFadeInUp 0.6s ease-out 0.2s both;
}

.btn-cta-primary {
    animation: ctaFadeInUp 0.6s ease-out 0.3s both;
}

/* Responsive */
@media (max-width: 768px) {
    .page-home .hero {
        min-height: 90vh;
    }
    
    .page-home .hero-content {
        padding: var(--spacing-lg) var(--spacing-md);
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .hero-title-line {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
        letter-spacing: 2px !important;
    }
    
    .hero-subtitle {
        font-size: clamp(1.125rem, 4vw, 1.5rem) !important;
    }
    
    .hero-description p {
        font-size: clamp(0.9375rem, 3vw, 1.0625rem) !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-btn {
        width: 100%;
        padding: 14px 28px;
    }
    
    .hero-particles {
        display: none; /* DÃ©sactiver les particules sur mobile pour les performances */
    }
    
    .hero-video-item iframe {
        width: 177.77777778vh;
        height: 56.25vw;
        min-width: 100%;
        min-height: 100%;
    }
    
    .hero-overlay::after {
        display: none; /* DÃ©sactiver l'effet de lumiÃ¨re sur mobile pour les performances */
    }

    .section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .team-category-card {
        aspect-ratio: 3 / 2;
    }
    
    .team-category-label {
        padding: var(--spacing-sm) var(--spacing-md);
        max-width: 95%;
    }
    
    .team-category-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .team-category-subtitle {
        font-size: 0.8125rem;
    }
    
    .team-members {
        top: var(--spacing-sm);
        left: var(--spacing-sm);
        right: var(--spacing-sm);
    }
    
    /* Page Ã©quipe responsive */
    .team-header {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .team-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-lg);
    }
    
    .team-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .team-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .team-stat-card {
        min-width: 100px;
        flex: 1;
    }
    
    .team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-card {
        flex-direction: column;
        text-align: center;
    }
    
    .team-member-avatar {
        margin: 0 auto var(--spacing-md);
    }
    
    .team-section-header {
        flex-wrap: wrap;
    }
    
    .team-section-count {
        margin-left: 0;
        width: 100%;
    }

    .categories-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .category-preview-card {
        aspect-ratio: 4 / 3;
    }
    
    .category-preview-content {
        padding: var(--spacing-md);
    }
    
    .category-preview-label {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .category-preview-title {
        font-size: clamp(1.375rem, 4vw, 1.875rem);
    }
    
    .category-preview-description {
        font-size: 0.8125rem;
    }
    
    .category-preview-arrow {
        width: 40px;
        height: 40px;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    /* Header Histoire responsive */
    .page-histoire .category-hero {
        background-size: 150% auto;
        padding: calc(var(--spacing-xl) * 1.2) var(--spacing-md);
    }
    
    .page-histoire .category-hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .page-histoire .category-hero p {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    /* Header Science responsive */
    .page-science .category-hero {
        background-size: 150% auto;
        padding: calc(var(--spacing-xl) * 1.2) var(--spacing-md);
    }
    
    .page-science .category-hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .page-science .category-hero p {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    /* Header CinÃ©ma responsive */
    .page-cinema .category-hero {
        background-size: 150% auto;
        padding: calc(var(--spacing-xl) * 1.2) var(--spacing-md);
    }
    
    .page-cinema .category-hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .page-cinema .category-hero p {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    /* Header Hors-SÃ©rie responsive */
    .page-hors-serie .category-hero {
        background-size: 150% auto;
        padding: calc(var(--spacing-xl) * 1.2) var(--spacing-md);
    }
    
    .page-hors-serie .category-hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .page-hors-serie .category-hero p {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    /* Header Contact responsive */
    .page-contact .contact-hero {
        background-size: 150% auto;
        padding: calc(var(--spacing-xl) * 1.2) var(--spacing-md);
    }
    
    .page-contact .contact-hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .page-contact .contact-hero p {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    .page-contact .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .page-contact .contact-info {
        position: static;
    }
    
    .page-contact .contact-form-card {
        padding: var(--spacing-xl);
    }
    
    .section-header-with-action {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .article-preview-content {
        grid-template-columns: 1fr;
    }
    
    .article-preview-image {
        aspect-ratio: 16/9;
    }
    
    .btn-cta-primary {
        padding: 14px 28px;
        font-size: var(--font-size-small);
    }
}

/* Page de dÃ©tail d'article */
.article-detail-page {
    padding: var(--spacing-xl) var(--spacing-md);
}

.article-detail {
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-header {
    margin-bottom: var(--spacing-lg);
}

.article-detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.article-detail-back {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-gray);
    text-decoration: none;
    font-size: var(--font-size-small);
    transition: color var(--transition-fast);
}

.article-detail-back:hover {
    color: var(--accent-color);
}

.article-detail-back svg {
    width: 16px;
    height: 16px;
}

.article-detail-back-right {
    margin-left: auto;
}

.article-detail-back-right span {
    order: 1;
}

.article-detail-back-right svg {
    order: 2;
    margin-left: var(--spacing-xs);
}

.article-detail-category {
    font-size: var(--font-size-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.article-detail-image {
    width: 100%;
    margin-bottom: var(--spacing-xl);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-detail-content {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.article-detail-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.article-detail-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-gray-light);
    font-size: var(--font-size-small);
    color: var(--color-gray);
}

.article-detail-author {
    font-weight: 500;
}

.article-detail-body {
    font-size: var(--font-size-large);
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.article-detail-body p {
    margin-bottom: var(--spacing-md);
}

.article-detail-body br {
    line-height: 2;
}

.error-state {
    text-align: center;
    padding: var(--spacing-xxl);
    max-width: 600px;
    margin: 0 auto;
}

.error-state h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.error-state p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .article-detail-content {
        padding: var(--spacing-md);
    }
    
    .article-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
}

/* Page VidÃ©o */
.video-page {
    padding: var(--spacing-xxl) 0;
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(var(--header-height) + var(--spacing-xxl));
}

.video-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.video-player-section {
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-lg));
}

.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.2);
    background: var(--color-black);
    transition: transform var(--transition-elegant);
}

.video-player:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.35),
        0 12px 32px rgba(0, 0, 0, 0.25);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.video-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.9375rem;
    flex-wrap: wrap;
}

.video-category {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8125rem;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.video-date {
    color: var(--color-gray);
    font-weight: 500;
    font-size: 0.9375rem;
}

.video-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: var(--color-black);
    letter-spacing: -0.5px;
}

.video-description {
    margin: 0;
}

.video-description-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin: 0;
}

.video-description-content p {
    margin-bottom: var(--spacing-md);
}

.video-description-content p:last-child {
    margin-bottom: 0;
}

.video-actions {
    margin-top: var(--spacing-md);
}

.btn-video-youtube {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 16px 32px;
    background: #FF0000;
    color: var(--color-white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all var(--transition-elegant);
    box-shadow: 
        0 6px 20px rgba(255, 0, 0, 0.35),
        0 2px 8px rgba(255, 0, 0, 0.25);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.btn-video-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-video-youtube:hover::before {
    left: 100%;
}

.btn-video-youtube:hover {
    background: #CC0000;
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.45),
        0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-video-youtube:active {
    transform: translateY(-1px);
}

.btn-video-youtube svg {
    flex-shrink: 0;
    transition: transform var(--transition-elegant);
}

.btn-video-youtube:hover svg {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour les pages vidÃ©o */
@media (max-width: 1024px) {
    .video-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .video-player-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .video-page {
        padding: var(--spacing-xl) 0;
        padding-top: calc(var(--header-height) + var(--spacing-xl));
    }
    
    .video-layout {
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .video-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .video-meta {
        gap: var(--spacing-sm);
    }
    
    .video-category {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .video-description-content {
        font-size: 1rem;
    }
    
    .video-player {
        border-radius: 12px;
    }
    
    .btn-video-youtube {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
}

/* Section Notre Histoire */
.our-story-section {
    background: var(--color-white);
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
}

.our-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: stretch;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.our-story-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
}

.our-story-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.our-story-image-wrapper:hover {
    transform: scale(1.01);
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) contrast(1.1) saturate(1.2);
    transition: filter 0.6s ease;
}

.our-story-image-wrapper:hover .story-image {
    filter: brightness(0.9) contrast(1.15) saturate(1.3);
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
}

.our-story-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    height: 100%;
    justify-content: center;
    padding: 0 var(--spacing-md);
}

.our-story-quote {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-lg) var(--spacing-xl);
    padding-left: var(--spacing-xxl);
    border-left: 4px solid #D4AF37;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    border-radius: 0 12px 12px 0;
    position: relative;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.our-story-quote::before {
    content: '"';
    position: absolute;
    left: var(--spacing-lg);
    top: var(--spacing-md);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.our-story-quote p {
    margin: 0;
    font-weight: 500;
}

.our-story-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    color: var(--color-gray-dark);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.our-story-text p {
    margin: 0;
}

/* Section FAQ */
.faq-section {
    background: var(--color-white);
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
}

.faq-section .section-header {
    margin-bottom: var(--spacing-xxl);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--color-white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-black);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--color-gray-dark);
}

.faq-question span {
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-gray-dark);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-sm) var(--spacing-md);
}

.faq-answer p {
    margin: 0;
    color: var(--color-gray-dark);
    line-height: 1.5;
    font-size: 0.875rem;
    padding-top: 0;
}

/* Responsive pour Notre Histoire et FAQ */
@media (max-width: 968px) {
    .our-story-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .our-story-image {
        min-height: 400px;
    }
    
    .our-story-image-wrapper {
        transform: none;
    }
    
    .our-story-image-wrapper:hover {
        transform: scale(1.01);
    }
    
    .our-story-title {
        font-size: 2.5rem;
    }
    
    .our-story-quote {
        font-size: 1.125rem;
        padding: var(--spacing-md) var(--spacing-lg);
        padding-left: var(--spacing-xl);
    }
    
    .our-story-quote::before {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .our-story-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .our-story-image {
        min-height: 300px;
    }
    
    .our-story-content {
        padding: var(--spacing-md);
    }
    
    .our-story-title {
        font-size: 2rem;
    }
    
    .our-story-quote {
        font-size: 1rem;
        padding: var(--spacing-md);
        padding-left: var(--spacing-lg);
    }
    
    .our-story-quote::before {
        font-size: 2.5rem;
        left: var(--spacing-md);
    }
    
    .our-story-text {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .faq-question {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 var(--spacing-lg);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
    }
}
/* Section Notre Histoire */
.our-story-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 252, 0.5) 50%, rgba(255, 255, 255, 1) 100%);
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
}

/* Section FAQ */
.faq-section {
    background: var(--color-white);
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
}

.faq-section .section-header {
    margin-bottom: var(--spacing-xxl);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--color-white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-black);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--color-gray-dark);
}

.faq-question span {
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-gray-dark);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 var(--spacing-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-sm) var(--spacing-md);
}

.faq-answer p {
    margin: 0;
    color: var(--color-gray-dark);
    line-height: 1.5;
    font-size: 0.875rem;
    padding-top: 0;
}

/* Responsive pour Notre Histoire et FAQ */
@media (max-width: 968px) {
    .our-story-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .our-story-image {
        min-height: 400px;
    }
    
    .our-story-image-wrapper {
        transform: none;
    }
    
    .our-story-image-wrapper:hover {
        transform: scale(1.01);
    }
    
    .our-story-title {
        font-size: 2.5rem;
    }
    
    .our-story-quote {
        font-size: 1.125rem;
        padding: var(--spacing-md) var(--spacing-lg);
        padding-left: var(--spacing-xl);
    }
    
    .our-story-quote::before {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .our-story-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .our-story-image {
        min-height: 300px;
    }
    
    .our-story-content {
        padding: var(--spacing-md);
    }
    
    .our-story-title {
        font-size: 2rem;
    }
    
    .our-story-quote {
        font-size: 1rem;
        padding: var(--spacing-md);
        padding-left: var(--spacing-lg);
    }
    
    .our-story-quote::before {
        font-size: 2.5rem;
        left: var(--spacing-md);
    }
    
    .our-story-text {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .faq-question {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 var(--spacing-lg);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
    }
}

/* =====================================================
   Page Charte Graphique - Style inspirÃ© Spotify
   ===================================================== */

.page-charte-graphique {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.charte-container {
    display: flex;
    min-height: calc(100vh - var(--header-height));
    padding-top: var(--header-height);
    margin-top: calc(-1 * var(--header-height));
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Sidebar Navigation */
.charte-sidebar {
    width: 280px;
    background: #f9fafb;
    border-right: 1px solid #e5e7eb;
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    flex-shrink: 0;
}

@media (min-width: 968px) {
    .page-charte-graphique .charte-sidebar {
        position: fixed;
        left: 0;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        max-height: calc(100vh - var(--header-height));
    }

    .page-charte-graphique .charte-content {
        margin-left: 280px;
    }
}

.charte-sidebar-header {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid #e5e7eb;
}

.charte-logo-link {
    display: block;
    margin-bottom: var(--spacing-md);
}

.charte-logo {
    max-width: 120px;
    height: auto;
}

.charte-sidebar-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.charte-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.charte-nav-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-normal);
    font-size: 0.9375rem;
    font-weight: 500;
}

.charte-nav-item:hover {
    background: #f3f4f6;
    color: #1a1a2e;
}

.charte-nav-item.active {
    background: #1a1a2e;
    color: #ffffff;
}

.charte-nav-item svg {
    flex-shrink: 0;
}

/* Main Content */
.charte-content {
    flex: 1;
    padding: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.charte-section {
    margin-bottom: calc(var(--spacing-xxl) * 1.5);
    scroll-margin-top: calc(var(--header-height) + 40px);
}

.charte-content > .charte-section:first-child {
    scroll-margin-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.charte-section-header {
    margin-bottom: var(--spacing-xl);
}

.charte-section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 var(--spacing-sm) 0;
}

.charte-section-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Grid Layout */
.charte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

@media (min-width: 1200px) {
    .charte-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
}

/* Cards */
.charte-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}

.charte-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.charte-card-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
}

.charte-card-header h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.charte-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #1a1a2e;
    color: #ffffff;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.charte-card-content {
    padding: var(--spacing-lg);
}

.charte-card-note {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

/* Code Blocks */
.charte-code-block {
    background: #1a1a2e;
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    overflow-x: auto;
}

.charte-code-block code {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #10b981;
    line-height: 1.6;
}

/* Logo Variations */
.charte-logo-variations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.charte-logo-variation {
    transition: transform var(--transition-normal);
}

.charte-logo-variation:hover {
    transform: scale(1.05);
}

/* Color Grid */
.charte-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.charte-color-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.charte-color-swatch {
    width: 100%;
    height: 150px;
    min-height: 150px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.charte-color-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.charte-color-info h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.charte-color-info code {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

/* Typography Samples */
.charte-typography-sample {
    padding: var(--spacing-lg);
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.charte-typography-hierarchy {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.charte-typography-level {
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid #e5e7eb;
}

.charte-typography-level:last-child {
    border-bottom: none;
}

.charte-typography-level code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Spacing System */
.charte-spacing-system {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.charte-spacing-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.charte-spacing-visual {
    border-radius: 4px;
    flex-shrink: 0;
}

.charte-spacing-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.charte-spacing-info h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.charte-spacing-info code {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Components Demo */
.charte-components-demo {
    padding: var(--spacing-lg);
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
}

/* Zone d'exclusion améliorée */
.charte-exclusion-zone {
    padding: var(--spacing-lg);
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.charte-exclusion-grid {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 19px,
        #e5e7eb 19px,
        #e5e7eb 20px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 19px,
        #e5e7eb 19px,
        #e5e7eb 20px
    );
    border-radius: 8px;
}

.charte-exclusion-area {
    position: relative;
    display: inline-block;
}

.charte-exclusion-logo-wrapper {
    position: relative;
    z-index: 2;
}

.charte-exclusion-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.charte-exclusion-measure {
    position: absolute;
    color: #D4AF37;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 2px solid #D4AF37;
}

.charte-exclusion-measure.top {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.charte-exclusion-measure.bottom {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.charte-exclusion-measure.left {
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
}

.charte-exclusion-measure.right {
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
}

.charte-exclusion-area::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    right: -40%;
    bottom: -40%;
    border: 3px solid #D4AF37;
    border-style: dashed;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.05);
    z-index: 1;
}

/* Interdictions */
.charte-card-full {
    grid-column: 1 / -1;
}

.charte-prohibitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

@media (min-width: 1200px) {
    .charte-prohibitions-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.charte-prohibition-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: #ffffff;
    border: 1px solid #fee2e2;
    border-radius: 12px;
    transition: all var(--transition-normal);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.charte-prohibition-item:hover {
    border-color: #EF4444;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.15);
    transform: translateY(-2px);
}

.charte-prohibition-visual {
    width: 100%;
    min-height: 300px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    border-radius: 12px;
    overflow: hidden;
}

.charte-prohibition-item h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: #EF4444;
    margin: 0;
}

.charte-prohibition-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 968px) {
    .charte-container {
        flex-direction: column;
    }
    
    .charte-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: var(--spacing-lg);
        overflow-y: visible;
    }
    
    .charte-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
        -webkit-overflow-scrolling: touch;
    }
    
    .charte-nav-item {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .charte-content {
        padding: var(--spacing-xl) var(--spacing-md);
        max-width: 100%;
    }
    
    .charte-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .charte-prohibitions-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .charte-section-title {
        font-size: 2rem;
    }
    
    .charte-section {
        margin-bottom: var(--spacing-xl);
    }
    
    .charte-visual-placeholder {
        min-height: 250px;
    }
}

/* =====================================================
   Nouvelles sections de la charte graphique
   ===================================================== */

/* Iconographie */
.charte-iconography-guidelines {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.charte-iconography-guidelines h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.charte-iconography-guidelines p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.charte-iconography-guidelines ul {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.8;
}

/* Visual Generators (Prompts Gemini) */
.charte-visual-generator {
    width: 100%;
}

.charte-visual-placeholder {
    position: relative;
    transition: all var(--transition-normal);
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.charte-visual-placeholder svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.charte-visual-placeholder:hover {
    border-color: #D4AF37 !important;
    background: #fefce8 !important;
}

.charte-prompt-box {
    padding: var(--spacing-md);
}

.charte-prompt-box p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.charte-prompt-box strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Grilles améliorées */
.charte-grid-demo {
    transition: all var(--transition-normal);
}

.charte-grid-demo:hover {
    transform: scale(1.02);
}

/* Animations discrètes */
.charte-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.charte-section:nth-child(1) { animation-delay: 0.1s; }
.charte-section:nth-child(2) { animation-delay: 0.2s; }
.charte-section:nth-child(3) { animation-delay: 0.3s; }
.charte-section:nth-child(4) { animation-delay: 0.4s; }
.charte-section:nth-child(5) { animation-delay: 0.5s; }
.charte-section:nth-child(6) { animation-delay: 0.6s; }
.charte-section:nth-child(7) { animation-delay: 0.7s; }
.charte-section:nth-child(8) { animation-delay: 0.8s; }
.charte-section:nth-child(9) { animation-delay: 0.9s; }
.charte-section:nth-child(10) { animation-delay: 1s; }
.charte-section:nth-child(11) { animation-delay: 1.1s; }
.charte-section:nth-child(12) { animation-delay: 1.2s; }
.charte-section:nth-child(13) { animation-delay: 1.3s; }
.charte-section:nth-child(14) { animation-delay: 1.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card hover amélioré */
.charte-card {
    position: relative;
    overflow: hidden;
}

.charte-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.charte-card:hover::before {
    left: 100%;
}

.charte-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Color swatch hover */
.charte-color-swatch {
    transition: all var(--transition-normal);
    cursor: pointer;
}

.charte-color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: relative;
}

/* Code block copy functionality */
.charte-code-block {
    position: relative;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.charte-code-block:hover {
    background: #252a3a;
}

.charte-code-block::after {
    content: 'Cliquer pour copier';
    position: absolute;
    top: 50%;
    right: var(--spacing-md);
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #6b7280;
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.charte-code-block:hover::after {
    opacity: 1;
}

.charte-code-block.copied::after {
    content: '✓ Copié !';
    color: #10b981;
}

/* Navigation active indicator */
.charte-nav-item {
    position: relative;
}

.charte-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: #D4AF37;
    border-radius: 0 2px 2px 0;
}

/* Smooth scroll indicator */
.charte-sidebar {
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #f9fafb;
}

.charte-sidebar::-webkit-scrollbar {
    width: 6px;
}

.charte-sidebar::-webkit-scrollbar-track {
    background: #f9fafb;
}

.charte-sidebar::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 3px;
}

.charte-sidebar::-webkit-scrollbar-thumb:hover {
    background: #B8941E;
}

/* =====================================================
   Sections légales (mentions, politique, CGU)
   ===================================================== */


/* Table styles */
.charte-card-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.charte-card-content th {
    font-family: var(--font-primary);
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    padding: var(--spacing-sm);
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
}

.charte-card-content td {
    padding: var(--spacing-sm);
    border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
}

.charte-card-content tr:hover {
    background: #f9fafb;
}

/* Badge improvements */
.charte-badge {
    transition: all var(--transition-normal);
}

.charte-badge:hover {
    transform: scale(1.05);
}

/* Section header animation */
.charte-section-header {
    position: relative;
}

.charte-section-header::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-sm);
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    border-radius: 2px;
}

/* Loading state for visual generators */
.charte-visual-placeholder.loading {
    background: linear-gradient(90deg, #f9fafb 25%, #f3f4f6 50%, #f9fafb 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Responsive improvements */
@media (max-width: 968px) {
    .charte-section {
        animation-delay: 0s !important;
    }
    
    .charte-visual-placeholder {
        aspect-ratio: 16/9 !important;
    }
    
    .charte-card-content table {
        font-size: 0.75rem;
    }
    
    .charte-card-content th,
    .charte-card-content td {
        padding: var(--spacing-xs);
    }
}

/* ============================================
   Pages légales (Mentions légales, Politique de confidentialité, CGU)
   ============================================ */

.page-legal {
    min-height: 100vh;
    background: var(--color-bg-primary);
}

/* Hero section pour les pages légales */
.legal-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    position: relative;
    overflow: hidden;
    padding: calc(var(--spacing-xxl) * 1.5) var(--spacing-md) var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.legal-hero .container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
}

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.legal-back-btn:hover {
    opacity: 1;
    color: var(--color-white);
    transform: translateX(-4px);
}

.legal-back-btn svg {
    transition: transform 0.3s ease;
}

.legal-back-btn:hover svg {
    transform: translateX(-2px);
}

.legal-hero-title {
    font-family: 'Deuterium', var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 var(--spacing-md);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 10px rgba(0, 0, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out;
}

.legal-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.7),
        0 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Navigation entre pages légales */
.legal-nav-tabs {
    background: var(--color-white);
    border-bottom: 2px solid var(--color-border);
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    position: sticky;
    top: var(--header-height);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-nav-tabs .container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.legal-nav-tab {
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.legal-nav-tab:hover {
    color: var(--color-text-primary);
}

.legal-nav-tab.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    font-weight: 600;
}

/* Contenu principal */
.legal-content-wrapper {
    padding: 0 var(--spacing-md) var(--spacing-xxl);
}

.legal-content-wrapper .container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.legal-content-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--spacing-xxl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.legal-section-content {
    margin-bottom: var(--spacing-xl);
}

.legal-section-content:last-child {
    margin-bottom: 0;
}

.legal-section-content h3 {
    font-family: 'Deuterium', var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-border);
}

.legal-section-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0 0 var(--spacing-md);
}

.legal-section-content p:last-child {
    margin-bottom: 0;
}

.legal-section-content ul {
    margin: 0 0 var(--spacing-md) 1.5rem;
    padding: 0;
    list-style: disc;
}

.legal-section-content li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
}

.legal-section-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legal-section-content a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Couleurs spécifiques par page */
.page-mentions-legales {
    --accent-color: #6B21A8;
}

.page-mentions-legales .legal-hero {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.3) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(107, 33, 168, 0.3) 100%);
}

.page-politique-confidentialite {
    --accent-color: #3B82F6;
}

.page-politique-confidentialite .legal-hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(59, 130, 246, 0.3) 100%);
}

.page-cgu {
    --accent-color: #10B981;
}

.page-cgu .legal-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(16, 185, 129, 0.3) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    }

    .legal-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .legal-nav-tabs {
        padding: 0 var(--spacing-sm);
    }

    .legal-nav-tabs .container {
        gap: var(--spacing-sm);
    }

    .legal-nav-tab {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }

    .legal-content-card {
        padding: var(--spacing-lg);
    }

    .legal-section-content h3 {
        font-size: 1.25rem;
    }

    .legal-section-content p,
    .legal-section-content li {
        font-size: 0.875rem;
    }
}
