/* Pagination — "Neon Arcade" LIGHT theme (matches main.css design tokens) */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination li, .pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-weight: 600;
    border-radius: 12px 2px 12px 2px;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: #475168;
    font-size: 13px;
    font-family: Montserrat-Bold, sans-serif;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(13, 20, 36, 0.06);
}

.pagination a:hover {
    background: linear-gradient(135deg, #00b8d4 0%, #e91e7c 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 184, 212, 0.40);
}

.pagination .active,
.pagination .active a,
.pagination li.active {
    background: linear-gradient(135deg, #00b8d4 0%, #e91e7c 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(0, 184, 212, 0.40), 0 0 0 1px rgba(0, 184, 212, 0.30);
}

.pagination .disabled,
.pagination .disabled a {
    background-color: #f5f8fd;
    color: #94a0bb;
    cursor: not-allowed;
    border-color: rgba(15, 23, 42, 0.06);
    pointer-events: none;
    box-shadow: none;
}
