.navbar {
    padding: 30px 0;
        background: #9e4efc;
        background: -moz-linear-gradient(top, #000 0%, #000 100%);
        background: -webkit-linear-gradient(top, #000 0%, #000 100%);
        background: linear-gradient(#360303 20%,#360303 5%,#a30000 70%);
        border-bottom: 10px solid #ff0000;
        }
        
        .navbar-brand {
            padding-top: 0;
            padding-bottom: 0;
        }
        
        .menu_fix {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #000;
            padding-bottom: 18px;
        }
        
        .menu_head a img {
            height: 98px;
        }
        
        .main_menu_wrapper {
        background: linear-gradient(
     180deg,
     #2a0000 0%,
     #cf0000 40%,
     #1a0000 100%
   ); 
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }
    
    .navbar-brand .logo-img {
        max-height: 65px;
        width: auto;
    }
    
    
    .navbar-nav .nav-item {
        margin: 0 5px; 
    }
    
    
    .gaming-btn {
        position: relative;
        display: inline-block;
        color: #fff !important;
        font-family: 'Nunito', sans-serif;
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        text-decoration: none;
        padding: 10px 25px;
        
        transform: skew(-20deg); 
        
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        overflow: hidden;
    }
    
    .gaming-btn span {
        display: block;
        transform: skew(20deg);
    }
    
    .gaming-btn:hover, 
    .gaming-btn.active {
        background: linear-gradient(45deg, #ff7f32, #ffcc00);
        border-color: #ffcc00;
        
        box-shadow: 0 0 15px rgba(255, 127, 50, 0.8);
        
        transform: skew(-20deg) translateY(-3px);
    }
    
    .gaming-btn:hover span, 
    .gaming-btn.active span {
        color: #330000;
    }
    
    .gaming-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: 0.5s;
    }
    
    .gaming-btn:hover::before {
        left: 100%;
    }
        
    @media (max-width: 991px) {
        .navbar-collapse {
            background: rgba(0, 0, 0, 0.9);
            padding: 15px;
            margin-top: 10px;
            border-radius: 10px;
            border: 1px solid #ff7f32; 
        }
    
        .navbar-nav .nav-item {
            margin: 5px 0; 
        }
    
        .gaming-btn {
            display: block;
            text-align: center;
            transform: skew(0deg) !important;
            width: 100%;
        }
    
        .gaming-btn span {
            transform: skew(0deg) !important;
        }
        
        .navbar-nav {
            text-align: center;
        }
    }