:root {
  --accent: #e63946;
  --cyan: #4fc3d7;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #0a0a0a;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}
#app {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  overflow: hidden;
}
button {
  font-family: inherit;
  cursor: pointer;
}
button:focus {
  outline: 2px solid rgba(255, 255, 255, 0.2);
  outline-offset: 2px;
}
button:focus:not(:focus-visible) {
  outline: none;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}
::-webkit-scrollbar-track {
  background: transparent;
}

@keyframes wrongShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(-6px);
  }
  80% {
    transform: translateX(6px);
  }
}
@keyframes spinBg {
  to {
    transform: rotate(360deg);
  }
}
@keyframes cyanBlast {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}
@keyframes bravoIn {
  0% {
    transform: scale(0.3) rotate(-30deg);
    opacity: 0;
  }
  70% {
    transform: scale(1.15) rotate(-6deg);
  }
  100% {
    transform: scale(1) rotate(-6deg);
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes speedline {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(200%);
    opacity: 0;
  }
}
@keyframes shuffleShake {
  0%,
  100% {
    transform: translate(-2px, 0) scale(1);
  }
  25% {
    transform: translate(2px, -1px) scale(1.02);
  }
  50% {
    transform: translate(-1px, 2px) scale(0.98);
  }
  75% {
    transform: translate(2px, 1px) scale(1.02);
  }
}
@keyframes revealPop {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes halo {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes qmarkBob {
  from {
    transform: rotate(8deg) translateY(0);
  }
  to {
    transform: rotate(-4deg) translateY(-8px);
  }
}
