        #lore {
            position: relative;
            padding: 4rem 2rem;
            overflow: hidden;
            padding-top: 1.8rem;
        }

        /* Background image container */
        .lore-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/pngarrieretrans.png'); /* IMAGE À REMPLACER */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.7;/* 0.15 ù/
            filter: blur(2px);
        }

        .lore-background::after {
            content: '';
            position: absolute;
            inset: 0;
            /*background: linear-gradient(180deg, 
                rgba(1, 11, 25, 0.95) 0%,
                rgba(2, 29, 39, 0.85) 30%,
                rgba(1, 11, 25, 0.9) 70%,
                rgba(1, 11, 25, 0.95) 100%
            );*/
        }

        /* Grille d'arrière-plan animée */
        .cyber-grid-lore {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background-image: 
                linear-gradient(rgba(0, 208, 198, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 208, 198, 0.08) 1px, transparent 1px);*/
            background-size: 40px 40px;
            pointer-events: none;
            opacity: 0.5;
            animation: gridFloat 20s linear infinite;
        }

        @keyframes gridFloat {
            from { background-position: 0 0; }
            to { background-position: 40px 40px; }
        }

        /* Orbes lumineux améliorés */
        .glow-orb-lore {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
            animation: float 30s ease-in-out infinite;
        }

        .glow-orb-lore-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(135, 53, 185, 0.25), rgba(0, 208, 198, 0.15), transparent);
            top: -10%;
            right: -10%;
        }

        .glow-orb-lore-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 208, 198, 0.2), rgba(135, 53, 185, 0.1), transparent);
            bottom: -10%;
            left: -10%;
            animation-delay: -15s;
        }

        .glow-orb-lore-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(3, 119, 120, 0.2), transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -7s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
            25% { transform: translate(50px, -50px) scale(1.1); opacity: 0.8; }
            50% { transform: translate(-40px, 40px) scale(0.9); opacity: 0.9; }
            75% { transform: translate(40px, 50px) scale(1.05); opacity: 0.85; }
        }

        .container-lore {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            z-index: 1;
        }

        /*h2 {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 1rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            background: linear-gradient(135deg, #00d0c6, #60f4d7, #8735b9, #60f4d7);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 40px rgba(0, 208, 198, 0.6));
            animation: shimmer 4s ease-in-out infinite;
        }*/

        @keyframes shimmer {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        /* Intro avec meilleur contraste */
        .lore-intro {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 3rem auto;
            padding: 1.3em;
            background: linear-gradient(145deg, 
                rgba(0, 208, 198, 0.15) 0%,
                rgba(3, 119, 120, 0.25) 50%,
                rgba(135, 53, 185, 0.15) 100%
            );
            border: 2px solid;
            border-image: linear-gradient(135deg, #00d0c6, #8735b9) 1;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            box-shadow: 
                0 20px 60px rgba(0, 208, 198, 0.2),
                inset 0 0 80px rgba(0, 208, 198, 0.05);
        }

        .lore-intro h3 {
            color: #60f4d7;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            letter-spacing: 0.1em;
            text-shadow: 0 0 30px rgba(96, 244, 215, 0.6);
        }

        .lore-intro p {
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.8;
            font-size: 0.8rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Grille 2x2 pour les actes */
        .acts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        /* Carte d'acte compacte */
        .act-card {
            position: relative;
            background: linear-gradient(145deg, 
                rgba(3, 119, 120, 0.3) 0%,
                rgba(24, 27, 43, 0.5) 50%,
                rgba(135, 53, 185, 0.2) 100%
            );
            border: 2px solid rgba(0, 208, 198, 0.3);
            border-radius: 20px;
            padding: 1.4rem;
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            overflow: hidden;
            opacity: 0;
            animation: fadeInCard 0.6s ease forwards;
        }

        .act-card:nth-child(1) { animation-delay: 0.1s; }
        .act-card:nth-child(2) { animation-delay: 0.2s; }
        .act-card:nth-child(3) { animation-delay: 0.3s; }
        .act-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes fadeInCard {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Effet de scan lumineux */
        .act-card::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, 
                transparent 0%,
                rgba(0, 208, 198, 0.2) 50%,
                transparent 100%
            );
            transition: top 0.6s ease;
        }

        .act-card:hover::before {
            top: 100%;
        }

        .act-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(0, 208, 198, 0.7);
            box-shadow: 
                0 20px 60px rgba(0, 208, 198, 0.4),
                inset 0 0 50px rgba(0, 208, 198, 0.1);
            background: linear-gradient(145deg, 
                rgba(0, 208, 198, 0.25) 0%,
                rgba(3, 119, 120, 0.4) 50%,
                rgba(135, 53, 185, 0.25) 100%
            );
        }

        /* Header de l'acte */
        .act-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.8rem;
        }

        .act-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;/* 60 px */
            height: 40px;
            font-size: 1.2rem;
            font-weight: bold;
            color: #010b19;
            background: linear-gradient(135deg, #00d0c6, #60f4d7);
            border-radius: 50%;
            box-shadow: 
                0 4px 20px rgba(0, 208, 198, 0.6),
                inset 0 2px 4px rgba(255, 255, 255, 0.3);
            flex-shrink: 0;
        }

        .act-title {
            font-size: 1.1rem;
            color: #fff;
            line-height: 1.3;
            text-shadow: 0 0 20px rgba(0, 208, 198, 0.5);
            flex: 1;
        }

        .act-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 0.80rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Badge décoratif */
        .act-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            color: #8735b9;
            opacity: 0.3;
            text-shadow: 0 0 20px rgba(135, 53, 185, 0.8);
            transition: all 0.4s ease;
        }

        .act-card:hover .act-badge {
            opacity: 0.6;
            transform: scale(1.2) rotate(10deg);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .acts-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            h2 {
                font-size: 2.5rem;
            }

            .lore-intro {
                padding: 2rem;
            }

            .lore-intro h3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            #lore {
                padding: 2rem 1rem;
            }

            /*h2 {
                font-size: 2rem;
            }*/

            .lore-intro p {
                font-size: 1rem;
            }

            .act-number {
                width: 50px;
                height: 50px;
                font-size: 1.1rem;
            }

            .act-title {
                font-size: 1.2rem;
            }

            .act-text {
                font-size: 0.9rem;
            }
        }