body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

h1 {
  color: #4fc3f7;
  margin-bottom: 30px;
}

.video-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.video-wrapper {
  flex: 1;
  max-width: 48%;
}

video, canvas {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  background: black;
  border: 2px solid #4fc3f7;
}

video {
  transform: scaleX(-1); /* Mirror camera */
}

.typed-text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #4fc3f7;
}

.footer-note {
  margin-top: 30px;
}

.footer-note button {
  padding: 10px 20px;
  background: #4fc3f7;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: black;
  font-weight: bold;
}

.footer-message {
  margin-top: 10px;
  font-style: italic;
  display: none;
  color: #81d4fa;
}
