/* ───────────────────────────────────────────────────────────
   Join the Game — Design Tokens
   Brand: warm community-first sports app
   ─────────────────────────────────────────────────────────── */

:root {
  /* Greens — moss-y, grounded, warm */
  --moss:        #255f45;
  --moss-deep:   #0d472f;
  --moss-darker: #102318;
  --moss-soft:   #dceee4;
  --moss-mist:   #eef6f0;

  /* Warm neutrals */
  --paper:       #fffdf7;
  --cream:       #f7f2e9;
  --sand:        #ebe3d7;
  --line:        #ddd4c7;
  --line-soft:   #eee8dd;

  /* Ink */
  --ink:         #1d1914;
  --ink-2:       #403a32;
  --ink-soft:    #716a60;
  --ink-mute:    #989085;

  /* Accent — terracotta / "ballon" */
  --terra:       #d47745;
  --terra-deep:  #a85031;
  --terra-soft:  #f5dfd2;

  /* Supporting */
  --pitch:       #3d8b5b; /* livelier green for accents */
  --gold:        #d9b851;  /* whistle / highlight */

  /* Type */
  --display: 'Archivo', 'Helvetica Neue', system-ui, sans-serif;
  --body:    'Geist', 'Inter', system-ui, sans-serif;
  --mono:    'Geist Mono', ui-monospace, Menlo, monospace;
  --serif:   'Instrument Serif', Georgia, serif;

  /* Radii / shadow */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(20,30,25,.05), 0 0 0 1px rgba(20,30,25,.04);
  --sh-2: 0 6px 18px -8px rgba(20,30,25,.18), 0 1px 2px rgba(20,30,25,.06);
  --sh-3: 0 24px 60px -20px rgba(20,30,25,.30), 0 4px 10px -4px rgba(20,30,25,.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; }

/* utility — striped image placeholder */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--moss-soft) 0 12px,
      var(--moss-mist) 12px 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  border-radius: var(--r-md);
}
