* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: Tahoma, Arial, sans-serif;
}

body {
  display: grid;
  place-items: center;
}

.screen {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  display: grid;
  place-items: center;
  background: #000;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.hud {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.title {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  letter-spacing: .24em;
  direction: ltr;
  text-shadow: 0 0 8px rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 14px;
}

.dots {
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  box-shadow: 0 0 10px rgba(255,255,255,.08);
}

.dot.active {
  background: #ff2446;
  box-shadow: 0 0 12px rgba(255,36,70,.9);
}
