    .navbar {
            background: var(--white);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
        }

        .navbar-container {
            display: flex;
            padding: 0 40px;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .nav-left {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .nav-center {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-company-logo {
            width: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-company-logo img {
            width: 100%;
            height: auto;
        }

        /* Placeholder logo */
        .logo-placeholder {
            width: 180px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), #FF6B47);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 24px;
            letter-spacing: 2px;
        }

        .nav-link {
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            font-size: 19px;
            padding: 8px 0;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            cursor: pointer;
        }
/* 
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        } */

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary);
        }

        
        /* Gaming-style Burger Menu */
        .mobile-toggle {
            display: none;
            background: var(--primary);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 8px;
            cursor: pointer;
            position: relative;
            z-index: 1001;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 4px 4px 0 var(--black);
        }

        .mobile-toggle:hover {
            background: #FF6B47;
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--black);
        }

        .mobile-toggle:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 var(--black);
        }

        .mobile-toggle.active {
            background: var(--black);
            box-shadow: 4px 4px 0 var(--primary);
        }

        .mobile-toggle.active:hover {
            box-shadow: 6px 6px 0 var(--primary);
        }

        .hamburger {
            position: relative;
            width: 30px;
            height: 24px;
            margin: 0 auto;
        }

        .hamburger span {
            position: absolute;
            width: 100%;
            height: 4px;
            background: white;
            border-radius: 2px;
            left: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
            width: 80%;
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
            width: 60%;
        }

        .mobile-toggle:hover .hamburger span:nth-child(2) {
            width: 100%;
        }

        .mobile-toggle:hover .hamburger span:nth-child(3) {
            width: 100%;
        }

        .mobile-toggle.active .hamburger span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .mobile-toggle.active .hamburger span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .mobile-toggle.active .hamburger span:nth-child(3) {
            bottom: 50%;
            width: 100%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* Full-page Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100dvh;
            background: linear-gradient(135deg, var(--black) 0%, #0a0f16 100%);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" x="0" y="0" fill="%23F1854A" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            opacity: 0.3;
        }

        .mobile-nav.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-nav-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 500px;
            position: relative;
            z-index: 1;
        }

        .mobile-nav-link {
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 2rem;
            padding: 20px 40px;
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            width: 100%;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .mobile-nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 4px;
            background: var(--primary);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .mobile-nav-link:hover::before,
        .mobile-nav-link.active::before {
            width: 30px;
        }

        .mobile-nav-link::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 4px;
            background: var(--primary);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .mobile-nav-link:hover::after,
        .mobile-nav-link.active::after {
            width: 30px;
        }

        .mobile-nav.active .mobile-nav-link {
            animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
        .mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
        .mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
        .mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
        .mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: var(--primary);
            transform: scale(1.05);
        }

        .mobile-cta {
            margin-top: 30px;
            opacity: 0;
            transform: translateY(50px);
        }

        .mobile-nav.active .mobile-cta {
            animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            animation-delay: 0.6s;
        }

        .mobile-cta .pixel-button-dark {
            font-size: 18px;
            padding: 18px 40px;
        }

        /* Decorative elements */
        .nav-decoration {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary), transparent);
            opacity: 0.1;
            pointer-events: none;
        }

        .nav-decoration.top-left {
            top: -100px;
            left: -100px;
        }

        .nav-decoration.bottom-right {
            bottom: -100px;
            right: -100px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .nav-center {
                gap: 25px;
            }

            .nav-link {
                font-size: 15px;
            }

            .navbar-container {
                /* padding: 0 30px; */
            }
        }

        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }

            .nav-right {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .navbar-container {
                /* padding: 0 20px; */
            }

           

            .navbar {
                padding: 15px 0;
            }

            .mobile-nav-link {
                font-size: 1.5rem;
                padding: 15px 30px;
            }
        }

        @media (max-width: 480px) {
           
            .mobile-nav-content {
                padding: 20px;
            }

            .mobile-nav-link {
                font-size: 1.3rem;
                padding: 12px 20px;
            }

            .mobile-toggle {
                width: 50px;
                height: 50px;
            }

            .mobile-cta .pixel-button-dark {
                font-size: 16px;
                padding: 15px 30px;
            }
        }


        /* === Dark Theme Overrides for Navbar === */
.navbar.dark-theme {
  background: var(--black);
}
.navbar.event-theme{
    background-color: #4b4c9b !important;
}
.navbar.dark-theme .nav-link {
  color: var(--white);
}

.navbar.dark-theme .nav-link:hover,
.navbar.dark-theme .nav-link.active {
  color: var(--primary);
}

.navbar.dark-theme .mobile-toggle {
  box-shadow: 4px 4px 0 var(--white);
}

.navbar.dark-theme .mobile-toggle:hover {
  box-shadow: 6px 6px 0 var(--white);
}

.navbar.dark-theme .mobile-toggle:active {
  box-shadow: 2px 2px 0 var(--white);
}

.navbar.dark-theme .hamburger span {
  background: var(--white);
}

/* Mobile nav background override */
.navbar.dark-theme + .mobile-nav {
  background: linear-gradient(135deg, var(--white) 0%, #ccc 100%);
}
/* Transition Screen Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    pointer-events: none;
}

.transition-overlay.active {
    pointer-events: all;
}

.transition-logo {
    width: 300px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
}

/* Pixel-style loading animation */
.transition-loader {
    position: absolute;
    bottom: 80px;
    display: flex;
    gap: 8px;
    opacity: 0;
}

.loader-pixel {
    width: 12px;
    height: 12px;
    background: var(--primary);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

/* Decorative elements for gaming feel */
.transition-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid var(--primary);
    opacity: 0;
}

.transition-decoration.top-left {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.transition-decoration.top-right {
    top: 40px;
    right: 40px;
    border-left: none;
    border-bottom: none;
}

.transition-decoration.bottom-left {
    bottom: 40px;
    left: 40px;
    border-right: none;
    border-top: none;
}

.transition-decoration.bottom-right {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

/* Hide scrollbar during transition */
body.transitioning {
    overflow: hidden;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: auto; /* We'll control this with GSAP */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .transition-logo {
        width: 200px;
    }

    .transition-decoration {
        width: 60px;
        height: 60px;
    }

    .transition-decoration.top-left,
    .transition-decoration.top-right {
        top: 20px;
    }

    .transition-decoration.bottom-left,
    .transition-decoration.bottom-right {
        bottom: 20px;
    }

    .transition-decoration.top-left,
    .transition-decoration.bottom-left {
        left: 20px;
    }

    .transition-decoration.top-right,
    .transition-decoration.bottom-right {
        right: 20px;
    }

    .transition-loader {
        bottom: 60px;
    }

    .loader-pixel {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .transition-logo {
        width: 160px;
    }

    .transition-decoration {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}