:root {
  --bg: #0b0908;
  --paper: #14100f;
  --white: #f2f0eb;
  --red: #c81f2a;
  --red-dark: #7a1218;
  --muted: #a39d94;
  --ink: #ddd8d0;
}

* { box-sizing: border-box; }

html {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dark) #000;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb {
  background-color: var(--red-dark);
  border: 2px solid #000;
  border-radius: 6px;
}

html, body {
  margin: 0;
  background: var(--bg);
  min-height: 100%;
}

body {
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }

/* ---- Masthead (shared with article pages) ---- */
.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.5rem 1.1rem;
  border-bottom: 1px solid #221a18;
  max-width: 46rem;
  width: 100%;
  margin: 0 auto;
}
.masthead-brand {
  font-family: 'Butcherman', cursive;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
}
.masthead-brand span { color: var(--red); }
.masthead-nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 1.3rem;
}
.masthead-nav a:hover { color: var(--white); }

/* ---- Front page ---- */
.front {
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  flex: 1;
}

.front-intro { margin-bottom: 3rem; }
.kicker {
  font-family: 'Special Elite', monospace;
  color: var(--red);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin: 0 0 1rem;
}
.front h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 1rem;
}
.front-dek {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 30rem;
  margin: 0;
}

/* ---- Featured card ---- */
.featured-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid #221a18;
  overflow: hidden;
  margin-bottom: 2.5rem;
  transition: border-color 0.2s ease;
}
.featured-card:hover { border-color: var(--red-dark); }
.featured-media { aspect-ratio: 16/9; overflow: hidden; }
.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.8) contrast(1.2) brightness(0.6) sepia(0.28) hue-rotate(-40deg) saturate(2);
}
.featured-body { padding: 1.5rem; }
.featured-label {
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.6rem;
}
.featured-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  color: var(--white);
  margin: 0 0 0.7rem;
  line-height: 1.15;
}
.featured-dek {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 1rem;
}
.featured-cta {
  font-family: 'Special Elite', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}

/* ---- Secondary cards (games) ---- */
.front-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.secondary-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid #221a18;
  padding: 1.25rem;
  transition: border-color 0.2s ease;
}
.secondary-card:hover { border-color: var(--red-dark); }
.secondary-label {
  font-family: 'Special Elite', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.5rem;
}
.secondary-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.secondary-dek {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ---- Footer ---- */
.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid #221a18;
}
.site-footer p {
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}

/* ---- Journal index list (shared) ---- */
.journal-list { margin-top: 1rem; }
.journal-entry {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem 0;
  border-bottom: 1px solid #221a18;
}
.journal-entry:first-child { padding-top: 0; }
.journal-entry-label {
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.5rem;
}
.journal-entry h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  color: var(--white);
  margin: 0 0 0.5rem;
}
.journal-entry:hover h2 { color: var(--red); }
.journal-entry-dek {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.journal-list.compact { margin: 0 0 0.5rem; }
.journal-list.compact .journal-entry { padding: 1.1rem 0; }

.see-all {
  margin: 0 0 3rem;
}
.see-all a {
  display: inline-block;
  font-family: 'Special Elite', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  border: 1px solid var(--red-dark);
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.see-all a:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

@media (max-width: 540px) {
  .front-secondary { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
