/* Shared tokens, reset, page shell, focus rings */

:root {
  /* RGB channels for rgba(var(--*), a) — white text/surfaces, gold accent (#ffb800) */
  --c: 255, 255, 255;
  --a: 255, 184, 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: manipulation;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #0d0d0d;
  min-height: 100vh;
  color: #fff;
  padding: 2rem;
  overflow-x: hidden;
  touch-action: manipulation;
}

/* Soft gold/orange wash behind content (non-interactive) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 180, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 100, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.container {
  /* Avoid z-index here: it traps fixed overlays (suggest/crawl sheets) in a stacking context */
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Keyboard/AT only — :focus-visible skips mouse/touch taps */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid rgba(var(--a), 0.85);
  outline-offset: 2px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
  color: #ffb800;
  text-shadow: 0 0 40px rgba(var(--a), 0.3);
  white-space: nowrap;
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  body { padding: 1rem; padding-top: 2rem; }
}
