    .catalog-card {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
        border: 1px solid rgba(100, 116, 139, 0.3);
    }
    
    .catalog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        border-color: rgba(59, 130, 246, 0.5);
    }
    
    .card-image-container {
        position: relative;
        overflow: hidden;
        height: 300px;
    }
    
    .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .catalog-card:hover .card-image {
        transform: scale(1.05);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
        opacity: 0.7;
    }
    
    .image-shine {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: rotate(30deg);
        transition: all 0.6s ease;
    }
    
    .catalog-card:hover .image-shine {
        left: 100%;
    }
    
    .card-content {
        padding: 15px;
        position: relative;
        z-index: 1;
    }
    
    .card-title {
        color: white;
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .alternate-titles {
        color: #94a3b8;
        font-size: 0.85rem;
        font-style: italic;
        margin-bottom: 10px;
        min-height: 1.2em;
    }
    
    .content-divider {
        height: 2px;
        background: linear-gradient(to right, transparent, #3b82f6, transparent);
        margin: 10px 0;
    }
    
    .catalog-info {
        color: #cbd5e1;
        font-size: 0.85rem;
    }
    
    .info-row {
        display: flex;
        margin-bottom: 5px;
    }
    
    .info-label {
        min-width: 70px;
        font-weight: 600;
        color: #94a3b8;
    }
    
    .info-value {
        flex: 1;
        color: #e2e8f0;
    }
    
    .synopsis-tooltip {
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.95);
        padding: 15px;
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 10;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(59, 130, 246, 0.3);
    }
    
    .catalog-card:hover .synopsis-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .synopsis-label {
        display: block;
        color: #3b82f6;
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }
    
    .synopsis-content {
        color: #cbd5e1;
        font-size: 0.85rem;
        line-height: 1.4;
        max-height: 200px;
        overflow-y: auto;
    }
    
    /* Grid layout */
    #list_catalog {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 10px;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    /* Filter styles */
    .catalog-sidebar {
        background: rgba(15, 23, 42, 0.8);
        border-radius: 10px;
        padding: 20px;
        border: 1px solid rgba(100, 116, 139, 0.3);
    }
    
    .filter-group {
        margin-bottom: 25px;
        border-bottom: 1px solid rgba(100, 116, 139, 0.2);
        padding-bottom: 20px;
    }
    
    .filter-group:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .filter-header {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
        user-select: none;
    }
    
    .filter-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        color: #3b82f6;
    }
    
    .filter-title {
        color: #e2e8f0;
        font-weight: 600;
        flex: 1;
    }
    
    .filter-toggle-icon {
        width: 20px;
        height: 20px;
        color: #94a3b8;
        transition: transform 0.3s ease;
    }
    
    .filter-content {
        display: block;
        margin-top: 10px;
    }
    
    .filter-checkbox-item {
        display: flex;
        align-items: center;
        padding: 8px 5px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.2s ease;
        color: #cbd5e1;
    }
    
    .filter-checkbox-item:hover {
        background: rgba(59, 130, 246, 0.1);
        color: white;
    }
    
    .filter-checkbox {
        margin-right: 10px;
        width: 16px;
        height: 16px;
        cursor: pointer;
    }
    
    .genre-search-container {
        margin-bottom: 10px;
    }
    
    .genre-search {
        width: 100%;
        padding: 8px 12px;
        background: rgba(30, 41, 59, 0.8);
        border: 1px solid rgba(100, 116, 139, 0.5);
        border-radius: 5px;
        color: white;
        font-size: 0.9rem;
    }
    
    .genre-search:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    }
    
    /* Search bar */
    .searchbar-container {
        position: relative;
        margin-bottom: 20px;
    }
    
    .searchbar-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        color: #94a3b8;
        pointer-events: none;
    }
    
    .searchbar-input {
        width: 100%;
        padding: 12px 15px 12px 45px;
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid rgba(100, 116, 139, 0.5);
        border-radius: 8px;
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .searchbar-input:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }
    
    /* Action buttons */
    .action-buttons-container {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .catalog-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
        border: 1px solid rgba(59, 130, 246, 0.5);
        border-radius: 6px;
        color: #e2e8f0;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }
    
    .catalog-btn:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.2));
        border-color: #3b82f6;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    }
    
    .catalog-btn-reset {
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(185, 28, 28, 0.2));
        border-color: rgba(220, 38, 38, 0.5);
    }
    
    .catalog-btn-reset:hover {
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(185, 28, 28, 0.3));
        border-color: #dc2626;
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    }
    
    .catalog-btn-random {
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.2));
        border-color: rgba(168, 85, 247, 0.5);
    }
    
    .catalog-btn-random:hover {
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(147, 51, 234, 0.3));
        border-color: #a855f7;
        box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
    }
    
    .catalog-btn-icon {
        width: 18px;
        height: 18px;
    }
    
    .catalog-btn-icon-large {
        width: 22px;
        height: 22px;
    }
    
    /* Pagination */
    #list_pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 30px;
        padding: 20px 0;
    }
    
    #list_pagination a,
    #list_pagination span {
        padding: 8px 15px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        min-width: 40px;
        text-align: center;
    }
    
    #list_pagination a {
        background: rgba(30, 41, 59, 0.8);
        border: 1px solid rgba(100, 116, 139, 0.3);
        color: #cbd5e1;
    }
    
    #list_pagination a:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.2));
        border-color: #3b82f6;
        color: white;
        transform: translateY(-2px);
    }
    
    #list_pagination .p-3.mt-5.bg-sky-900 {
        background: linear-gradient(135deg, #0c4a6e, #0369a1) !important;
        border-color: #0c4a6e !important;
        color: white !important;
    }
    
    /* Main layout */
    .catalog-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .catalog-main {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    @media (min-width: 1024px) {
        .catalog-main {
            grid-template-columns: 280px 1fr;
        }
    }
    
    .catalog-content {
        display: flex;
        flex-direction: column;
    }
    
    /* Page header */
    .catalog-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Scrollbar styling */
    #list_catalog::-webkit-scrollbar,
    .synopsis-content::-webkit-scrollbar {
        width: 6px;
    }
    
    #list_catalog::-webkit-scrollbar-track,
    .synopsis-content::-webkit-scrollbar-track {
        background: rgba(30, 41, 59, 0.5);
        border-radius: 3px;
    }
    
    #list_catalog::-webkit-scrollbar-thumb,
    .synopsis-content::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, #3b82f6, #1d4ed8);
        border-radius: 3px;
    }
    
    #list_catalog::-webkit-scrollbar-thumb:hover,
    .synopsis-content::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, #2563eb, #1e40af);
    }