 body { font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; transition: background-color 0.3s ease; }
        .glass-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px); border: 1px solid rgba(0, 0, 0, 0.05); }
        .dark .glass-card { background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255, 255, 255, 0.08); }
        
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
                .pause:hover { animation-play-state: paused; }
        
        /* Soulignement arrondi personnalisé */
        .curved-underline {
            position: relative;
            display: inline-block;
        }
        .curved-underline::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 100%;
            height: 6px;
            background: #f97316;
            border-radius: 50px;
            opacity: 0.8;
        }

        .no-scrollbar::-webkit-scrollbar { display: none; }


