body {
  margin: 0;
  background: #000;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: sans-serif;
}

.top-left-text {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-family: Georgia, 'Times New Roman', serif;
  text-align: left;
  z-index: 5;
}

.top-left-text h1 {
  margin: 0;
  font-size: 2em;
}

.top-left-text p {
  margin: 0.2em 0;
  font-size: 1em;
}

.bottom-left-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-family: Georgia, 'Times New Roman', serif;
  text-align: left;
  z-index: 5;
}

.bottom-left-text h2 {
  margin: 0;
  font-size: 1.5em;
}

.bottom-left-text p {
  margin: 0.2em 0;
  font-size: 1em;
}

.camera {
  position: relative;
  width: auto;
  max-width: 90vw;
  transform: scale(1);
}

.camera > img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.lcd {
  position: absolute;
  top: 49.5%;
  left: 14.2%;
  width: 43.4%;
  height: 40%;
  overflow: hidden;
  background: black;
  border-radius: 6px;
  z-index: 3;
}

.lcd img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 28px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 4;
  touch-action: manipulation;
}

.prev { left: 6px; touch-action: manipulation; }
.next { right: 6px; touch-action: manipulation; }

.nav:hover {
  background: rgba(255,255,255,0.2);
}

.viewfinder {
  position: absolute;
  top: 24.7%;
  right: 53%;
  width: 12%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  pointer-events: none;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}

.viewfinder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: blur(4px);
}

.fade {
  transition: opacity 0.25s ease;
}
