body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    color: #222;
}

header {
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
}

#podcast-cover {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

main#episode-list {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    background: #eee;
    margin-top: 2rem;
}

/* Responsive styles */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.3rem;
    }
    main#episode-list {
        padding: 0.5rem;
    }
    #podcast-cover {
        max-width: 95vw;
    }
}
