/* =========================================
   MAIN CONTAINER (DESKTOP)
========================================= */
#comparison-table {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

/* =========================================
   HEADER (DESKTOP ONLY)
========================================= */
#comparison-table .comparison-table-header {
    display: grid;
    grid-template-columns: 0.8fr 1.8fr 2fr 1.2fr;
    align-items: center;
    width: 98%;
    text-align: center;
    font-weight: bold;
    font-size: 0.97rem;
    color: #333;
    border-bottom: 2px solid #ddd;
    box-sizing: border-box;
}

/* =========================================
   ROWS (DESKTOP TABLE LAYOUT)
========================================= */
#comparison-table .comparison-table-transparent {
    display: grid;
    grid-template-columns: 0.8fr 1.8fr 2fr 1fr;
    align-items: center;
    gap: 0.5rem;
    width: 98%;
    padding: 12px 15px;
    border-radius: 0.5rem;
    background-color: transparent !important;
    box-shadow: 0 0 10px rgb(0 0 0 / 80%);
    text-align: center;
    color: black;
}

/* =========================================
   COLUMNS
========================================= */
#comparison-table .betting-col {
    min-width: 0;
    overflow-wrap: break-word;
}

/* Logo */
#comparison-table .betting-col.casino {
    display: flex;
    justify-content: center;
    align-items: center;
}


#comparison-table .betting-image img {
    max-width: 160px;
    width: 100%;
    height: auto;
}

/* Bonus title */
#comparison-table .betting-bonus-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
}

#comparison-table .betting-bonus-title a {
    color: black;
    text-decoration: none;
}

#comparison-table .betting-bonus-title:hover a {
    color: rgb(230, 73, 70);
}

/* Terms */
#comparison-table .betting-bonus-offer {
    font-size: 15px;
    line-height: 1.45;
}

#comparison-table .betting-bonus-offer p {
    margin: 5px 0 !important;
    color: black;
}

/* CTA */
#comparison-table .betting-col.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#comparison-table .get-bonus-button {
    width: 155px;
    border: 0.1rem solid white;
    border-radius: 2rem;
    padding: 5px;
    font-size: 1rem;
    text-align: center;
    background-color: rgb(230, 73, 70);
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 40%);
}

#comparison-table .get-bonus-button a {
    color: white !important;
    text-decoration: none !important;
}

#comparison-table .get-bonus-button:hover {
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 80%);
}

#comparison-table .review-link a {
    font-size: 0.9rem;
    color: rgb(230, 73, 70);
}

/* Mobile labels hidden on desktop */
.mobile-label {
    display: none;
}

@media (max-width: 768px) {

    /* Horizontal scroll container */
    #comparison-table {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        overflow-x: auto;
    margin:10px;
    }

    /* Hide desktop header completely on mobile */
    #comparison-table .comparison-table-header {
        display: none !important;
    }

    /* Each bonus box = swipe card */
    #comparison-table .comparison-table-transparent {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-width: 250px;
        height: 325px;
        margin: 10px 5px;
        box-shadow: 0 0 10px 0px rgb(0 0 0 / 80%);
        text-align: center;
    }

    /* Activate mobile labels */
    #comparison-table .mobile-label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #777;
        margin-bottom: 6px;
    }

    /* Center all content */
    #comparison-table .betting-col {
        align-items: center;
        text-align: center;
    }

 #comparison-table .betting-col.casino .mobile-label {
        display: none;
    }

    #comparison-table .betting-image img {
        width: 140px;
    }

    /* Bonus title */
    #comparison-table .betting-bonus-title {
        font-size: 15px;
        font-weight: 600;
    }

    /* Terms */
    #comparison-table .betting-bonus-offer {
        font-size: 14px;
        line-height: 1.45;
    }
}