/* ===== FIX TAP HIGHLIGHT (ZERO FLASH) ===== */
* { -webkit-tap-highlight-color: transparent; }

:root {
  --primary: #f97316;
  --primary-soft: #fb923c;
  --bg-dark: #020617;
  --bg-mid: #1e293b;
  --text-light: #e5e7eb;
  --glow: rgba(249, 115, 22, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
}

html,
body {
  min-height: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--primary);
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =============================
   UTILITY
   ============================= */
.hidden {
  display: none !important;
}