* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0b0f19;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
        }

        /* TOP BAR */
        .topbar {
            padding: 10px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #0f1624;
            border-bottom: 1px solid rgba(0, 234, 255, 0.3);
        }

        .left-info {
            display: flex;
            gap: 15px;
        }

        .topbar span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #00eaff;
            font-size: 13px;
        }

        .social a {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 12px;
            transition: all 0.3s ease;
        }

        .social a:hover {
            transform: translateY(-3px);
        }

        .social a:hover svg {
            filter: drop-shadow(0 0 8px rgba(0, 234, 255, 0.8));
        }

        .social {
            display: flex;
            gap: 12px;
        }

        /* MAIN NAVIGATION */
        .mainnav {
            padding: 22px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /*background: #0b0f19;*/
            border-bottom: 1px solid rgba(0, 234, 255, 0.1);
            position: relative;
            z-index: 18;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 0.6px;
            color: #fff;
        }

        .logo img {
            display: block;
            height: 45px;
            object-fit: contain;
        }

        .logo span {
            background: linear-gradient(90deg, #00eaff, #0066ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .menu {
            list-style: none;
            display: flex;
            gap: 52px;
            align-items: center;
        }

        .menu li {
            position: relative;
        }

        .menu a {
            text-decoration: none;
            color: #d1d9ff;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.25s ease;
            cursor: pointer;
            padding: 8px 0;
            position: relative;
        }

        .menu a:hover {
            color: #00eaff;
            text-shadow: 0 0 8px rgba(0, 234, 255, 0.5);
        }

        /* DROPDOWN */
        .dropdown {
            position: relative;
        }

        .dropdown-box {
            position: absolute;
            top: calc(100% + 15px);
            left: 0;
            min-width: 240px;
            padding: 20px;
            background: #111728;
            border: 1px solid rgba(0, 234, 255, 0.2);
            border-radius: 12px;
            display: none;
            flex-direction: column;
            gap: 12px;
            box-shadow: 0 0 20px rgba(0, 234, 255, 0.2);
            z-index: 1000;
        }

        .dropdown:hover .dropdown-box {
            display: flex;
        }

        .dropdown-box a {
            color: #d1d9ff;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s;
        }

        .dropdown-box a:hover {
            color: #00eaff;
            background: rgba(0, 234, 255, 0.1);
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: #00eaff;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .topbar {
                padding: 10px 30px;
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .left-info {
                /* flex-direction: column; */
                gap: 8px;
            }

            .mainnav {
                padding: 22px 30px;
            }

            .menu {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #111728;
                flex-direction: column;
                padding: 25px;
                display: none;
                gap: 20px;
                border-top: 1px solid rgba(0, 234, 255, 0.2);
                z-index: 999;
            }

            .menu.open {
                display: flex;
            }

            .dropdown-box {
                position: relative;
                top: 0;
                left: 0;
                border: none;
                background: rgba(0, 234, 255, 0.05);
                box-shadow: none;
                padding: 10px 0;
                display: none;
                margin-top: 10px;
            }

            .dropdown.active .dropdown-box {
                display: flex;
            }

            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 600px) {
            .topbar {
                padding: 10px 20px;
            }

            .topbar span {
                font-size: 11px;
            }

            .mainnav {
                padding: 18px 20px;
            }

            .logo {
                font-size: 22px;
            }

            .logo img {
                height: 40px;
            }
        }

        /* Instructions for replacing logo */
        .logo-instructions {
            margin-top: 20px;
            padding: 15px;
            background: rgba(0, 234, 255, 0.05);
            border-radius: 8px;
            border-left: 3px solid #00eaff;
        }