body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: env(safe-area-inset-top) 0 0 0;
  background-color: black;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  height: 100vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

.video-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  background-color: black;
}

video {
  height: 100vh;
  width: auto;
  max-width: 100vw;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  background-color: black;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  bottom: 20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  color: white;
  pointer-events: none;
  z-index: 2;
  padding: 0 20px;
}

.video-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.3rem;
}

.video-description-container {
  pointer-events: auto;
}

.video-description {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
}

.toggle-description {
  display: inline-block;
  margin-top: 4px;
  color: #00ccff;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.dots {
  position: fixed;
  top: 5%;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  opacity: 0.4;
  transition: all 0.2s ease;
  cursor: pointer;
}

.dot.active {
  width: 8px;
  height: 8px;
  opacity: 1;
}

.bottom-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 10vh;
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 30;
  border-top: 1px solid #444;
}
