.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 50px auto;
    flex-wrap: wrap;
}

/* Button */
.btn-pg {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--bg-card);
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}
.btn-pg:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
}
.btn-pg.active {
    background: var(--accent);
    color: #0b0f19;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}
.points-pg{
    border:none;
    background:none;
}

/* Mobile */
@media (max-width: 600px) {
    .pagination {
        gap: 6px;
    }
    .btn-pg {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }
}