* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.podcast-artwork {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.description {
    font-size: 1.2em;
    color: #666;
}

.subscribe {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.feed-url {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
}

.rss-button {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.rss-button:hover {
    background: #ff8533;
}

.episodes {
    margin-bottom: 40px;
}

.episode {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.episode h3 {
    margin-bottom: 10px;
}

.episode-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.episode-description {
    margin-bottom: 15px;
}

audio {
    width: 100%;
    margin-top: 10px;
}

.transcript-link {
    margin-top: 10px;
    font-size: 0.9rem;
}

.transcript-link a {
    color: #0066cc;
    text-decoration: none;
}

.transcript-link a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

footer a {
    color: #0066cc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.8em;
    }

    .podcast-artwork {
        width: 150px;
        height: 150px;
    }
}
