@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Serif+Text:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');

body {
  margin: 0;
  padding: 0 10px;
  font-family: "Arial", sans-serif;
  background-color: #0033ff;
  color: #0033ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  margin: 0;
  position: relative;
  width: 500px;
  height: 500px;
}

.logo {
  width: 100%;
  height: 100%;
}

.episodes-grid {
  display: grid;
  grid-template-columns: minmax(0, 600px);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 0;
  justify-content: center;
}

.episode-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.episode-title {
  font-weight: bold;
  margin: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-family: "DM Serif Display", serif;
}

.episode-description {
  margin-bottom: 15px;
  font-size: 18px;
  text-align: justify;
}

.listen-button {
  background-color: #0033ff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 18px;
  -webkit-column-gap: 4px;
  column-gap: 4px;
}

.listen-button:hover {
  background-color: black;
}

.icon-volume {
  width: 20px;
  height: 20px;
}

.podcast-platforms {
  text-align: center;
  margin: 50px 0;
  color: white;
  font-family: "DM Serif Display", "Noto Serif TC", serif;
}

.podcast-platforms h2 {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.platform-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.platform-link span {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .platform-links {
    gap: 12px;
  }

  .platform-link {
    padding: 10px 20px;
  }

  .platform-link span {
    font-size: 16px;
  }

  .logo-container {
    width: 80%;
    height: 80%;
  }
}

.purple-1 {
  animation: .9s move-1 ease-out infinite;
  transform-origin: 50% 50%;
}

.purple-2 {
  animation: 1s move-2 ease-in infinite;
  transform-origin: 50% 50%;
}

.purple-3 {
  animation: 1.2s move-3 ease-out infinite;
  transform-origin: 50% 50%;
}

.purple-4 {
  animation: .8s move-4 ease-in infinite;
  transform-origin: 50% 50%;
}

@keyframes move-1 {
  0%, 100% {
    transform: translate(0px, 0px) scale(1, 1);
  }
  50% {
    transform: translate(2px, 3px) scale(1.02, 1.08);
  }
}

@keyframes move-2 {
  0%, 100% {
    transform: translate(0px, 0px) scale(1, 1);
  }
  50% {
    transform: translate(0px, 2px) scale(0.98, 1.03);
  }
}

@keyframes move-3 {
  0%, 100% {
    transform: translate(1px, -4px) scale(1, 1) rotatez(5deg);
  }
  50% {
    transform: translate(-3px, -4px) scale(1.06, 1) rotatez(4deg);
  }
}

@keyframes move-4 {
  0%, 100% {
    transform: translate(0px, 0px) scale(1, 1);
  }
  50% {
    transform: translate(0px, 0px) scale(1, 1.06);
  }
}

.audio-player {
  width: 100%;
  margin: 15px 0 0;
  border-radius: 4px;
  background-color: #f5f5f5;
}

.audio-player::-webkit-media-controls-panel {
  background-color: #f5f5f5;
  border-radius: 4px;
}

.audio-player::-webkit-media-controls-play-button {
  background-color: #0033ff;
  border-radius: 50%;
}

.audio-player::-webkit-media-controls-play-button:hover {
  background-color: black;
}

.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
  color: #0033ff;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
  color: white;
  font-family: "Noto Serif TC", serif;
}

.copyright {
  font-size: 14px;
  opacity: 0.8;
}