@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --ink: #eef1f0;
  --dim: #9aa39f;
  --bg: #0b0d0c;
  --panel: #14171587;
  --panel-strong: #14171f;
  --edge: #3a4038;
  --accent: #ff7a1a;
  --accent-dim: #b5540f;
  --team1: #ff7a1a;
  --team2: #4fc3f7;
  --danger: #e5484d;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
}

body {
  font-family: 'Rajdhani', sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.stencil {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Angular clipped panel used across the HUD */
.clipped {
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.clipped-sm {
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

button {
  font-family: 'Oswald', sans-serif;
  cursor: pointer;
}

.siteFooter {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 28px 16px 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--dim);
}
.siteFooter a {
  color: var(--dim);
  text-decoration: none;
}
.siteFooter a:hover {
  color: var(--accent);
}
