/* Podcast Player Styles */
* {
    box-sizing: border-box;
}

#podcast-player-container {
    max-width: 900px;
    margin: 40px auto;
    pointer-events: none;
}

#podcast-player-container h1 {
    color: #ff4444;
    margin-bottom: 10px;
    font-size: 2em;
}

#podcast-player-container .description {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #888;
}

.episode {
    background: #252525;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #ff4444;
    transition: transform 0.2s;
    pointer-events: auto;
}

.episode:hover {
    transform: translateX(5px);
}

.episode-title {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.episode-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.9em;
    color: #888;
}

.episode-description {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95em;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    padding: 12px;
    border-radius: 6px;
}

.play-btn {
    background: #ff4444;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    flex-shrink: 0;
    transition: background 0.2s;
}

.play-btn:hover {
    background: #cc0000;
}

.play-btn:disabled {
    background: #666;
    cursor: not-allowed;
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
    color: #888;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #333;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #ff4444;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.episode audio {
    display: none;
}

.error-message {
    color: #ff4444;
    padding: 20px;
    text-align: center;
    background: #2a1a1a;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 600px) {
    #podcast-player-container h1 {
        font-size: 1.5em;
    }
    
    .episode {
        padding: 15px;
    }
    
    .episode-meta {
        flex-direction: column;
        gap: 5px;
    }
}