
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181a20;
  margin: 0;
  padding: 0;
  color: #eee;
}
header, footer {
  background: #121417;
  color: #fff;
  padding: 24px 0 18px 0;
  text-align: center;
  border-bottom: 2px solid #ff5500;
}
footer {
  border-top: 2px solid #ff5500;
  border-bottom: none;
}
nav a {
  color: #ff5500;
  margin: 0 18px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15em;
  letter-spacing: 1px;
  transition: color 0.2s;
}
nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.logo {
  max-height: 120px;
  margin-bottom: 10px;
}
.container {
  max-width: 800px;
  margin: 32px auto;
  background: #23252b;
  border-radius: 14px;
  box-shadow: 0 4px 32px #0003;
  padding: 32px;
}
h1, h2 {
  color: #ff5500;
  margin-top: 0;
}
.episode {
  margin-bottom: 32px;
  border-bottom: 1px solid #444;
  padding-bottom: 24px;
}
.episode:last-child {
  border-bottom: none;
}
ul {
  padding-left: 18px;
}
.footer-social {
  margin-bottom: 4px;
}
.footer-social .socicon {
  height: 34px;
  width: 34px;
  margin: 0 6px;
  border-radius: 7px;
  background: #fff;
  vertical-align: middle;
  object-fit: contain;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 6px #0002;
}
.footer-social .socicon:hover {
  box-shadow: 0 2px 12px #ff5500a0;
}
@media (max-width: 700px) {
  .container {
    padding: 8px;
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
  }
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
  }
  nav a {
    margin: 0 6px;
    font-size: 1em;
    display: inline-block;
  }
  .logo {
    max-height: 70px;
    width: 95vw;
    object-fit: contain;
  }
  .hosts, .sponsors-list {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .host, .sponsor-card {
    max-width: 95vw;
    min-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 2vw;
  }
  .host img, .sponsor-card img {
    width: 96px;
    height: 96px;
  }
  .footer-social .socicon {
    height: 28px;
    width: 28px;
  }
}
.center-me {
  text-align: center;
}
