    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    * {
        font-family: 'Poppins', sans-serif;
    }


    /* Logo jikan */
    .jikan-text {
        font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        fill: #FFFFFF;
        /* Texte passé en BLANC */
        font-size: 52px;
    }

    .jikan-bold {
        font-weight: 700;
    }

    .jikan-regular {
        font-weight: 400;
    }

    /* Animations Carrousel Infini */
    @keyframes marquee {
        0% { transform: translateX(0%); }
        100% { transform: translateX(calc(-50% - 12px)); } /* 12px = la moitié de l'espace 'gap-6' (24px) pour une boucle parfaite */
    }

    .animate-marquee {
        animation: marquee 80s linear infinite;
    }

    .pause-animation {
        animation-play-state: paused;
    }