    /* --- 1. BASIC SETUP (Midnight Studio Mode) --- */
    .podcast-bg {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        z-index: -1;
        background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 35%, #831843 70%, #7f1d1d 100%);
    }

    .podcast-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        color: white;
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
        position: relative;
        padding-bottom: 6rem;
    }

    /* --- 2. HERO SECTION --- */
    .hero-container {
        position: relative;
        z-index: 10;
        max-width: 1000px;
        margin: 0 auto;
        padding: 6rem 1.5rem 3rem;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
        font-weight: 800;
        letter-spacing: -2px;
        margin-bottom: 1rem;
        background: linear-gradient(to right, #fff, #f472b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        color: #fbcfe8;
        opacity: 0.9;
        margin-bottom: 2rem;
    }

    /* --- 3. SEASON DIVIDER --- */
    .season-header {
        max-width: 1100px;
        margin: 4rem auto 2rem;
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .season-header-archive {
        margin-top: 6rem;
    }

    .season-header h2 {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
        background: linear-gradient(45deg, #fff, #f472b6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .season-badge {
        background: #ec4899;
        color: white;
        padding: 4px 12px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .season-badge-archive {
        background: #4b5563;
    }

    .season-line {
        height: 1px;
        flex-grow: 1;
        background: linear-gradient(90deg, rgba(244, 114, 182, 0.5), transparent);
    }

    /* --- 4. GRID & CARDS --- */
    .episode-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 1.5rem;
        position: relative;
        z-index: 10;
    }

    .episode-grid-archive {
        opacity: 0.85;
    }

    .episode-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s ease, border-color 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .episode-card:hover {
        transform: translateY(-5px);
        border-color: rgba(244, 114, 182, 0.4);
    }

    .card-header {
        padding: 1.2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(0,0,0,0.2);
    }

    .ep-title { font-weight: 700; font-size: 1rem; color: #fff; }
    .ep-badge { 
        font-size: 0.65rem; 
        background: rgba(255,255,255,0.1); 
        padding: 3px 8px; 
        border-radius: 6px; 
        text-transform: uppercase;
    }

    .embed-wrapper {
        min-height: 400px;
        background: #000;
        display: flex;
        justify-content: center;
    }

    .neelix-instagram-embed {
        background: #fff;
        border: 0;
        border-radius: 3px;
        box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 10px 0 rgba(0, 0, 0, 0.15);
        margin: 1px;
        max-width: 540px;
        min-width: 326px;
        padding: 0;
        width: calc(100% - 2px);
    }

    .card-desc {
        padding: 1.2rem;
        font-size: 0.9rem;
        color: #d1d5db;
        line-height: 1.5;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* --- 5. INFO BOX --- */
    .info-box {
        max-width: 800px;
        margin: 5rem auto 2rem;
        padding: 3rem 1.5rem;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(244, 114, 182, 0.3);
        border-radius: 24px;
        text-align: center;
        position: relative;
        z-index: 10;
    }

    .book-btn {
        display: inline-block;
        margin-top: 1.5rem;
        padding: 1rem 2rem;
        background: linear-gradient(45deg, #ec4899, #8b5cf6);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 700;
        transition: opacity 0.3s;
    }

    .book-btn:hover { opacity: 0.9; color: white; }

    @media (max-width: 768px) {
        .hero-container { padding-top: 4rem; }
        .episode-grid { grid-template-columns: 1fr; }
    }
