   * {
    box-sizing:border-box;
    color:black;
    letter-spacing:0;
    margin:0;
    padding:0
}
    body.menu-is-open {
        overflow: hidden;
    }

    #menuOverlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        display: none; 
    }

    body.menu-is-open #menuOverlay {
        display: block;
        opacity: 1;
    }

    #sideMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 380px;
        height: 100%;
        background-color: white;
        z-index: 9999;
        display: flex; 
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        font-family: 'Roboto', sans-serif;
        display: none; /* Hidden by default */
    }

    body.menu-is-open #sideMenu {
        display: flex;
        transform: translateX(0);
    }
    
    .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        flex-shrink: 0;
    }

    .menu-header .logo-link img {
        height: 40px;
    }

    #closeMenu {
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;

    background: none;
    border: none;
    }

    #closeMenu::before,
    #closeMenu::after {
        content: '';
        position: absolute;
        top: 50%; 
        left: 5px;
        width: 22px;
        height: 2px;
        background-color: black; 
    }

    #closeMenu::before {
        transform: translateY(-50%) rotate(45deg);
    }

    #closeMenu::after {
        transform: translateY(-50%) rotate(-45deg);
    }
    .menu-content {
        flex-grow: 1;
        overflow-y: auto;
        padding: 10px 0;
    }

    .menu-item {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        text-decoration: none;
        color: black;
        font-size: 16px;
        font-weight: 500;
    }

    .menu-item:hover {
        background-color: ;
    }

    .menu-item .icon {
        width: 37px;
        height: 37px;
        margin-right: 15px;
    }
    
    .menu-item .text-group {
        line-height: 1.2;
    }
    
    .menu-item .text-group .menu-item-subtitle {
        font-size: 13px;
        color: black;
        font-weight: 400;
    }

    .menu-item .arrow {
    margin-left: auto;
    color: black;
    font-size: 14px;  
    transition: transform 0.3s ease;
    width: auto;
    height: auto;
    }
    .menu-item.active .arrow {
        transform: rotate(90deg);
    }
    
    .menu-footer {
        padding: 20px;
        flex-shrink: 0;
        color: black;
        font-size: 14px;
    }

    .language-country-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .language-selector, .location {
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .language-selector svg, .location svg {
        margin-right: 8px;
        fill: #d2d2d2;
    }
    .submenu {
        display: none; 
        
        background-color: white;
        padding: 5px 20px 15px 72px;
    }

    .submenu .stat-item {
        padding: 6px 0;
        color: white;
        font-size: 14px;
    }

    .submenu.player-stats-submenu {
    padding: 10px 15px;
    background-color: #e9e9eb;
    border-top: 1px solid #ddd;
    }

    .stat-item {
        display: flex; 
        align-items: center; 
        background: white; 
        color: #333;
        
        font-size: 14px;
        font-weight: 500;
        font-family: 'Roboto', sans-serif;

        padding: 8px 12px;
        margin-bottom: 5px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }

    .stat-item img {
        width: 30px; 
        height: 30px;
        object-fit: contain; 
        margin-right: 12px; 
    }
    .CartButton_CartIcon__2tRvz svg {
    color: black;
    }
