@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.screen {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
}
.screen.active { display: flex; }

.swipe-track {
  display: flex;
  height: 100%;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.swipe-track.dragging { transition: none; }

.swipe-page {
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

video#webcam {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

canvas#three-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

@keyframes recPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.rec-pulse { animation: recPulse 1s ease-in-out infinite; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.dot-active {
  width: 24px !important;
  border-radius: 4px !important;
}
