/* Shared styles for all Casey Kasem episode pages */
.episode-header {
    background-color: var(--card-header-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    position: relative;
}

.episode-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.episode-date {
    font-size: 1.1em;
    color: #9e9e9e;
    margin-bottom: 15px;
    font-style: italic;
}

.stream-links {
    margin: 20px 0;
}

.stream-link {
    display: inline-block;
    background-color: #333;
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95em;
    transition: background-color 0.2s;
    margin-right: 10px;
    margin-bottom: 10px;
}

.stream-link:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
    color: white;
}

.song-list {
    margin-top: 25px;
    background-color: var(--card-header-bg);
    border-radius: 8px;
    overflow: hidden;
}

.song {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #333;
    transition: background-color 0.2s;
}

.song:last-child {
    border-bottom: none;
}

.song:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.position {
    font-weight: bold;
    color: var(--secondary-color);
    min-width: 30px;
}

.song-info {
    flex-grow: 1;
    padding: 0 15px;
}

.artist {
    font-size: 0.9em;
    color: #bbb;
    margin-top: 3px;
}

/* Special badges */
.millennium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffd700;
    color: #000;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .episode-title {
        font-size: 1.5em;
    }
    
    .song {
        flex-direction: column;
        padding: 15px;
    }
    
    .position {
        margin-bottom: 5px;
    }
    
    .song-info {
        padding: 0;
    }
}
