/* Episodes page */

.ep-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.back-link {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #2c3e50;
}

/* Episode card */
.episode-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    scroll-margin-top: 24px;
}

.ep-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ep-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #a0aec0;
    letter-spacing: 0.08em;
}

.ep-anchor {
    font-size: 0.85rem;
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1;
}

.ep-anchor:hover {
    color: #4a5568;
}

.ep-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ep-desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
    margin-bottom: 18px;
}

.ep-player {
    margin-bottom: 16px;
}

.ep-app-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 24px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ep-app-link:hover {
    background: #1a252f;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .episode-card {
        padding: 20px 16px;
    }
}
