:root {
  --sgp-bg: #000000;
  --sgp-text: #f5f5f5;
  --sgp-line: #2a2a2a;
  --sgp-max: 1440px;
  --sgp-gutter: 32px;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  background: var(--sgp-bg);
  color: var(--sgp-text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(calc(100% - 64px), var(--sgp-max));
  margin-inline: auto;
}

main {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* =========================
   NOISE OVERLAY (BRUTAL LAYER)
   ========================= */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.12) 0.8px, transparent 0.8px);
  background-size: 6px 6px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.22;
}
/* =========================
   ADMIN BAR FIX
   ========================= */

body.admin-bar .site-header {
  top: 32px;
}

/* =========================
   BASIC TYPOGRAPHY CONTROL
   ========================= */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}