/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 48px;
}

.title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1976D2;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    margin-bottom: 48px;
}

h2 {
    font-size: 1.5rem;
    color: #1976D2;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 2px solid #1976D2;
    padding-bottom: 8px;
}

/* About section */
.about-section p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.links {
    margin-top: 24px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1976D2;
}

.links p {
    margin-bottom: 8px;
}

/* Episodes */
.episode {
    background-color: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.episode:hover {
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.1);
    border-color: #1976D2;
}

.episode-title {
    font-size: 1.2rem;
    color: #1976D2;
    margin-bottom: 8px;
    font-weight: 500;
}

.episode-guest {
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.episode-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.episode-links span {
    color: #666;
}

/* Links */
a {
    color: #1976D2;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1565C0;
    text-decoration: underline;
}

.podcast-link {
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.podcast-link:hover {
    background-color: #f0f7ff;
    text-decoration: none;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e1e5e9;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .episode {
        padding: 20px;
    }
    
    .episode-title {
        font-size: 1.1rem;
    }
    
    .episode-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .links {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 16px 12px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .episode {
        padding: 16px;
    }
    
    .about-section p {
        font-size: 0.95rem;
    }
}