        body {
            background-color: #0f0f23;
            color: #e0e0e0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Navbar Styles */
        .list-index-navbar-custom {
            background: linear-gradient(135deg, #1a1a3e, #2d2d5f);
            padding: 10px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .list-index-navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: #6366f1 !important;
        }

        .list-index-nav-link {
            color: #e0e0e0 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .list-index-nav-link:hover {
            color: #a0a0ff !important;
        }

        .list-index-search-bar {
            position: relative;
            width: 250px;
        }

        .list-index-search-bar input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            color: #e0e0e0;
            padding: 6px 40px 6px 15px;
            width: 100%;
            font-size: 0.9rem;
        }

        .list-index-search-bar input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: #6366f1;
            box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
        }

        .list-index-search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #a0a0ff;
        }

        /* Page Header */
        .list-index-page-header {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px 0;
        }

        .list-index-page-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .list-index-page-subtitle {
            font-size: 1rem;
            color: #a0a0ff;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Filter Section */
        .list-index-filter-section {
            background: linear-gradient(135deg, #1a1a3e, #2d2d5f);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 25px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .list-index-filter-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #a0a0ff;
            margin-bottom: 10px;
        }

        .list-index-filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .list-index-filter-tag {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.8rem;
            color: #e0e0e0;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .list-index-filter-tag:hover {
            background: rgba(99, 102, 241, 0.3);
            border-color: #6366f1;
        }

        .list-index-filter-tag.active {
            background: #6366f1;
            color: white;
            border-color: #6366f1;
        }

        /* List Cards */
        .list-index-list-card {
            background: linear-gradient(145deg, #1e1e3f, #2a2a4e);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .list-index-list-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
            color: inherit;
            text-decoration: none;
        }

        .list-index-list-card:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5);
        }

        .list-index-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .list-index-list-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
        }

        .list-index-list-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #a0a0ff;
            font-size: 0.8rem;
        }

        .list-index-list-meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .list-index-list-hint {
            background: rgba(99, 102, 241, 0.2);
            border-left: 3px solid #6366f1;
            padding: 10px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 12px;
            font-size: 0.85rem;
            color: #d0d0ff;
            line-height: 1.4;
        }

        .list-index-list-movies {
            position: relative;
        }

        .list-index-movies-scroll {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding: 5px 0;
            scrollbar-width: thin;
            scrollbar-color: #6366f1 #1e1e3f;
        }

        .list-index-movies-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .list-index-movies-scroll::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .list-index-movies-scroll::-webkit-scrollbar-thumb {
            background: #6366f1;
            border-radius: 3px;
        }

        .list-index-mini-movie {
            flex-shrink: 0;
            width: 90px;
            text-align: center;
            transition: transform 0.2s ease;
        }

        .list-index-mini-movie:hover {
            transform: scale(1.05);
        }

        .list-index-mini-poster {
            width: 90px;
            height: 135px;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            margin-bottom: 6px;
            position: relative;
        }

        .list-index-mini-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .list-index-mini-rating {
            position: absolute;
            top: 4px;
            right: 4px;
            background: rgba(0, 0, 0, 0.7);
            color: #ffd700;
            padding: 1px 4px;
            border-radius: 3px;
            font-size: 0.65rem;
            font-weight: bold;
        }

        .list-index-mini-title {
            font-size: 0.75rem;
            font-weight: 600;
            color: #e0e0e0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            height: 2.2em;
            line-height: 1.1;
        }

        .list-index-mini-year {
            font-size: 0.7rem;
            color: #a0a0ff;
        }