* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; background: #fafafa; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.site-header { background: #111; color: white; padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 1rem; }
.site-title { color: white; text-decoration: none; font-size: 1.5rem; font-weight: 700; }
.site-subtitle { margin: 0; font-size: 0.9rem; opacity: 0.9; }
.nav { display: flex; gap: 2rem; }
.nav a { color: white; text-decoration: none; font-weight: 600; }
.hero { padding: 4rem 0; background: linear-gradient(135deg, #111 0%, #333 100%); color: white; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero h1 { font-size: 3rem; font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
.tagline { font-size: 1.3rem; font-style: italic; margin-bottom: 2rem; opacity: 0.95; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-block; }
.btn.primary { background: #ff6b35; color: white; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.hero-card img { max-width: 100%; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.latest, .episodes, .about, .subscribe, .contact { padding: 4rem 0; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; color: #111; }
.player-wrap { max-width: 600px; margin: 0 auto; }
.episode-list { list-style: none; display: grid; gap: 2rem; }
.episode h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: #111; }
.meta { color: #666; font-size: 0.9rem; margin-bottom: 1rem; }
.episode-actions { display: flex; gap: 1rem; margin-top: 1rem; }
.btn.sm { padding: 0.5rem 1.5rem; font-size: 0.9rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.bullets { list-style: none; margin-top: 2rem; }
.bullets li { padding: 0.75rem 0; border-bottom: 1px solid #eee; }
.subscribe, .contact { background: #f8f9fa; text-align: center; }
.site-footer { background: #111; color: white; text-align: center; padding: 2rem 0; }
@media (max-width: 768px) { .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; } .nav { gap: 1rem; } .btn { width: 100%; text-align: center; } .about-grid { grid-template-columns: 1fr; } }
