/**
 * Podcast Detay Sayfası CSS
 */

/* Hero Section */
.podcast-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(45, 55, 72, 0.95) 50%, rgba(26, 32, 44, 0.92) 100%),
                url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=1920&h=600&fit=crop') center/cover no-repeat;
    padding: 20px 0;
    text-align: center;
    overflow: hidden;
}

.podcast-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/podcast-pattern.svg') repeat;
    opacity: 0.03;
}

.podcast-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 40%);
}

.podcast-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.podcast-hero .hero-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.podcast-hero .hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px!important;
    line-height: 1.3!important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.podcast-hero .hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.podcast-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.podcast-hero .meta-item i {
    color: #6366f1;
}

/* Main Section */
.podcast-detail-section {
    padding: 60px 0;
    background: #f8fafc;
}

.podcast-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
}

/* Player Card */
.player-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 280px 1fr;
}

.player-image {
    position: relative;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.player-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 80px;
}

.player-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.player-info {
    margin-bottom: 24px;
}

.player-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.player-speaker {
    font-size: 16px;
    color: #475569;
}

.player-speaker span {
    color: #94a3b8;
}

/* Audio Player */
.audio-player {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    border-radius: 16px;
}

.play-pause-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.5);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-current,
.time-total {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: monospace;
    min-width: 45px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
    width: 0%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.volume-btn:hover {
    color: #fff;
}

.volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.speed-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.speed-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.no-audio {
    text-align: center;
    padding: 40px;
    background: #f8fafc;
    border-radius: 12px;
}

.no-audio i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.no-audio p {
    color: #64748b;
}

/* Platform Links */
.platform-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.platform-label {
    font-size: 14px;
    color: #64748b;
    margin-right: 8px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    opacity: 0.9;
}

.platform-btn.spotify {
    background: #1DB954;
}

.platform-btn.apple {
    background: linear-gradient(135deg, #fc3c44 0%, #8c4191 100%);
}

.platform-btn.youtube {
    background: #FF0000;
}

/* Description Card */
.description-card,
.tags-card,
.share-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.description-card h3,
.tags-card h3,
.share-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px!important;
}

.description-content {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

/* Tags */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    border-radius: 20px;
    color: #475569;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #e2e8f0;
}

/* Share */
.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy { background: #6366f1; }

/* Sidebar */
.podcast-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px!important;
}

/* Speaker Card */
.speaker-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.speaker-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.speaker-details p {
    font-size: 14px;
    color: #64748b;
}

/* Other Podcasts */
.other-podcasts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.other-podcast-item {
    display: flex;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.other-podcast-item:hover {
    background: #f8fafc;
}

.other-podcast-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.other-podcast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-podcast-image i {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

.other-podcast-image .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.other-podcast-item:hover .play-icon {
    opacity: 1;
}

.other-podcast-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px!important;
    line-height: 1.4!important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.other-podcast-info p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.other-podcast-info .duration {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.all-podcasts-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #f8fafc;
    color: #6366f1;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.all-podcasts-btn:hover {
    background: #f1f5f9;
}

/* Responsive */
@media (max-width: 1200px) {
    .podcast-layout {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
    
    .player-card {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 992px) {
    .podcast-layout {
        grid-template-columns: 1fr;
    }
    
    .podcast-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .player-card {
        grid-template-columns: 200px 1fr;
    }
    
    .podcast-hero .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .player-card {
        grid-template-columns: 1fr;
    }
    
    .player-image img,
    .player-image-placeholder {
        min-height: 200px;
    }
    
    .player-controls {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .progress-container {
        order: 1;
        width: 100%;
    }
    
    .volume-container {
        display: none;
    }
    
    .podcast-sidebar {
        grid-template-columns: 1fr;
    }
    
    .podcast-hero {
        padding: 60px 0;
    }
    
    .podcast-hero .hero-title {
        font-size: 28px;
    }
    
    .podcast-hero .hero-meta {
        gap: 16px;
    }
    
    .platform-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .platform-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .podcast-hero .hero-title {
        font-size: 24px;
    }
    
    .podcast-hero .hero-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

