/* 📌 Banner ghim dưới cùng màn hình */
.seo-bet-banner-floating {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
}

/* 📌 Chia hàng cho banner */
.seo-bet-banner-row {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1500px; /* Giới hạn chiều rộng */
    margin-bottom: 5px;
}

/* 📌 PC & Tablet: 2 banner trên - 2 banner dưới */
@media (min-width: 768px) {
    .seo-bet-banner-row {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .seo-bet-banner-row a {
        width: 728px; /* Giữ chuẩn banner */
        height: 90px;
        text-align: center;
    }

    .seo-bet-banner-img {
        width: 100%;
/*         height: 90px; */
        object-fit: cover;
    }
}

/* 📌 Mobile: Hiển thị 4 banner xếp hàng dọc */
@media (max-width: 768px) {
    .seo-bet-banner-floating {
        padding: 0;
        gap: 0;
    }

    .seo-bet-banner-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .seo-bet-banner-row a {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .seo-bet-banner-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* 📌 Nút tắt banner */
.seo-bet-banner-close {
    position: absolute;
    top: -15px;
    right: 15px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
