.anime-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}
.anime-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}
.synopsis-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.genre-checkboxes::-webkit-scrollbar {
    width: 6px;
}
.genre-checkboxes::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.genre-checkboxes::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 10px;
}
.genre-checkboxes::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}
.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);
}
.form-check-input:checked {
    background-color: #6a11cb;
    border-color: #6a11cb;
}
/* Make the filters sticky on scroll */
.sticky-top {
    z-index: 100;
}
.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;
    }
}