.character-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}
.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}
.btn-primary {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #5a0db9 0%, #1c67e3 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(38, 117, 252, 0.3);
}
.btn-outline-primary {
    border-color: #6a11cb;
    color: #6a11cb;
}
.btn-outline-primary:hover {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-color: #6a11cb;
    color: white;
}
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.pagination-info {
    margin: 0 1.5rem;
    font-weight: 500;
    color: #495057;
}
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(38, 117, 252, 0.3);
}
.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 117, 252, 0.4);
    color: white;
}
.pagination-btn.disabled {
    background: #dee2e6;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}
.pagination-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}
.page-number {
    font-weight: 600;
    color: #6a11cb;
    font-size: 1.1rem;
}
@media (max-width: 576px) {
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }
    .pagination-info {
        margin: 0.5rem 0;
    }
}
