        /* Mise en place des styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Corps de la page */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0a1f44;
            color: #ffffff;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }

        /* Barre de navigation */
        .nav-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7); /* Fond noir semi-transparent */
            backdrop-filter: blur(15px); /* Effet de flou */
            box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            padding: 15px 0;
            z-index: 999;
        }

        /* Icônes de la barre de navigation */
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 18px;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 10px;
            border-radius: 10px;
            position: relative;
        }

        /* Icônes des liens sans soulignement */
        .nav-item a {
            text-decoration: none;
            color: inherit; /* Prend la couleur de l'élément parent */
        }

        /* Animation au survol et élément actif */
        .nav-item:hover, .nav-item.active {
            background-color: rgba(255, 255, 255, 0.2);
            color: #00d4ff;
            transform: scale(1.1);
        }

        /* Icônes */
        .nav-item i {
            font-size: 24px;
            margin-bottom: 5px;
            transition: transform 0.3s ease;
        }

        /* Animation pour les icônes au survol */
        .nav-item:hover i {
            transform: scale(1.3);
        }

        /* Point actif sous l'icône */
        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            width: 8px;
            height: 8px;
            background: #00d4ff;
            border-radius: 50%;
            animation: blink 1s infinite alternate;
        }

        /* Animation de clignotement */
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.4; }
            100% { opacity: 1; }
        }

        /* Pour les petits écrans */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: row; /* Mise en ligne pour les petits écrans */
                padding: 10px 0;
            }

            .nav-item {
                flex: 1;
                text-align: center;
                padding: 8px;
            }

            .nav-item i {
                font-size: 20px;
            }

            /* Cacher le texte sur mobile */
            .nav-text {
                display: none;
            }
        }

        /* Pour les très petits écrans */
        @media (max-width: 480px) {
            .nav-container {
                padding: 8px 0;
            }

            .nav-item {
                font-size: 14px;
            }

            .nav-item i {
                font-size: 18px;
            }
        }