    :root {
            --neon-purple: #6a3dff;
            --neon-purple-glow: 0 0 8px rgba(106, 61, 255, 0.6);
            --bg-gradient: radial-gradient(ellipse at center, #0a0a14 0%, #05020a 80%);
        }
        
        .navbar {
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
            background: rgba(15, 15, 25, 0.8);
            position: relative;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(106, 61, 255, 0.2);
            z-index: 1000;
        }
html {
  scrollbar-width: thin;
  scrollbar-color: #2a2a3a #0d0d14; 
}

html::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

html::-webkit-scrollbar-thumb {
  background-color: #2a2a3a;
  border-radius: 8px;
}

html::-webkit-scrollbar-track {
  background-color: #0d0d14;
}



         .navbar-home {
            background: rgba(0, 0, 0, 0.8); !important
        }
        
        .logo-text {
            background: linear-gradient(135deg, #6a3dff, #a183ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: var(--neon-purple-glow);
            font-weight: 700;
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6a3dff, #a183ff);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link.active {
            color: #a183ff;
        }
        
        .profile-container {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(106, 61, 255, 0.15);
            border-radius: 9999px;
            transition: all 0.3s ease;
        }
        
        .profile-container:hover {
            background: rgba(106, 61, 255, 0.1);
            border-color: rgba(106, 61, 255, 0.3);
        }
        
        .profile-image {
            border: 2px solid rgba(106, 61, 255, 0.5);
        }
        
        .points {
            background: rgba(106, 61, 255, 0.15);
            border: 1px solid rgba(106, 61, 255, 0.3);
            border-radius: 9999px;
        }
        
        .icon-button {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(106, 61, 255, 0.15);
            border-radius: 9999px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .icon-button:hover {
            background: rgba(106, 61, 255, 0.1);
            border-color: rgba(106, 61, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .menu-button {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(106, 61, 255, 0.15);
            border-radius: 9999px;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .menu-button:hover {
            background: rgba(106, 61, 255, 0.1);
            border-color: rgba(106, 61, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .icon-glow {
            color: #a183ff;
            filter: drop-shadow(0 0 3px rgba(106, 61, 255, 0.7));
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100vh;
            background: rgba(15, 15, 25, 0.95);
            backdrop-filter: blur(10px);
            border-right: 1px solid rgba(106, 61, 255, 0.2);
            z-index: 1000;
            transition: left 0.3s ease;
            overflow-y: auto;
        }
        .mobile-menu-home {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border-right: 1px solid rgba(106, 61, 255, 0.2);
            z-index: 1000;
            transition: left 0.3s ease;
            overflow-y: auto;
            border-width: 0;
        }
        .mobile-menu-home.open {
            left: 0;
        }
        
        .mobile-menu.open {
            left: 0;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .home-close {
            border-width: 0;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(15, 15, 25, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(106, 61, 255, 0.2);
            border-radius: 8px;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 10px;
            z-index: 1000;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            margin-top: 5px;
        }
        
        .dropdown-item {
            padding: 10px 16px;
            display: block;
            transition: all 0.2s ease;
            border-bottom: 1px solid rgba(106, 61, 255, 0.1);
        }
        
        .dropdown-item:last-child {
            border-bottom: none;
        }
        
        .dropdown-item:hover {
            background: rgba(106, 61, 255, 0.1);
        }
@media (max-width: 640px) {
  .hide {
    display: none;
  }
}