        /* Specific page enhancements for lists */
        body {
            overflow-y: auto !important; /* Allow natural scrolling */
            padding-bottom: 60px;
        }
        
        .lists-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1.25rem;
        }

        .btn-back-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-back-home:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            color: var(--text-primary);
            transform: translateX(-3px);
        }

        .lists-title-area {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .lists-main-title {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #c084fc 0%, #6366f1 50%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lists-subtitle {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Tabs and Curation controls */
        .lists-controls-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .curation-tabs {
            display: flex;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 4px;
            gap: 4px;
        }

        .curation-tab-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            padding: 8px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .curation-tab-btn.active {
            background: rgba(168, 85, 247, 0.15);
            border: 1px solid rgba(168, 85, 247, 0.25);
            color: #c084fc;
        }

        .curation-tab-btn:hover:not(.active) {
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-primary);
        }

        .curation-search {
            position: relative;
            width: 320px;
            max-width: 100%;
        }

        .curation-search input {
            width: 100%;
            padding: 10px 16px 10px 38px;
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 0.85rem;
            outline: none;
            transition: all 0.2s ease;
        }

        .curation-search input:focus {
            border-color: rgba(168, 85, 247, 0.4);
            box-shadow: 0 0 10px rgba(168, 85, 247, 0.15);
            background: rgba(0, 0, 0, 0.3);
        }

        .curation-search-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
        }

        /* Curated Grid & Cards */
        .curated-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        .curated-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .curated-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            background: var(--card-hover-bg);
        }

        /* Section themes custom glows on card hover */
        .curated-card.theme-vip:hover {
            border-color: var(--vip-card-border);
            box-shadow: 0 8px 30px var(--vip-glow);
        }
        .curated-card.theme-premium:hover {
            border-color: var(--premium-card-border);
            box-shadow: 0 8px 30px var(--premium-glow);
        }
        .curated-card.theme-god:hover {
            border-color: var(--god-card-border);
            box-shadow: 0 8px 30px var(--god-glow);
        }

        /* Rank Badge */
        .rank-badge {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 800;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-secondary);
            flex-shrink: 0;
            font-family: 'Outfit', sans-serif;
        }

        .rank-1 .rank-badge {
            background: linear-gradient(135deg, #f59e0b 0%, #ca8a04 100%);
            border: 1px solid rgba(245, 158, 11, 0.4);
            color: #000;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
        }

        .rank-2 .rank-badge {
            background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
            border: 1px solid rgba(203, 213, 225, 0.4);
            color: #000;
            box-shadow: 0 4px 15px rgba(203, 213, 225, 0.2);
        }

        .rank-3 .rank-badge {
            background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
            border: 1px solid rgba(180, 83, 9 0.4);
            color: #fff;
            box-shadow: 0 4px 15px rgba(180, 83, 9, 0.2);
        }

        .card-main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: left;
        }

        .card-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 8px;
            padding-right: 95px;
        }

        .card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .card-meta-row {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .meta-item {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .meta-item svg {
            color: var(--text-muted);
        }

        .show-tag-badge {
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .show-tag-badge.badge-vip {
            background: rgba(234, 179, 8, 0.1);
            border: 1px solid rgba(234, 179, 8, 0.25);
            color: var(--vip-color);
        }
        .show-tag-badge.badge-premium {
            background: rgba(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.25);
            color: var(--premium-color);
        }
        .show-tag-badge.badge-god {
            background: rgba(244, 63, 94, 0.1);
            border: 1px solid rgba(244, 63, 94, 0.25);
            color: var(--god-color);
        }

        /* Card Left Column (Rank and Duration) */
        .card-left-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
            min-width: 60px;
        }

        /* Duration Badge: High-tech orange geometric absolute-positioned top-right tag */
        .duration-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.16) 0%, rgba(234, 88, 12, 0.26) 100%);
            border: 1.5px solid #ea580c;
            border-top: none;
            border-right: none;
            border-bottom-left-radius: 16px;
            padding: 8px 18px 10px 18px;
            font-size: 0.92rem;
            font-weight: 850;
            color: #ff9f68;
            text-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
            box-shadow: -4px 4px 15px rgba(234, 88, 12, 0.15);
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: 'Outfit', sans-serif;
            z-index: 10;
        }

        .card-summary {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* AI Reasoning Bubble */
        .ai-reasoning-bubble {
            background: rgba(168, 85, 247, 0.04);
            border: 1px dashed rgba(168, 85, 247, 0.2);
            border-radius: 10px;
            padding: 8px 12px;
            font-size: 0.8rem;
            color: #d8b4fe;
            line-height: 1.45;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 4px;
        }

        .ai-reasoning-bubble strong {
            color: #c084fc;
            font-weight: 600;
        }

        /* Action Column */
        .card-actions {
            display: flex;
            align-items: center;
            align-self: center;
            flex-shrink: 0;
            gap: 10px;
        }

        .btn-play-curated {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(168, 85, 247, 0.12);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 50%;
            color: #c084fc;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
        }

        .btn-play-curated:hover {
            background: #a855f7;
            border-color: #a855f7;
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
        }

        .btn-play-show {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-play-show:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
        }

        /* Empty State styles */
        .empty-curation {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--panel-bg);
            border: 1px dashed var(--border-color);
            border-radius: 16px;
            color: var(--text-secondary);
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        /* Laptop & Macbook Scale Corrections (1025px - 1440px) */
        @media (min-width: 1025px) and (max-width: 1440px) {
            body {
                padding-bottom: 40px;
            }
            .container {
                padding: 1.25rem 1.5rem !important;
            }
            .lists-header {
                margin-bottom: 1.5rem;
                padding-bottom: 1rem;
            }
            .lists-main-title {
                font-size: 1.65rem;
            }
            .lists-controls-row {
                margin-bottom: 1.5rem;
                gap: 1rem;
            }
            .curated-card {
                padding: 1.2rem;
                gap: 1rem;
            }
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .lists-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .btn-back-home {
                width: 100%;
                justify-content: center;
            }

            .lists-controls-row {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }

            .curation-search {
                width: 100%;
            }

            .curated-card {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                padding: 1.2rem;
            }

            .card-left-column {
                flex-direction: row;
                align-items: center;
                gap: 0.75rem;
                width: 100%;
            }

            .rank-badge {
                align-self: flex-start;
            }

            .card-actions {
                flex-direction: column;
                width: 100%;
                gap: 8px;
            }

            .btn-play-curated {
                width: 100%;
                border-radius: 10px;
                height: 40px;
                gap: 8px;
            }
            
            .btn-play-curated::after {
                content: "Play Prank Call";
                font-size: 0.85rem;
                font-weight: 700;
            }

            .btn-play-show {
                width: 100%;
                border-radius: 10px;
                height: 40px;
                gap: 8px;
            }
            
            .btn-play-show::after {
                content: "Play Full Show";
                font-size: 0.85rem;
                font-weight: 700;
            }
        }

        /* Active playing curated card visual highlight glow */
        .curated-card.playing-active {
            border-color: var(--premium-color);
            background: rgba(168, 85, 247, 0.06) !important;
            box-shadow: 0 8px 32px rgba(168, 85, 247, 0.2) !important;
        }
        .curated-card.playing-active.theme-vip {
            border-color: var(--vip-color);
            background: rgba(59, 130, 246, 0.06) !important;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2) !important;
        }
        .curated-card.playing-active.theme-god {
            border-color: var(--god-color);
            background: rgba(244, 63, 94, 0.06) !important;
            box-shadow: 0 8px 32px rgba(244, 63, 94, 0.2) !important;
        }

        /* Inactive call cards pointer disabling & visual gray-out in lists page sidebar */
        #transcript-sidebar .prank-call {
            cursor: default;
            transition: all 0.2s ease;
        }
        #transcript-sidebar .prank-call:not(.active-call) {
            pointer-events: none !important;
            opacity: 0.55;
            background: rgba(255, 255, 255, 0.01) !important;
            border-color: rgba(255, 255, 255, 0.03) !important;
        }
        #transcript-sidebar .prank-call.active-call {
            pointer-events: auto !important;
            opacity: 1 !important;
        }
