/* ===== TRAP.COM — Video Loader ===== */

#trap-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

#trap-loader.trap-loader-done {
  opacity: 0;
  pointer-events: none;
}

#trap-loader.trap-loader-gone {
  display: none !important;
}

#trap-loader video {
  width: 280px;
  height: auto;
  display: block;
}

#trap-loader .loader-brand {
  font-family: 'Satoshi', 'Inter', -apple-system, sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: #f5f3ee;
  letter-spacing: -0.8px;
  opacity: 0;
  transform: translateY(8px);
  animation: loader-brand-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

#trap-loader .loader-brand span {
  color: #2f9d6b;
  font-weight: 700;
}

@keyframes loader-brand-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
