:root {
  --bg: #0a0a0a; /* deep near-black from banner */
  --bg-soft: #121212;
  --gold: #ffcc00; /* headline gold */
  --gold-2: #ffd84d;
  --text: #f2f2f2;
  --muted: #b6b6b6;
  --card: #111111;
  --border: #2a2a2a;
}

/* Reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(10,10,10,0.9), rgba(10,10,10,0.6) 60%, rgba(10,10,10,0));
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}
.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: radial-gradient(60% 60% at 50% 40%, var(--gold-2), var(--gold));
  color: #111;
  font-weight: 800;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a { color: var(--text); text-decoration: none; opacity: 0.9; }
.site-nav a:hover { color: var(--gold); }

.hero {
  position: relative;
  padding: 96px 0 72px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.70), rgba(10,10,10,0.85)),
    radial-gradient(1200px 600px at 50% 10%, rgba(255, 204, 0, 0.18), rgba(0,0,0,0) 60%),
    url('/assets/4chan_banner.png');
  background-size: auto, auto, cover;
  background-position: center, 50% 10%, center;
  background-repeat: no-repeat;
}
.hero__title {
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.9;
  margin: 0 0 16px;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 204, 0, 0.35);
}
.hero__tag {
  font-size: clamp(16px, 2.5vw, 26px);
  margin: 0 0 28px;
  color: var(--muted);
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.section { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1.1fr 0.9fr; } }

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #0d0d0d, #0a0a0a);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.facts { list-style: none; padding: 0; margin: 10px 0 0; }
.facts li { padding: 10px 0; border-bottom: 1px dashed var(--border); }
.facts li:last-child { border-bottom: 0; }

.steps { padding-left: 18px; }

.links { display: flex; gap: 12px; flex-wrap: wrap; }

.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.address-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.address { background: #0b0b0b; border: 1px dashed var(--border); padding: 8px 10px; border-radius: 8px; color: var(--gold-2); }

.button {
  --ring: rgba(255, 204, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  background: #0b0b0b;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.button:hover { transform: translateY(-1px); border-color: var(--gold); box-shadow: 0 0 0 6px var(--ring); color: var(--gold); }
.button--primary { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #111; border-color: #ce9d00; }
.button--primary:hover { color: #111; box-shadow: 0 0 0 6px var(--ring); }
.button--ghost { background: transparent; }
.button--outline { background: transparent; border-color: var(--border); }

.muted { color: var(--muted); }

.site-footer { border-top: 1px solid var(--border); padding: 22px 0; background: var(--bg-soft); }
.site-footer .container { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: space-between; }

/* Screensaver floating logos */
#screensaver {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0; /* behind content */
  pointer-events: none;
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

.float-logo {
  position: absolute;
  width: 72px;
  height: 72px;
  will-change: transform;
  filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.25));
  opacity: 0.75;
}
@media (min-width: 900px) {
  .float-logo { width: 92px; height: 92px; }
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  .float-logo { display: none; }
}


