body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
}
header {
  background: #222;
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
}
header img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
h1 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 2.2rem;
  font-weight: 700;
}
h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0.5rem 0 1.5rem 0;
  color: #ff9800;
}
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
nav a {
  color: #ff9800;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
nav a:hover {
  color: #222;
  background: #ff9800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.section {
  max-width: 700px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2rem;
}
.podcast-list, .classic-list {
  list-style: none;
  padding: 0;
}
.podcast-list li, .classic-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.podcast-list a, .classic-list a {
  color: #1976d2;
  text-decoration: none;
  margin-right: 1rem;
}
.podcast-list a:hover, .classic-list a:hover {
  text-decoration: underline;
}
.discord {
  text-align: center;
  margin: 2rem 0;
}
.discord a {
  background: #5865F2;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.discord a:hover {
  background: #404eed;
}
footer {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin: 2rem 0 1rem 0;
}
