/* ===== EFFET NEIGE D'HIVER (RÉDUIT) ===== */

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    opacity: 0.6;
}

@keyframes snowfall {
    0% {
        transform: translateY(0vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== HEADER ULTRA MODERNE PLEINE LARGEUR ===== */

.tv-modern-section {
    position: relative;
    z-index: 2;
}

.tv-header {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(26, 26, 26, 0.9) 50%,
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 60px 0;
    margin: 0 -50vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.tv-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.03) 0%, 
        transparent 50%, 
        rgba(212, 175, 55, 0.03) 100%);
    animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tv-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.tv-header-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.tv-header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.tv-title {
    font-size: 96px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 30%, #d4af37 60%, #f0e68c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    letter-spacing: 8px;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.tv-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

.tv-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 25px;
}

.tv-live-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 35px rgba(239, 68, 68, 0.5);
    position: relative;
    overflow: hidden;
}

.tv-live-badge-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: liveSweep 3s linear infinite;
}

@keyframes liveSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.tv-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.tv-meta-row {
    display: flex;
    gap: 25px;
    align-items: center;
}

.tv-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-white);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.08);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.meta-icon {
    font-size: 20px;
}

.tv-meta-item strong {
    color: var(--gold);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .tv-header-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tv-header-right {
        align-items: flex-start;
    }
    
    .tv-meta {
        align-items: flex-start;
    }
    
    .tv-title {
        font-size: 72px;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .tv-header {
        padding: 40px 0;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .tv-header .container {
        padding: 0 20px;
    }
    
    .tv-title {
        font-size: 56px;
        letter-spacing: 4px;
    }
    
    .tv-subtitle {
        font-size: 16px;
    }
    
    .tv-live-badge-hero {
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .tv-meta-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .tv-meta-item {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .tv-title {
        font-size: 42px;
        letter-spacing: 3px;
    }
    
    .tv-subtitle {
        font-size: 14px;
    }
    
    .tv-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .tv-meta-item {
        width: 100%;
    }
}