.carousel-footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.5rem;
}

.platform-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  background: rgba(10, 10, 10, 0.35);
}

.platform-toggle-button {
  border: 0;
  border-radius: 9999px;
  padding: 0.35rem 0.7rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.platform-toggle-button:hover {
  color: #ffffff;
}

.platform-toggle-button.is-active {
  background: var(--accent);
  color: #ffffff;
}

.carousel-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(175, 82, 222, 0.5) rgba(0, 0, 0, 0.2);
  scroll-snap-type: x mandatory;
}
.carousel-container::-webkit-scrollbar {
  height: 8px;
}
.carousel-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.carousel-container::-webkit-scrollbar-thumb {
  background: rgba(175, 82, 222, 0.5);
  border-radius: 4px;
}
.carousel-container::-webkit-scrollbar-thumb:hover {
  background: rgba(175, 82, 222, 0.8);
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
}
.carousel-slide {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
}
.carousel-slide img {
  width: 100%;
  height: auto;
}
