html {
  --teal: #75bdc6;
  --red: #c67575;
  --beige: #f0ebdc;
}

p {
  font-size: 14px;
}

/* Slideshow */
#slideshow {
  position: relative;
  overflow: hidden;
}

#slideshow-track {
  display: flex;
  transition: transform 0.35s ease, height 0.35s ease;
  align-items: flex-start;
}

.game-list-item {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  flex-shrink: 0;
}

.game-title {
  display: block;
  width: 100%;
  padding-bottom: 12px;
  font-weight: bold;
}

img {
  max-width: 100%;
}

.game-slide {
  padding: 5px 0;
  display: block;
  max-height: 60vh;
  width: auto;
  object-fit: contain;
}

#slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 0 4px;
}

#slideshow-controls button {
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slideshow-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

#slideshow-controls button:not(:disabled):hover {
  background: var(--red);
}

#slide-counter {
  font-size: 14px;
  min-width: 60px;
  text-align: center;
}

.pdf-embed {
  width: 100%;
  max-width: 100%;
}
