
        /* Custom List Back Button */
        .custom-list-back-button {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #e0e0e0;
            padding: 10px 20px;
            margin-bottom: 30px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
        }

        .custom-list-back-button:hover {
            background: rgba(99, 102, 241, 0.3);
            border-color: #6366f1;
            color: white;
            text-decoration: none;
        }

        /* Custom List Header */
        .custom-list-header {
            background: linear-gradient(135deg, #1a1a3e, #2d2d5f);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .custom-list-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .custom-list-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .custom-list-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #a0a0ff;
            font-size: 1.1rem;
        }

        .custom-list-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #d0d0ff;
            margin-bottom: 0;
        }

        /* Custom List Movie Items */
        .custom-list-movie-item {
            background: linear-gradient(145deg, #1e1e3f, #2a2a4e);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .custom-list-movie-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
        }

        .custom-list-movie-poster {
            width: 200px;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            flex-shrink: 0;
        }

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

        .custom-list-movie-content {
            padding-left: 25px;
        }

        .custom-list-movie-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #6366f1;
            color: white;
            border-radius: 50%;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .custom-list-movie-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .custom-list-movie-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 15px;
        }

        .custom-list-movie-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #a0a0ff;
            font-size: 1rem;
        }

        .custom-list-movie-platforms {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .custom-list-platform-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .custom-list-platform-badge-netflix {
            background-color: #e50914;
        }

        .custom-list-platform-badge-disney {
            background-color: #113ccf;
        }

        .custom-list-platform-badge-amazon {
            background-color: #ff9900;
        }

        .custom-list-movie-synopsis {
            font-size: 1rem;
            line-height: 1.6;
            color: #c0c0e0;
            margin-bottom: 0;
        }

        .custom-list-watch-button {
            background: #6366f1;
            border: none;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.2s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
        }

        .custom-list-watch-button:hover {
            background: #5558e3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
        }

        /* Custom List Progress Bar */
        .custom-list-progress-container {
            margin-top: 40px;
            background: linear-gradient(135deg, #1a1a3e, #2d2d5f);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .custom-list-progress-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #a0a0ff;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .custom-list-progress {
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
        }

        .custom-list-progress-bar {
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            border-radius: 15px;
            transition: width 0.3s ease;
        }
