img.footer_icon.img {
    width: 2.8rem;
    height: auto;
    display: flex;
    position: relative;
    bottom: .18rem;
}
.footer_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
}
.footer_text {
    text-align: center;
    font-size: .85rem;
    position: relative;
    bottom: .18rem;
}

.footer__menu.main>.footer_icon>img.footer_icon.img.main {
    width: 3.75rem;
    position: relative;
    bottom: 1.1rem;
}

span.footer_text_main.span{ 
    position: relative;
    bottom: 1.2rem;
}
.footer__menu {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
}

/* Footer Info Section */
.footer_info {
    padding-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #fff;
}
.foot_gradient {
    background: linear-gradient(180deg, #1a1a2e, #000);
}
.info_title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f0c040;
}
.info_subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    margin-top: 2px;
}
.info_text {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
    padding: 0 8px;
}
.footer__game {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    padding: 5px;
}
.footer__bank {
    width: 100%;
    height: 34px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 4px;
}
.tag_items {
    margin: .25rem auto;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 6px;
}
.tag {
    background: #464646;
    border-radius: 18px;
    color: #fbfbfb;
    font-size: .8rem;
    padding: 4px 12px;
    transition: all .2s ease-in-out;
}
.copy__right {
    font-size: .8rem;
    color: #888;
    margin-top: 8px;
}

/* Language Toggle (Header) */
.lang-toggle {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-right: 4px;
}
.lang-flag {
    font-size: 1.5rem;
    line-height: 1;
}
.lang-flag-img {
    width: 50px;
    height: auto;
    border-radius: 2px;
}
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 6px 0;
    min-width: 150px;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
    margin-top: 8px;
}
.lang-option {
    padding: 8px 14px;
    font-size: 0.9rem;
    color: #ccc;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.lang-option:hover {
    background: rgba(255,255,255,0.1);
}
.lang-option.active {
    color: #f0c040;
    background: rgba(240,192,64,0.1);
}

