/* Reset browser defaults */
html, body {
  margin: 0;
  padding: 0;
  background: black;
  height: 100%;
  overflow: hidden;
  font-family: sans-serif;
}

/* Fullscreen background image */
#background {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Dark overlay for readability */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* Inner padding frame */
#padding {
  position: fixed;
  inset: 0;
  padding: 20px;
  box-sizing: border-box;
  z-index: 3;
}

/* Marquee area */
#marquee {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 180px; /* adjust to taste */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Marquee image/video */
#marquee img,
#marquee video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Metadata row */
#metadata-row {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 120px;
  display: flex;
  gap: 20px;
  z-index: 5;
}

/* Thumbnail */
#thumb {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}

/* Metadata text */
#metadata {
  flex: 1;
  color: white;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
