.offers-table-wrapper {
    margin: 2rem auto;
    max-width: 1400px;
}

/* Desktop Table Styles */
.offers-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.offers-table thead {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.offers-table th {
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #dee2e6;
    color: #212529;
    white-space: nowrap;
}

.offers-table th:first-child {
    text-align: center;
}

.offers-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #e9ecef;
}

.offers-table tbody tr:last-child {
    border-bottom: none;
}

.offers-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.offers-table td {
    padding: 1.75rem 1.5rem;
    vertical-align: middle;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.offers-table td:last-child {
    border-right: none;
}

.casino-cell {
    text-align: center;
    min-width: 150px;
}

.casino-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0.75rem;
    border-radius: 8px;
    padding: 0.5rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
}

.casino-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #212529;
    margin-top: 0.5rem;
}

.offers-table tbody td:nth-child(2),
.offers-table tbody td:nth-child(3),
.offers-table tbody td:nth-child(4) {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
    max-width: 250px;
}

.offers-table tbody td:nth-child(2) strong,
.offers-table tbody td:nth-child(3) strong,
.offers-table tbody td:nth-child(4) strong {
    color: #000000;
    font-weight: 700;
}

/* Mobile Cards - Hidden by default */
.offers-mobile {
    display: none;
}

/* Button Styles */
.offer-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #000000;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 4px;
    border: 2px solid #000000;
}

.offer-btn:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (max-width: 1024px) {
    .offers-table th,
    .offers-table td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    .casino-logo {
        width: 80px;
        height: 80px;
    }

    .casino-name {
        font-size: 0.95rem;
    }
}

/* Mobile - Switch to Cards */
@media (max-width: 768px) {

    /* Hide table on mobile */
    .offers-table {
        display: none;
    }

    /* Show mobile cards */
    .offers-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-offer-card {
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
    }

    .mobile-offer-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .mobile-casino-logo {
        width: 100px;
        height: 100px;
        object-fit: contain;
        display: block;
        margin: 0 auto 1rem;
        border-radius: 8px;
        padding: 0.5rem;
        background: #ffffff;
        border: 1px solid #e9ecef;
    }

    .mobile-casino-name {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #212529;
    }

    .mobile-offer-details {
        margin: 1.5rem 0;
        text-align: left;
    }

    .mobile-offer-item {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-offer-item:last-child {
        border-bottom: none;
    }

    .mobile-label {
        font-weight: 700;
        color: #212529;
        font-size: 0.9rem;
    }

    .mobile-value {
        color: #495057;
        font-size: 0.9rem;
        text-align: right;
        flex: 1;
        margin-left: 1rem;
    }

    .mobile-offer-card .offer-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.875rem;
    }
}
