/* PIHOLEKILLER — Y2K warez aesthetic
   Deliberately NOT matching VOID's editorial style.
   Neon-on-black, CRT scanlines, marquee banners, Comic Sans of the privacy world. */

:root {
  --bg:         #000000;
  --bg-alt:     #060008;
  --neon:       #00ff41;          /* Matrix green */
  --neon-dim:   #008822;
  --neon-faint: #003311;
  --hot:        #ff00ff;          /* hot pink */
  --electric:   #00ffff;          /* cyan */
  --warn:       #ffff00;          /* DANGER yellow */
  --blood:      #ff0033;          /* warning red */
  --text:       #00ff41;
  --gold:       #ffcc00;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'VT323', monospace;
  font-size: 20px;
  line-height: 1.35;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: none;           /* no anti-aliasing for that crunchy CRT feel */
  font-smooth: never;
}

/* CRT scanlines overlay */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 2px,
    rgba(0, 255, 65, 0.035) 2px,
    rgba(0, 255, 65, 0.035) 4px
  );
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: screen;
}

/* Slight flicker noise */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* Marquee warning banner */
.skull-banner {
  background: var(--warn);
  color: var(--bg);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  border-bottom: 3px double var(--blood);
  position: relative;
  z-index: 10;
}

.marquee {
  display: inline-block;
  animation: marquee 32s linear infinite;
  padding-left: 100%;
}

@keyframes marquee {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 2;
}

/* ---- Hero ---- */
.hero {
  text-align: center;
  padding: 56px 36px;
  margin-bottom: 64px;
  border: 2px dashed var(--neon);
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(0, 255, 65, 0.05), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--hot);
}
.hero::before { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.hero::after  { bottom: -3px; right: -3px; border-left:  none; border-top:    none; }

.hero-eyebrow {
  color: var(--electric);
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-family: 'Press Start 2P', monospace;
}

.hero-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(28px, 7vw, 64px);
  color: var(--neon);
  letter-spacing: -1px;
  margin-bottom: 32px;
  text-shadow:
    0 0 8px var(--neon),
    0 0 20px var(--neon),
    3px 3px 0 var(--hot),
    -3px -3px 0 var(--electric);
  animation: title-flicker 7s infinite;
  line-height: 1;
}

.hero-title .killer {
  color: var(--blood);
  text-shadow:
    0 0 8px var(--blood),
    0 0 20px var(--blood),
    3px 3px 0 var(--warn),
    -3px -3px 0 var(--electric);
}

@keyframes title-flicker {
  0%, 94%, 100%  { opacity: 1; }
  95%           { opacity: 0.4; transform: translate(1px, 0); }
  96%           { opacity: 1;   transform: translate(-1px, 0); }
  97%           { opacity: 0.3; }
  98%           { opacity: 1; }
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.55;
  color: var(--electric);
  margin-bottom: 36px;
  font-family: 'VT323', monospace;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.stat {
  padding: 6px 14px;
  border: 1px solid var(--neon-dim);
  font-size: 15px;
  color: var(--neon);
  font-family: 'VT323', monospace;
  letter-spacing: 1px;
  background: rgba(0, 255, 65, 0.04);
}

.start-btn {
  background: var(--neon);
  color: var(--bg);
  border: none;
  padding: 22px 52px;
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
  margin-bottom: 32px;
  box-shadow: 6px 6px 0 var(--hot);
  text-transform: uppercase;
}

.start-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--hot), 0 0 40px rgba(0, 255, 65, 0.6);
}

.start-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--hot);
}

/* Warning box */
.warning-box {
  background: rgba(255, 0, 51, 0.08);
  border: 2px solid var(--blood);
  padding: 16px 22px;
  color: var(--blood);
  font-size: 17px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.4;
}

.warn-tag {
  font-weight: bold;
  color: var(--warn);
  margin-bottom: 6px;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  letter-spacing: 2px;
}

.warning-box em {
  font-style: normal;
  color: var(--warn);
  text-decoration: underline;
  font-weight: bold;
}

/* ---- Sections ---- */
main > section {
  margin-bottom: 64px;
  padding: 28px 28px 28px 36px;
  border-left: 4px solid var(--neon);
  position: relative;
}

main > section:hover { border-left-color: var(--hot); }

main > section h2 {
  font-family: 'Major Mono Display', monospace;
  color: var(--electric);
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 22px;
  text-transform: lowercase;
}

main > section p {
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--text);
}

.highlight {
  color: var(--hot);
  background: rgba(255, 0, 255, 0.08);
  padding: 1px 6px;
  font-weight: bold;
}

main > section em {
  color: var(--warn);
  font-style: italic;
  font-weight: bold;
}

/* Leaderboard table */
.leaderboard table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-family: 'VT323', monospace;
}

.leaderboard td {
  padding: 12px 14px;
  border-bottom: 1px dashed var(--neon-faint);
  font-size: 22px;
  vertical-align: middle;
}

.leaderboard td.rank {
  color: var(--neon-dim);
  font-size: 16px;
  width: 40px;
}

.leaderboard td.router { color: var(--electric); }

.leaderboard td.score {
  color: var(--warn);
  text-align: right;
  font-weight: bold;
  font-size: 24px;
}

.leaderboard td.score.gold { color: var(--gold); }
.leaderboard td.score.red  { color: var(--blood); }

.leaderboard tr.row-1 td {
  background: rgba(255, 204, 0, 0.04);
}

.leaderboard tr.row-1 td.router::after {
  content: " ★";
  color: var(--gold);
}

.leaderboard tr.row-fail td {
  background: rgba(255, 0, 51, 0.04);
  color: var(--neon-dim);
}

.leaderboard tr.row-fail td.router { color: var(--neon-dim); }

.leaderboard-note {
  font-size: 14px;
  color: var(--neon-dim);
  text-align: right;
  font-style: italic;
}

/* Pillars grid */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.pillar {
  padding: 18px 20px;
  border: 1px solid var(--neon-dim);
  background: var(--bg-alt);
  position: relative;
  transition: border-color 0.15s, transform 0.15s;
}

.pillar:hover {
  border-color: var(--hot);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--neon-dim);
}

.pillar-num {
  position: absolute;
  top: 10px;
  right: 14px;
  color: var(--neon-faint);
  font-family: 'Press Start 2P', monospace;
  font-size: 16px;
}

.pillar-name {
  color: var(--hot);
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pillar-desc {
  color: var(--electric);
  font-size: 17px;
  line-height: 1.4;
}

/* Signup section (currently active) — same shape as VOID CTA */
.signup-section {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.04)) !important;
  border-left-color: var(--hot) !important;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.signup-desc p {
  font-size: 20px;
  margin-bottom: 14px;
}

.signup-tag {
  color: var(--warn);
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255, 255, 0, 0.6);
  margin-right: 8px;
}

.signup-bullets {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}

.signup-bullets li {
  color: var(--electric);
  font-size: 18px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--neon-faint);
  font-family: 'VT323', monospace;
}

.signup-bullets li:last-child { border-bottom: none; }

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 300px;
}

.signup-input {
  background: var(--bg);
  color: var(--neon);
  border: 2px solid var(--neon);
  padding: 14px 18px;
  font-family: 'VT323', monospace;
  font-size: 22px;
  outline: none;
  box-shadow: 4px 4px 0 var(--hot);
  letter-spacing: 1px;
}

.signup-input::placeholder { color: var(--neon-dim); }

.signup-input:focus {
  border-color: var(--hot);
  box-shadow: 4px 4px 0 var(--electric);
}

.signup-btn {
  background: var(--hot);
  color: var(--bg);
  padding: 18px 20px;
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  border: none;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--electric);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.signup-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--electric), 0 0 30px rgba(255, 0, 255, 0.5);
}

.signup-note {
  font-size: 13px;
  color: var(--neon-dim);
  font-style: italic;
  font-family: 'VT323', monospace;
}

@media (max-width: 680px) {
  .signup-grid { grid-template-columns: 1fr; }
  .signup-form { min-width: 0; }
}

/* VOID hardware CTA — held in reserve; will swap back in when VOID ships */
.void-cta-section {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(0, 255, 255, 0.04)) !important;
  border-left-color: var(--hot) !important;
}

.void-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.void-desc p {
  font-size: 20px;
  margin-bottom: 14px;
}

.void-tag {
  color: var(--hot);
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
  margin-right: 8px;
}

.void-bullets {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}

.void-bullets li {
  color: var(--electric);
  font-size: 18px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--neon-faint);
  font-family: 'VT323', monospace;
}

.void-bullets li:last-child { border-bottom: none; }

.void-btn {
  background: var(--hot);
  color: var(--bg);
  padding: 22px 28px;
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 2px;
  box-shadow: 6px 6px 0 var(--electric);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  display: inline-block;
}

.void-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--electric), 0 0 30px rgba(255, 0, 255, 0.5);
}

@media (max-width: 680px) {
  .void-cta { grid-template-columns: 1fr; }
  .void-btn { text-align: center; }
}

/* Ad slot — native banner placement */
.ad-section {
  text-align: center;
  margin: 40px auto;
  max-width: 960px;
  padding: 0 24px;
}

.ad-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--neon-faint);
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* FAQ */
.faq details {
  border-bottom: 1px dashed var(--neon-faint);
  padding: 12px 0;
}

.faq summary {
  cursor: pointer;
  font-size: 22px;
  color: var(--neon);
  padding: 4px 0;
  list-style: none;
  user-select: none;
}

.faq summary::before {
  content: "[+] ";
  color: var(--hot);
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  margin-right: 8px;
}

.faq details[open] summary::before {
  content: "[-] ";
  color: var(--warn);
}

.faq details p {
  color: var(--electric);
  padding: 10px 0 6px 40px;
  font-size: 19px;
}

/* ---- Footer ---- */
footer {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  border-top: 2px dashed var(--neon-dim);
  color: var(--neon-dim);
  font-size: 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-brand {
  font-family: 'Press Start 2P', monospace;
  color: var(--neon);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--neon-dim);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--electric);
  text-decoration: none;
  padding: 0 4px;
}

.footer-links a:hover {
  color: var(--hot);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
  main { padding: 40px 16px; }
  .hero { padding: 40px 20px; }
  main > section { padding: 20px 16px 20px 20px; }
  .skull-banner { font-size: 9px; letter-spacing: 1px; }

  /* Tune down logo glow intensity on mobile — desktop stays as-is */
  .hero-title {
    text-shadow:
      0 0 3px var(--neon),
      0 0 6px var(--neon),
      2px 2px 0 var(--hot),
      -2px -2px 0 var(--electric);
  }
  .hero-title .killer {
    text-shadow:
      0 0 3px var(--blood),
      0 0 6px var(--blood),
      2px 2px 0 var(--warn),
      -2px -2px 0 var(--electric);
  }
}
