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

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

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.rss-link {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.rss-link:hover {
  background: rgba(255,255,255,0.3);
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  margin-bottom: 1rem;
  color: #333;
}

.episode-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.episode-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.episode-title {
  font-size: 1.25rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.episode-date {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 1rem;
}

.episode-desc {
  color: #555;
  margin-bottom: 1rem;
}

.audio-player {
  width: 100%;
  margin-top: 1rem;
}

audio {
  width: 100%;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #888;
  font-size: 0.875rem;
}

footer a {
  color: #667eea;
  text-decoration: none;
}

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