/* Episode Detail Page Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 20px 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--gray);
    margin: 0 10px;
}

/* Episode Header */
.episode-header-section {
    background: linear-gradient(135deg, rgba(15, 117, 188, 0.05), rgba(220, 12, 130, 0.05));
    padding: 40px 0;
    border-bottom: 2px solid var(--light-gray);
}

.episode-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.episode-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.episode-badges span {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.episode-number-badge {
    background: var(--yellow);
    color: var(--dark);
}

.episode-date-badge i,
.episode-duration-badge i {
    color: var(--blue);
}

.episode-main-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.episode-guest-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.guest-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-info h3 {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
    font-weight: 500;
}

.guest-name {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 600;
    margin: 0;
}

.guest-title {
    color: var(--blue);
    margin: 0;
}

/* Video Player Section */
.episode-player-section {
    padding: 40px 0;
    background: white;
}

.player-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    height: 500px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Platform Buttons */
.platform-buttons {
    margin-top: 30px;
    text-align: center;
}

.platform-buttons h4 {
    color: var(--dark);
    margin-bottom: 20px;
}

.platforms-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.platform-btn.youtube {
    background: #FF0000;
}

.platform-btn.spotify {
    background: #1DB954;
}

.platform-btn.apple {
    background: #FC3C44;
}

.platform-btn.google {
    background: #4285F4;
}

/* Content Section */
.episode-content-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.main-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.content-block {
    padding: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.content-block:last-child {
    border-bottom: none;
}

.content-block h2 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.episode-description {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Show Notes */
.show-notes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.note-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.note-time {
    background: var(--blue);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.note-text {
    flex: 1;
    color: var(--dark);
}

/* Resources List */
.resources-list {
    list-style: none;
    padding: 0;
}

.resources-list li {
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 10px;
}

.resources-list a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resources-list a:hover {
    color: var(--pink);
}

.resources-list p {
    margin: 10px 0 0 25px;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.linkedin {
    background: #0A66C2;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.copy {
    background: var(--gray);
}

/* Episode Navigation */
.episode-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.nav-prev,
.nav-next {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-prev:hover,
.nav-next:hover {
    border-color: var(--blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-prev span,
.nav-next span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
}

.nav-prev strong,
.nav-next strong {
    display: block;
    color: var(--dark);
    margin-top: 5px;
}

.nav-next {
    text-align: right;
}

/* Sidebar */
.episode-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.stat-item i {
    color: var(--blue);
    width: 20px;
}

/* Subscribe Widget */
.subscribe-widget {
    background: linear-gradient(135deg, var(--blue), var(--pink));
    color: white;
}

.subscribe-widget h3 {
    color: white;
}

.subscribe-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.sidebar-newsletter input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn-block {
    width: 100%;
}

/* Support Widget */
.support-widget {
    text-align: center;
}

.btn-gradient {
    background: var(--gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Related Episodes */
.related-episodes {
    padding: 60px 0;
    background: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .episode-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .episode-main-title {
        font-size: 1.8rem;
    }
    
    .episode-navigation {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        flex-direction: column;
    }
    
    .platform-btn {
        justify-content: center;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}