:root {
    --seo-bet-columns: 32%; /* Mặc định Desktop 3 cột */
    --seo-bet-columns-tablet: 48%; /* Tablet 2 cột */
    --seo-bet-columns-mobile: 100%; /* Mobile 1 cột */
}

.seo-bet-top10-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 35px 0;
}

.seo-bet-top10-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Cấu hình số cột */
.seo-bet-top10-item {
    position: relative;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    width: var(--seo-bet-columns);
    text-align: center;
}

/* 📌 Số thứ tự xếp hạng */
.seo-bet-top10-rank {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #ff5722;
    color: white;
    padding: 5px;
    border-radius: 10px 10px 0 10px;
    font-size: 16px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    text-align: center;
}

/* 📌 Hàng 1: Logo & Tên nhà cái */
.seo-bet-top10-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 10px 0;
}

/* Logo */
.seo-bet-top10-left img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

/* Cột phải: Tên nhà cái + số sao */
.seo-bet-top10-right {
    padding-left: 10px;
    flex-grow: 1;
}

.seo-bet-top10-right strong {
    font-size: 18px;
    font-weight: bold;
}

.seo-bet-top10-stars {
    font-size: 16px;
    color: gold;
    margin-top: 5px;
}

/* 📌 Hàng 2: Thông tin khuyến mãi */
.seo-bet-top10-middle {
    text-align: left;
    margin-top: 10px;
    display: flex;
}

.seo-bet-promo {
    font-size: 14px;
    margin: 3px 0;
}

/* 📌 Hàng 3: Nút */
.seo-bet-top10-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 10px;
}

.seo-bet-button {
    display: inline-block;
    text-align: center;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    flex: 1;
}

.play-button {
    background: #f58927;
}

.review-button {
    background: #0160e7;
}

.seo-bet-button:hover {
    opacity: 0.8;
}

/* 📌 Responsive: Tablet (768px - 1023px): Hiển thị 2 nhà cái mỗi hàng */
@media (max-width: 1023px) {
    .seo-bet-top10-item {
        width: var(--seo-bet-columns-tablet);
    }
}

/* 📌 Responsive: Mobile (<768px): Hiển thị 1 nhà cái mỗi hàng */
@media (max-width: 768px) {
    .seo-bet-top10-row {
        flex-direction: column;
        gap: 10px;
    }

    .seo-bet-top10-item {
        width: var(--seo-bet-columns-mobile);
    }

    .seo-bet-top10-header {
        text-align: center;
    }

    .seo-bet-top10-left,
    .seo-bet-top10-right {
        width: 100%;
        padding: 5px 0;
    }

    .seo-bet-top10-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .seo-bet-button {
        width: 100%;
        margin-top: 5px;
    }
}
