/* ── AREA42 — main.css ── */
/* Shared across all pages */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Caveat:wght@400;600;700&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --paper: #F0EDE5;
  --ink: #1a1a18;
  --blue: #0019FF;
  --dot: rgba(0, 25, 255, 0.18);
}

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

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

body {
  background-color: var(--paper);
  background-image: radial-gradient(circle, var(--dot) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  font-family: 'Courier Prime', monospace;
  color: var(--ink);
}

/* ── Page header ── */
.page-header {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.5rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--blue);
  letter-spacing: 0.05em;
  line-height: 1;
}

.page-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  opacity: 0.4;
}

.back-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.15s;
}

.back-link:hover { opacity: 0.8; }
