*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

html {
  width: 100%;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 120, 120, 0.4) transparent;
}

body {
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text);
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  transition: background 0.2s, color 0.2s;
}

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(120, 120, 120, 0.4); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(120, 120, 120, 0.65); }

h1 {
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--header-color);
  font-size: clamp(1.7rem, 7vw, 3rem);
  margin-bottom: 20px;
}

.hidden {
  display: none !important;
}

#confetti-canvas {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10001;
  display: none;
}