.country-menu-wrapper-d3d81f18 {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
    padding: 50px;
    box-sizing: border-box;
    overflow: hidden;
}

.country-menu-wrapper-d3d81f18::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.country-menu-list-d3d81f18 {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.country-menu-item-d3d81f18 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    position: relative;
    width: fit-content;
    margin: 0;
    line-height: 1.2;
}

.country-menu-item-d3d81f18::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 4px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.country-menu-item-d3d81f18:hover::after,
.country-menu-item-d3d81f18.active::after {
    width: 100%;
}
