.all-casinos-block {
    width: 100%;
    padding: 20px 0;
    background: transparent;
}

.all-casinos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.casino-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 2px solid #c9a84c;
    border-radius: 8px;
    padding: 0;
    aspect-ratio: 1;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.casino-logo-card:hover {
    border-color: #f0c060;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.casino-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.casino-logo-placeholder {
    color: #c9a84c;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    word-break: break-word;
    padding: 4px;
}

/* Pagination */
.all-casinos-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.acb-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.acb-page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    color: #4f46e5;
    background: transparent;
    border: 1px solid #c7d2fe;
}

a.acb-page-item:hover {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
    text-decoration: none !important;
}

.acb-page-item.active {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
    font-weight: 700;
    cursor: default;
}

.acb-page-item.disabled {
    opacity: 0.4;
    cursor: default;
    color: #6b7280;
    border-color: #e5e7eb;
}

.acb-page-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

@media (max-width: 767px) {
    .all-casinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
