
.tbf-container {
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding: 10px;
}

.tbf-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.tbf-card.odd {
    background-color: #f8f8f8;
}

.tbf-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.tbf-left {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    border-radius: 16px;
    padding: 12px;
}

.tbf-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.tbf-right {
    flex: 1;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.tbf-casino-name {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 6px;
}

.tbf-val {
    font-size: 1.1em;
    font-weight: bold;
    color: #1a8f00;
    margin-bottom: 10px;
}

.tbf-tag {
    background-color: gold;
    padding: 5px 10px;
    margin-right: 8px;
    border-radius: 4px;
    font-size: 0.8em;
    display: inline-block;
    margin-bottom: 8px;
}

.tbf-head {
    margin-bottom: 10px;
}

.tbf-desc {
    font-size: 0.95em;
    margin-bottom: 12px;
    text-align: left;
}

.tbf-buttons {
    margin-top: 10px;
}

.tbf-buttons a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #007bff;
    color: #007bff;
    font-weight: bold;
    margin-right: 10px;
    transition: 0.3s;
}

.tbf-buttons a.green {
    background-color: #28a745;
    color: white;
    border: none;
}

.tbf-buttons a:hover {
    background-color: #007bff;
    color: white;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .tbf-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .tbf-left {
        width: 100%;
        justify-content: center;
        margin-bottom: 16px;
        padding: 0;
    }

    .tbf-left img {
        width: 200px;
        max-width: 90%;
        height: auto;
    }

    .tbf-right {
        padding-left: 0;
        text-align: left;
        width: 100%;
    }

    .tbf-buttons a {
        margin-bottom: 10px;
    }
}


/* LOGO HERO STYLE SU MOBILE */
@media screen and (max-width: 768px) {
    .tbf-card {
        padding: 0;
        overflow: hidden;
    }

    .tbf-left {
        width: 100%;
        height: 140px;
        background: #000;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tbf-left img {
        width: auto;
        height: 90%;
        max-height: 120px;
        object-fit: contain;
        border-radius: 0;
    }

    .tbf-right {
        padding: 20px;
    }
}
