/* Auto-extracted from single-podcast.php */

/* --- 1. BASIC SETUP --- */
    .podcast-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        background: linear-gradient(135deg, #4c1d95 0%, #831843 50%, #7f1d1d 100%);
        color: white;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        overflow-x: hidden;
        position: relative;
        padding-bottom: 4rem; /* Platz für Footer */
    }

    /* --- 2. ANIMATED BACKGROUND --- */
    .bg-element {
        position: absolute;
        opacity: 0.15;
        pointer-events: none;
        animation: float 8s ease-in-out infinite;
        z-index: 0;
    }
    .bg-mic { top: 10%; left: 5%; width: 120px; color: #ec4899; }
    .bg-insta { top: 20%; right: 10%; width: 100px; color: #a855f7; animation-delay: 1s; }
    .bg-radio { bottom: 15%; left: 15%; width: 140px; color: #ef4444; animation-delay: 2s; }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

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

    .hero-title {
        font-size: 4rem;
        font-weight: 800;
        margin: 0;
        background: linear-gradient(to right, #f472b6, #c084fc, #f87171);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        color: #fbcfe8;
        margin-top: 1rem;
        margin-bottom: 2rem;
        font-weight: 300;
    }

    /* Follow Buttons */
    .social-row {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 4rem;
        flex-wrap: wrap;
    }

    .social-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        color: white;
        font-weight: bold;
        font-size: 1rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(5px);
    }

    .social-btn:hover {
        transform: translateY(-3px);
        background: rgba(255,255,255,0.25);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        border-color: rgba(255,255,255,0.4);
    }

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

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

    .episode-card:hover {
        border-color: #f472b6;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    /* Header der Karte */
    .card-header {
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .ep-title { font-weight: bold; color: #fff; font-size: 1.1rem; }
    .ep-badge { 
        font-size: 0.75rem; 
        font-weight: 700;
        text-transform: uppercase; 
        background: linear-gradient(45deg, #ec4899, #8b5cf6);
        padding: 4px 10px;
        border-radius: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    /* Video Container */
    .embed-wrapper {
        background: #fff;
        display: flex;
        justify-content: center;
        padding: 0;
        min-height: 500px; /* Platzhalter-Höhe */
    }

    /* Instagram Zwangsstyling */
    .embed-wrapper iframe.instagram-media {
        min-width: unset !important;
        width: 100% !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    /* Beschreibung unter dem Video */
    .card-desc {
        padding: 20px;
        color: #d1d5db;
        font-size: 0.95rem;
        line-height: 1.5;
        background: rgba(0,0,0,0.2);
        flex-grow: 1; 
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* --- 5. FOOTER INFO BOX --- */
    .info-box {
        max-width: 800px;
        margin: 0 auto;
        padding: 3rem 2rem;
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid #f472b6;
        border-radius: 20px;
        text-align: center;
        backdrop-filter: blur(10px);
        box-shadow: 0 0 40px rgba(236, 72, 153, 0.15);
        position: relative;
        z-index: 10;
    }

    .info-box h3 {
        font-size: 2rem;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #fbcfe8;
        font-weight: 800;
    }

    .info-box p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #e5e7eb;
        margin-bottom: 2rem;
    }

    .book-btn {
        display: inline-block;
        padding: 15px 30px;
        background: linear-gradient(45deg, #ec4899, #8b5cf6);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1.1rem;
        box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .book-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6);
        color: white;
    }

    /* --- 6. FLOATING HACK-THE-ALGO WIDGET --- */
    .algo-hack-widget {
        position: fixed;
        right: 20px;
        top: 40%; 
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.85); /* Etwas deckender für Dark Mode Contrast */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 15px 10px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Stärkerer Schatten auf dunklem HG */
        transition: transform 0.3s ease;
    }

    .algo-hack-widget:hover {
        transform: translateY(-50%) scale(1.02);
        background: rgba(255, 255, 255, 0.95);
    }

    .algo-label-badge {
        background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
        color: white;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        padding: 8px 6px;
        border-radius: 12px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
        animation: pulse-red 2s infinite;
        cursor: default;
        white-space: nowrap;
        min-height: 120px;
        text-align: center;
    }

    .algo-share-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border: 1px solid rgba(0,0,0,0.05);
        color: #333;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        font-size: 1.2rem;
    }

    .algo-share-btn:hover {
        transform: scale(1.2);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Platform spezifische Farben */
    .asb-wa:hover { color: #25D366; border-color: #25D366; }
    .asb-tele:hover { color: #0088cc; border-color: #0088cc; }
    .asb-fb:hover { color: #1877F2; border-color: #1877F2; }
    
    /* Instagram Gradient */
    .asb-insta:hover { 
        color: white; 
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        border-color: transparent;
    }
    
    /* TikTok Schwarz */
    .asb-tiktok:hover {
        color: white;
        background: #000;
        border-color: #000;
    }
    
    .asb-copy:hover { color: #4f46e5; border-color: #4f46e5; }
    
    @keyframes pulse-red {
        0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
        100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
    }

    @media (max-width: 1000px) {
        /* Mobile: Leiste unten fixiert statt rechts */
        .algo-hack-widget {
            top: auto;
            bottom: 20px;
            right: 50%;
            transform: translateX(50%);
            flex-direction: row;
            width: auto;
            max-width: 95%;
            padding: 10px 15px;
            border-radius: 20px;
            min-height: auto;
            flex-wrap: nowrap;
        }

        .algo-hack-widget:hover {
            transform: translateX(50%) scale(1.02);
        }

        .algo-label-badge {
            writing-mode: horizontal-tb;
            transform: none;
            min-height: auto;
            margin-right: 10px;
            padding: 5px 10px;
            font-size: 0.65rem;
        }
    }

    @media (max-width: 480px) {
        .algo-hack-widget {
            padding: 8px 10px;
            gap: 8px;
            bottom: 15px;
        }
        .algo-share-btn {
            width: 36px;
            height: 36px;
            font-size: 1rem;
        }
        .algo-label-badge {
            font-size: 0.6rem;
            padding: 4px 8px;
            white-space: normal;
            text-align: center;
            line-height: 1.1;
            max-width: 80px;
        }
    }

    @media (max-width: 768px) {
        .hero-title { font-size: 2.5rem; }
        .episode-grid { grid-template-columns: 1fr; padding: 0 1rem; }
        .info-box { margin: 0 1rem; }
    }
