@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;0,900;1,900&family=JetBrains+Mono:wght@400;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --bg: #0a0c10;
  --felt: #15753c;
  --felt-dark: #0c4524;
  --accent: #00ff88;
  --gold: #ffc107;
  --red: #ff3d00;
  --green: #00e676;
  --text-dim: rgba(255,255,255,0.4);
  --mono: 'JetBrains Mono', monospace;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  touch-action: manipulation;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--mono);
  background: var(--bg);
  color: #fff;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-height: 100vh;
}

/* Body background pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(0,255,136,0.04) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,255,136,0.015) 2px,
      rgba(0,255,136,0.015) 3px
    );
  pointer-events: none;
  z-index: 0;
}
