/* =================================
   NEWS HERO 2026 - Premium Aurora Glass
   Style élégant avec lignes lumineuses
   et formes géométriques subtiles
   ================================= */

/* ===== FONTS MODERNES ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== ANIMATIONS ===== */
@keyframes auroraFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glowLine {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            0 0 20px rgba(14, 165, 233, 0.5),
            0 0 40px rgba(14, 165, 233, 0.3);
    }
    50% {
        text-shadow:
            0 0 30px rgba(14, 165, 233, 0.7),
            0 0 60px rgba(14, 165, 233, 0.4);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.08;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.15;
    }
}

@keyframes floatShapeAlt {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.06;
    }
    33% {
        transform: translateY(-10px) rotate(-3deg) scale(1.05);
        opacity: 0.12;
    }
    66% {
        transform: translateY(5px) rotate(3deg) scale(0.95);
        opacity: 0.08;
    }
}

@keyframes shimmerLine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -10px) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-10px, -20px) scale(0.9);
        opacity: 0.35;
    }
    75% {
        transform: translate(-15px, 5px) scale(1.05);
        opacity: 0.25;
    }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.015; }
    50% { opacity: 0.04; }
}

/* ===== HERO SECTION PRINCIPALE ===== */
.news-hero-2026 {
    position: relative;
    margin-top: 70px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0a0a12;
}

/* ===== FOND AURORA PREMIUM ===== */
.hero-aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0f;
    z-index: 0;
    overflow: hidden;
}

/* ORBES LUMINEUSES PREMIUM - Style theme-builder */
.hero-aurora-bg::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    top: -100px;
    left: -50px;
    background: linear-gradient(135deg, #5865F2 0%, #7c3aed 50%, #8B5CF6 100%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: orbFloat 10s ease-in-out infinite;
    z-index: 1;
}

.hero-aurora-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    animation: orbFloat 12s ease-in-out infinite reverse;
    z-index: 1;
}

/* Troisième orbe rose (via .hero-glass-container background) */
.news-hero-2026 .hero-aurora-bg + .hero-glass-container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 40%;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: orbFloat 14s ease-in-out infinite 2s;
    z-index: 0;
    pointer-events: none;
}

/* Grid pattern overlay */
.news-hero-2026 > .hero-aurora-bg + .hero-glass-container + .hero-filters::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

/* ===== LIGNES LUMINEUSES HORIZONTALES PREMIUM ===== */
.news-hero-2026::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(245, 158, 11, 0.3) 5%,
        rgba(251, 191, 36, 0.8) 20%,
        rgba(245, 158, 11, 1) 50%,
        rgba(251, 191, 36, 0.8) 80%,
        rgba(245, 158, 11, 0.3) 95%,
        transparent 100%
    );
    box-shadow:
        0 0 10px rgba(245, 158, 11, 0.8),
        0 0 25px rgba(245, 158, 11, 0.6),
        0 0 50px rgba(245, 158, 11, 0.4),
        0 0 80px rgba(245, 158, 11, 0.2);
    animation: glowLine 3s ease-in-out infinite;
    z-index: 3;
}

.news-hero-2026::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 10%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.5) 10%,
        rgba(139, 92, 246, 0.9) 30%,
        rgba(167, 139, 250, 1) 50%,
        rgba(139, 92, 246, 0.9) 70%,
        rgba(139, 92, 246, 0.5) 90%,
        transparent 100%
    );
    box-shadow:
        0 0 10px rgba(139, 92, 246, 0.7),
        0 0 25px rgba(139, 92, 246, 0.5),
        0 0 50px rgba(139, 92, 246, 0.3);
    animation: glowLine 4s ease-in-out infinite 1.5s;
    z-index: 3;
}

/* ===== FORMES GÉOMÉTRIQUES FLOTTANTES ===== */
/* Petit cercle décoratif flottant - via container après le contenu */
.hero-glass-container .container::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: -30px;
    right: 10%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
        rgba(14, 165, 233, 0.2) 0%,
        rgba(14, 165, 233, 0.05) 50%,
        transparent 70%
    );
    border: 1px solid rgba(14, 165, 233, 0.15);
    animation: floatShape 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Hexagone décoratif subtil */
.hero-filters .container::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 35px;
    top: -80px;
    left: 15%;
    background: linear-gradient(135deg,
        rgba(236, 72, 153, 0.15) 0%,
        rgba(236, 72, 153, 0.05) 100%
    );
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatShapeAlt 16s ease-in-out infinite 2s;
    z-index: 0;
    pointer-events: none;
}

/* Losange décoratif */
.hero-filters .container::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    top: -60px;
    right: 20%;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.12) 0%,
        rgba(139, 92, 246, 0.04) 100%
    );
    transform: rotate(45deg);
    border: 1px solid rgba(139, 92, 246, 0.15);
    animation: floatShape 14s ease-in-out infinite 1s;
    z-index: 0;
    pointer-events: none;
}

/* ===== CONTENEUR GLASS PREMIUM ===== */
.hero-glass-container {
    position: relative;
    z-index: 5;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background: linear-gradient(
        180deg,
        rgba(15, 15, 25, 0.75) 0%,
        rgba(10, 10, 20, 0.85) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 0 24px;
    overflow: visible;
    /* Shimmer effect intégré */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 -20px 60px rgba(139, 92, 246, 0.1),
        0 20px 60px rgba(245, 158, 11, 0.08);
}

.hero-glass-container .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* ===== BREADCRUMB ÉLÉGANT ===== */
.hero-breadcrumb {
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 10px;
    border-radius: 6px;
}

.hero-breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.hero-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
}

.hero-breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.2) 0%,
        rgba(139, 92, 246, 0.15) 100%
    );
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

/* ===== TITRE PRINCIPAL ===== */
.hero-title-glow {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    animation: glowPulse 4s ease-in-out infinite;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-transform: uppercase;
}

/* ===== SOUS-TITRE ===== */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-subtitle .member-count {
    color: #FBBF24;
    font-weight: 700;
}

/* ===== FILTRES NAVIGATION ===== */
.hero-filters {
    position: relative;
    z-index: 6;
    background: linear-gradient(180deg,
        rgba(15, 13, 22, 0.95) 0%,
        rgba(10, 10, 18, 0.98) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: visible;
    /* Sticky behavior */
    position: sticky;
    top: 70px;
}

.hero-filters .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* ===== FILTER CHIPS PREMIUM ===== */
.filter-chip {
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.filter-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.filter-chip:hover::before {
    opacity: 1;
}

.filter-chip.active {
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.25) 0%,
        rgba(139, 92, 246, 0.2) 100%
    );
    border-color: rgba(14, 165, 233, 0.3);
    color: white;
    box-shadow:
        0 0 20px rgba(14, 165, 233, 0.2),
        0 0 40px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.filter-chip.active:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 25px rgba(14, 165, 233, 0.3),
        0 0 50px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ===== VARIANTES PAR PAGE ===== */

/* Dés Gratuits - Gold premium */
.news-hero-2026.page-des-gratuits .hero-aurora-bg::before {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
    opacity: 0.6;
}

.news-hero-2026.page-des-gratuits .hero-aurora-bg::after {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    opacity: 0.45;
}

.news-hero-2026.page-des-gratuits::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(251, 191, 36, 0.4) 5%,
        rgba(245, 158, 11, 1) 30%,
        rgba(251, 191, 36, 1) 50%,
        rgba(245, 158, 11, 1) 70%,
        rgba(251, 191, 36, 0.4) 95%,
        transparent 100%
    );
    box-shadow:
        0 0 15px rgba(251, 191, 36, 0.9),
        0 0 35px rgba(245, 158, 11, 0.7),
        0 0 70px rgba(251, 191, 36, 0.4);
}

.news-hero-2026.page-des-gratuits .hero-breadcrumb .current {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.35) 0%, rgba(251, 191, 36, 0.25) 100%);
    border-color: rgba(251, 191, 36, 0.5);
}

.news-hero-2026.page-des-gratuits .filter-chip.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.4) 0%, rgba(217, 119, 6, 0.3) 100%);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

/* Gains Rapides - Emerald */
.news-hero-2026.page-gains-rapides .hero-aurora-bg::before {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #34D399 100%);
    opacity: 0.55;
}

.news-hero-2026.page-gains-rapides .hero-aurora-bg::after {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    opacity: 0.4;
}

.news-hero-2026.page-gains-rapides::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(16, 185, 129, 0.4) 5%,
        rgba(52, 211, 153, 1) 30%,
        rgba(16, 185, 129, 1) 50%,
        rgba(52, 211, 153, 1) 70%,
        rgba(16, 185, 129, 0.4) 95%,
        transparent 100%
    );
    box-shadow:
        0 0 15px rgba(52, 211, 153, 0.8),
        0 0 35px rgba(16, 185, 129, 0.6),
        0 0 70px rgba(52, 211, 153, 0.3);
}

.news-hero-2026.page-gains-rapides .hero-breadcrumb .current {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.35) 0%, rgba(52, 211, 153, 0.25) 100%);
    border-color: rgba(52, 211, 153, 0.5);
}

.news-hero-2026.page-gains-rapides .filter-chip.active {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(5, 150, 105, 0.3) 100%);
    border-color: rgba(52, 211, 153, 0.5);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.35);
}

/* Flash Boost - Orange électrique */
.news-hero-2026.page-flash-boost .hero-aurora-bg::before {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 50%, #EA580C 100%);
    opacity: 0.6;
}

.news-hero-2026.page-flash-boost .hero-aurora-bg::after {
    background: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
    opacity: 0.5;
}

.news-hero-2026.page-flash-boost::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(251, 191, 36, 0.4) 5%,
        rgba(249, 115, 22, 1) 30%,
        rgba(251, 191, 36, 1) 50%,
        rgba(249, 115, 22, 1) 70%,
        rgba(251, 191, 36, 0.4) 95%,
        transparent 100%
    );
    box-shadow:
        0 0 15px rgba(251, 191, 36, 0.9),
        0 0 35px rgba(249, 115, 22, 0.7),
        0 0 70px rgba(251, 191, 36, 0.4);
}

.news-hero-2026.page-flash-boost .hero-breadcrumb .current {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.35) 0%, rgba(249, 115, 22, 0.25) 100%);
    border-color: rgba(251, 191, 36, 0.5);
}

.news-hero-2026.page-flash-boost .filter-chip.active {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.4) 0%, rgba(249, 115, 22, 0.3) 100%);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

/* Événements - Rose/Magenta */
.news-hero-2026.page-evenements .hero-aurora-bg::before {
    background: linear-gradient(135deg, #EC4899 0%, #DB2777 50%, #F472B6 100%);
    opacity: 0.55;
}

.news-hero-2026.page-evenements .hero-aurora-bg::after {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    opacity: 0.45;
}

.news-hero-2026.page-evenements::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(236, 72, 153, 0.4) 5%,
        rgba(219, 39, 119, 1) 30%,
        rgba(236, 72, 153, 1) 50%,
        rgba(219, 39, 119, 1) 70%,
        rgba(236, 72, 153, 0.4) 95%,
        transparent 100%
    );
    box-shadow:
        0 0 15px rgba(236, 72, 153, 0.8),
        0 0 35px rgba(219, 39, 119, 0.6),
        0 0 70px rgba(236, 72, 153, 0.3);
}

.news-hero-2026.page-evenements .hero-breadcrumb .current {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35) 0%, rgba(168, 85, 247, 0.25) 100%);
    border-color: rgba(236, 72, 153, 0.5);
}

.news-hero-2026.page-evenements .filter-chip.active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.4) 0%, rgba(168, 85, 247, 0.3) 100%);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.35);
}

/* Boosts Événements - Violet électrique */
.news-hero-2026.page-boosts-evenements .hero-aurora-bg::before {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #A78BFA 100%);
    opacity: 0.6;
}

.news-hero-2026.page-boosts-evenements .hero-aurora-bg::after {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
    opacity: 0.45;
}

.news-hero-2026.page-boosts-evenements::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(139, 92, 246, 0.4) 5%,
        rgba(124, 58, 237, 1) 30%,
        rgba(139, 92, 246, 1) 50%,
        rgba(124, 58, 237, 1) 70%,
        rgba(139, 92, 246, 0.4) 95%,
        transparent 100%
    );
    box-shadow:
        0 0 15px rgba(139, 92, 246, 0.9),
        0 0 35px rgba(124, 58, 237, 0.7),
        0 0 70px rgba(139, 92, 246, 0.4);
}

.news-hero-2026.page-boosts-evenements .hero-breadcrumb .current {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(124, 58, 237, 0.25) 100%);
    border-color: rgba(139, 92, 246, 0.5);
}

.news-hero-2026.page-boosts-evenements .filter-chip.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(124, 58, 237, 0.3) 100%);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

/* Récompenses - Or premium */
.news-hero-2026.page-recompenses .hero-aurora-bg::before {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #FBBF24 100%);
    opacity: 0.55;
}

.news-hero-2026.page-recompenses .hero-aurora-bg::after {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    opacity: 0.4;
}

.news-hero-2026.page-recompenses::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(245, 158, 11, 0.4) 5%,
        rgba(217, 119, 6, 1) 30%,
        rgba(251, 191, 36, 1) 50%,
        rgba(217, 119, 6, 1) 70%,
        rgba(245, 158, 11, 0.4) 95%,
        transparent 100%
    );
    box-shadow:
        0 0 15px rgba(251, 191, 36, 0.8),
        0 0 35px rgba(217, 119, 6, 0.6),
        0 0 70px rgba(245, 158, 11, 0.3);
}

.news-hero-2026.page-recompenses .hero-breadcrumb .current {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.35) 0%, rgba(217, 119, 6, 0.25) 100%);
    border-color: rgba(251, 191, 36, 0.5);
}

.news-hero-2026.page-recompenses .filter-chip.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.4) 0%, rgba(217, 119, 6, 0.3) 100%);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.35);
}

/* News - Bleu cyan */
.news-hero-2026.page-news .hero-aurora-bg::before {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 50%, #38BDF8 100%);
    opacity: 0.55;
}

.news-hero-2026.page-news .hero-aurora-bg::after {
    background: linear-gradient(135deg, #06B6D4 0%, #0EA5E9 100%);
    opacity: 0.45;
}

.news-hero-2026.page-news::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(14, 165, 233, 0.4) 5%,
        rgba(6, 182, 212, 1) 30%,
        rgba(14, 165, 233, 1) 50%,
        rgba(6, 182, 212, 1) 70%,
        rgba(14, 165, 233, 0.4) 95%,
        transparent 100%
    );
    box-shadow:
        0 0 15px rgba(14, 165, 233, 0.8),
        0 0 35px rgba(6, 182, 212, 0.6),
        0 0 70px rgba(14, 165, 233, 0.3);
}

.news-hero-2026.page-news .hero-breadcrumb .current {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.35) 0%, rgba(6, 182, 212, 0.25) 100%);
    border-color: rgba(14, 165, 233, 0.5);
}

.news-hero-2026.page-news .filter-chip.active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4) 0%, rgba(6, 182, 212, 0.3) 100%);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.35);
}

/* Actualités (toutes) - Multi-couleur premium */
/* Garde les couleurs par défaut (violet/orange) qui sont déjà visibles */

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .news-hero-2026 {
        margin-top: 70px;
        min-height: 140px;
    }

    .hero-glass-container {
        padding: 20px 0 18px;
    }

    .hero-glass-container .container {
        gap: 10px;
    }

    .hero-breadcrumb {
        font-size: 0.72rem;
        gap: 6px;
    }

    .hero-breadcrumb a,
    .hero-breadcrumb .current {
        padding: 3px 8px;
    }

    .hero-title-glow {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .hero-subtitle {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    .hero-filters {
        padding: 12px 0;
    }

    .hero-filters-wrapper {
        gap: 8px;
        padding: 0 10px;
    }

    .filter-chip {
        padding: 8px 14px;
        font-size: 0.75rem;
        border-radius: 10px;
    }

    /* Réduire les orbes sur mobile */
    .hero-aurora-bg::before {
        width: 250px;
        height: 250px;
        opacity: 0.45;
    }

    .hero-aurora-bg::after {
        width: 200px;
        height: 200px;
        opacity: 0.4;
    }

    /* Masquer formes géométriques décoratives sur mobile */
    .hero-glass-container .container::after,
    .hero-filters .container::before,
    .hero-filters .container::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-filters-wrapper {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hero-filters-wrapper::-webkit-scrollbar {
        display: none;
    }

    .filter-chip {
        flex-shrink: 0;
    }
}

/* ===== ACCESSIBILITÉ ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-aurora-bg::before,
    .hero-aurora-bg::after,
    .news-hero-2026::before,
    .news-hero-2026::after,
    .hero-glass-container .container::after,
    .hero-filters .container::before,
    .hero-filters .container::after {
        animation: none;
    }

    .hero-title-glow {
        animation: none;
        text-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
    }

    .filter-chip:hover,
    .filter-chip.active:hover {
        transform: none;
    }
}

/* ===== PRINT ===== */
@media print {
    .news-hero-2026 {
        background: #f5f5f5 !important;
        margin-top: 0;
        min-height: auto;
    }

    .hero-aurora-bg,
    .news-hero-2026::before,
    .news-hero-2026::after {
        display: none;
    }

    .hero-glass-container {
        backdrop-filter: none;
        background: transparent;
        border: none;
    }

    .hero-title-glow {
        color: #1a1a1a !important;
        text-shadow: none !important;
        animation: none;
    }

    .hero-breadcrumb,
    .hero-filters {
        display: none;
    }
}
