.mobile-side-header-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 270px;
    height: 100%;
    background: #000;
    color: #fff;
    padding: 15px;
    z-index: 1100;
    transition: left 0.4s ease;
    border-right: 2px solid transparent;
    animation: borderGlow 2s infinite alternate;

    /* Added scroll */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Optional custom scrollbar */
.mobile-side-header-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-side-header-menu::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.mobile-side-header-menu::-webkit-scrollbar-track {
    background: transparent;
}

@keyframes borderGlow {
    0% {
        border-color: #ff9800;
    }

    100% {
        border-color: #00ff88;
    }
}

.mobile-side-header-menu.active {
    left: 0;
}

/* Overlay background */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1050;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.btn-style1 {
    width: 100%;
    color: white;
    text-align: left;
    background: url(https://www.wicket71bd.com/m/mc-reward.5b5a7554.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 15px 10px;
    border-radius: 7px;
    border: 1px solid black;
}

.btn-style2 {
    width: 100%;
    color: white;
    text-align: left;
    background: #5a5aff;
    padding: 15px 10px;
    border-radius: 7px;
    border: 1px solid black;
}

.btn-style3 {
    width: 100%;
    color: white;
    text-align: left;
    background: url(https://www.wicket71bd.com/m/mc-mall.e7c5534e.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 15px 10px;
    border-radius: 7px;
    border: 1px solid black;
}

.btn-style4 {
    width: 100%;
    color: white;
    text-align: left;
    background: url(https://www.wicket71bd.com/m/mc-event.03f8bbf0.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 15px 10px;
    border-radius: 7px;
    border: 1px solid black;
}

.menu-logo {
    height: 40px;
}

.close-btn {
    font-size: 22px;
    cursor: pointer;
}

.menu-links li {
    padding: 10px 0;
    cursor: pointer;
}

.menu-links li i {
    margin-right: 10px;
}

.menu-buttons .btn {
    font-weight: bold;
}

.social-icons i {
    transition: transform 0.2s ease;
}

.social-icons i:hover {
    transform: scale(1.2);
}

/* Hide menu on desktop */
@media (min-width: 992px) {

    .mobile-side-header-menu,
    #openMenuBtn {
        display: none !important;
    }
}