body {
  background-color: black;
  /* background-color: #f9fafb; */

  color: white;
  font-family: "Assistant", sans-serif;

  display: flex;
  align-items: start;
  justify-content: center;
}

.hidden {
  display: none;
}

#main-container {
  max-width: 450px;
  text-align: center;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo-wrapper {
  padding: 0.5rem;
}

#episode-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
}

#episode-logo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

#title {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  text-align: center;
  color: white;
}

.subtitle-class {
  font-weight: 400;
  font-size: 1.05rem;
  text-align: center;
  color: white;
}

.services-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-button {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  height: 64px;
  max-width: 270px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.service-button:hover {
  background-color: #f3f4f6;
}

.service-logo {
  width: auto;
  height: calc(100% - 12px);
  object-fit: contain;
  border-radius: 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#loader svg {
  animation: spin 1s linear infinite;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track > div {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
  font-size: 2rem;
  color: white;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2rem;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}
