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

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

.mirror-frame {
  width: 90vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(145deg, #777, #222);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  position: relative;
}

.mirror {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: black;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.02) 40%,
    rgba(255, 255, 255, 0.08)
  );
  pointer-events: none;
}

.label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}
