    :root {
        --bg-nb: #e0ffd6d9;
        --nbscr: rgba(70, 206, 255, 0.25);
        --lnbscr: rgba(134, 191, 255, 0.537);
        --nbscr2: rgba(255, 134, 203, 0.307);
        --lnbscr2: rgba(255, 165, 225, 0.629);
        --nbscr3: rgba(255, 255, 168, 0.304);
        --lnbscr3: rgba(255, 255, 149, 0.781);
        --text-color3: #ffffff;
        --text-color2: #000000
    }
        
    @media (prefers-color-scheme: dark) {‡
        :root {
            --bg-nb: #131F16;
            --nbscr: rgba(255, 255, 255, 0.15);
        }
    }

        
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--bg-nb);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            transition: 0.5s all;
            z-index: 1000;
            cursor: pointer;

        }
        
        .navbar:hover {
            background: var(--nbscr);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.567);
            border-top-left-radius: 0;
        }
        
        .navbar.scrolled {
            background: var(--nbscr);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.567);
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            border-bottom: 1px solid var(--lnbscr);
        }        
        
        .navbar.scrolled2 {
            background: var(--nbscr2);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.567);
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            border-bottom: 1px solid var(--lnbscr2);
        }

        .navbar.scrolled3 {
            background: var(--nbscr3);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.567);
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            border-bottom: 1px solid var(--lnbscr3);
        }
        
        .navbar.scrolled:hover {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.567);
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            border-bottom-left-radius: 15px;
            border-bottom-right-radius: 15px;
        }
        
        .navbar nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 30px;
        }
        
        .navbar .logo img {
            height: 40px;
            width: auto;
            margin: 0;
            filter: invert(100%);
            transition: filter 0.5s;
        }

        .navbar.scrolled .logo img {
            filter: invert(0);

        }

        .navbar.scrolled3 .logo img {
            filter: invert(1);
        }
        
        .navbar ul {
            list-style: none;
            display: flex;
            gap: 25px;
        }
        
        .navbar ul li a {
            text-decoration: none;
            color: #1d1d1f;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            transition: 0.3s;
        }

        .navbar.scrolled ul li a {
            color: var(--text-color3);
        }

        .navbar.scrolled3 ul li a {
            color: var(--text-color2);
        }
        
        .navbar ul li a:hover {
            opacity: 0.7;
        }
        
        .navbar .menu-toggle {
            display: none;
            font-size: 1.8em;
            background: none;
            border: none;
            color: #1d1d1f;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .navbar .menu-toggle {
                display: block;
                position: relative;
                z-index: 9999;
                color: var(--text-color3);
            }
            .navbar ul {
                position: absolute;
                top: 65px;
                right: 0;
                width: 200px;
                background: rgba(255, 45, 255, 0.304);
                color: #992a99;
                flex-direction: column;
                align-items: flex-start;
                -webkit-backdrop-filter: blur(10px);
                padding: 15px;
                display: flex;
                visibility: hidden;
                pointer-events: none;
                border-radius: 0 0 0 25px;
                transition: transform 0.3s ease-out, visibility 0.3s;
                transform: translateX(100%);
            }
            .navbar ul.active {
                visibility: visible;
                pointer-events: all;
                transform: translateX(0);
            }
            .navbar ul li {
                width: 100%;
                margin: 10px 0;
            }
            .navbar ul li a:hover {
                text-decoration: underline;
            }
        }
