:root {
    --abu-pd-primary-purple: #8B5CF6;
    --abu-pd-secondary-purple: #A855F7;
    --abu-pd-accent-gold: #F59E0B;
    --abu-pd-accent-pink: #EC4899;
    --abu-pd-text-light: #F8FAFC;
    --abu-pd-text-dark: #1E293B;
}

.podcast-banner-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.podcast-banner-section {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.podcast-banner {
    background: linear-gradient(135deg, var(--abu-pd-primary-purple) 0%, var(--abu-pd-secondary-purple) 50%, #C084FC 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    max-width: 900px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.podcast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.podcast-number {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--abu-pd-text-light);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spotify-icon {
    width: 24px;
    height: 24px;
    background: #1DB954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.guest-info {
    position: relative;
}

.guest-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.guest-image:hover {
    transform: scale(1.05);
}

.guest-name {
    background: linear-gradient(135deg, var(--abu-pd-accent-gold) 0%, #FBBF24 100%);
    color: var(--abu-pd-text-dark);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.episode-title {
    background: linear-gradient(135deg, var(--abu-pd-accent-pink) 0%, #F472B6 100%);
    color: var(--abu-pd-text-light);
    padding: 20px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.microphone-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.microphone-icon {
    font-size: 120px;
    color: var(--abu-pd-accent-gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(245, 158, 11, 0.3));
    animation: float 3s ease-in-out infinite;
    padding-bottom: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.cta-button {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white !important;
    padding: 16px 32px !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: white;
}

.podcast-banner .brand-logo img {
    height: 30px;
    width: auto;
}

.brand-logo {
    position: absolute;
    bottom: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 12px;
    color: var(--abu-pd-text-light);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decorative-elements::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content {
        padding: 30px 20px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .guest-name {
        font-size: 20px;
    }

    .episode-title {
        font-size: 22px;
    }

    .microphone-icon {
        font-size: 80px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .podcast-banner {
        border-radius: 16px;
    }

    .banner-content {
        padding: 20px 15px;
    }

    .guest-name {
        font-size: 18px;
        padding: 10px 20px;
    }

    .episode-title {
        font-size: 18px;
        padding: 16px 20px;
    }

    .microphone-icon {
        font-size: 60px;
    }
}

