/* Fullscreen Ken Burns Slideshow and Audio Player Styles */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #111;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-y: auto;
}

#slideshow-container {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  background: #111;
}

#slideshow-image {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  z-index: 2;
  transition: opacity 1s;
  opacity: 1;
  pointer-events: none;
}

#ken-burns-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 3;
  pointer-events: none;
}

#audio-player {
  display: none;
}

#controls {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 1rem;
}

#controls button {
  background: rgba(30,30,30,0.6);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
}

#controls button:hover {
  background: #ff5e57;
}

#controls button {
  background: rgba(30,30,30,0.8);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

#controls button:hover {
  background: #ff5e57;
}