/* ============================================================
   I WILL TAKE YOUR JOB — 2007 GEOCITIES MEMORIAL STYLESHEET
   Best viewed in Internet Explorer 6 at 1024x768
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=VT323&family=Press+Start+2P&display=swap');

:root {
  --chaos-green:  #00ff41;
  --chaos-pink:   #FF00FF;
  --chaos-yellow: #FFFF00;
  --chaos-cyan:   #00FFFF;
  --cta-red:      #F43F5E;
  --bg-dark:      #0F0F23;
}

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

body {
  background: var(--bg-dark);
  color: #c8ffc8;
  font-family: Verdana, Tahoma, Geneva, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  min-height: 100vh;
  cursor: crosshair;
  overflow-x: hidden;
}

/* ── Global scanlines — subtle, doesn't kill readability ────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.07) 3px,
    rgba(0, 0, 0, 0.07) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ── Glitch animation ───────────────────────────────────────────────────── */
@keyframes glitch {
  0%,95%,100% {
    text-shadow: none;
    transform: translate(0);
    clip-path: none;
  }
  96% {
    text-shadow: -3px 0 var(--chaos-pink), 3px 0 var(--chaos-cyan);
    transform: translate(-2px, 0) skewX(-5deg);
    clip-path: inset(10% 0 60% 0);
  }
  97% {
    text-shadow: 3px 0 var(--chaos-pink), -3px 0 var(--chaos-cyan);
    transform: translate(2px, 0) skewX(5deg);
    clip-path: inset(55% 0 10% 0);
  }
  98% {
    text-shadow: -4px 0 var(--chaos-yellow), 4px 0 var(--chaos-pink);
    transform: translate(-1px, 1px) skewX(-3deg);
    clip-path: inset(30% 0 40% 0);
  }
  99% {
    text-shadow: 2px 0 var(--chaos-cyan), -2px 0 var(--chaos-yellow);
    transform: translate(1px, -1px);
    clip-path: none;
  }
}

.glitch {
  animation: glitch 4s steps(1) infinite;
  display: inline-block;
}

/* Occasional per-letter glitch variant */
@keyframes letterGlitch {
  0%,90%,100% { transform: translate(0) skewX(0); filter: none; }
  91%  { transform: translate(-4px, 0) skewX(-8deg); filter: hue-rotate(90deg) brightness(2); }
  93%  { transform: translate(4px, 1px) skewX(6deg);  filter: hue-rotate(200deg); }
  95%  { transform: translate(-2px, 0);                filter: invert(1); }
  97%  { transform: translate(2px, -1px);              filter: none; }
}

/* ── Starfield canvas ─────────────────────────────────────────────────────── */
#starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ── Scrolling ticker ─────────────────────────────────────────────────────── */
.ticker-wrap {
  background: #0000aa;
  border-top: 2px solid #ff0080;
  border-bottom: 2px solid #ff0080;
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}
.ticker-inner span {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: #ffff00;
  letter-spacing: 2px;
}

/* ── Header / Nav ─────────────────────────────────────────────────────────── */
.site-header {
  background: linear-gradient(180deg, #000066 0%, #000033 100%);
  border-bottom: 3px solid #ff0080;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.header-logo {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 0.8rem;
  color: #00ff41;
  letter-spacing: 3px;
  text-shadow: 0 0 8px #00ff41;
}
.header-status {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: #ff0080;
}
.blink { animation: blink 0.8s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 12px;
}
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.mt-8  { margin-top: 2rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-3  { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* ── Hero / Title ─────────────────────────────────────────────────────────── */
.hero { text-align: center; padding: 2rem 0 1rem; }

.hero-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: #ff0080;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  text-shadow: 0 0 6px #ff0080;
}

/* The title letters are animated via JS */
.dancing-title {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 1rem;
  display: block;
}
.dancing-title .letter {
  display: inline-block;
  animation: letterDance var(--dur, 1s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  color: var(--color, #00ff41);
  text-shadow: 0 0 12px var(--color, #00ff41), 3px 3px 0 #000;
}
.dancing-title .sp { display: inline-block; width: 0.4em; }

@keyframes letterDance {
  0%   { transform: translateY(0)   rotate(0deg)   scale(1);    }
  25%  { transform: translateY(-5px) rotate(-3deg) scale(1.05); }
  50%  { transform: translateY(3px) rotate(2deg)  scale(0.97); }
  75%  { transform: translateY(-3px) rotate(-1deg) scale(1.02); }
  100% { transform: translateY(2px) rotate(2deg)  scale(0.98); }
}

.hero-sub {
  font-family: Verdana, Tahoma, sans-serif;
  font-size: 1rem;
  color: #b8e8b8;
  line-height: 1.8;
}
.hero-sub .dim {
  color: #7a9a7a;
  font-size: 0.875rem;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #001800;
  border: 2px solid #00ff41;
  padding: 3px 10px;
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: #00ff41;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0,255,65,0.3), inset 0 0 6px rgba(0,255,65,0.1);
}
.online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00ff41;
  box-shadow: 0 0 6px #00ff41;
  animation: blink 1.2s ease-in-out infinite;
}

/* ── Card (the main form box) — pixel hard-shadow style ──────────────────── */
.card {
  background: rgba(0, 5, 0, 0.95);
  border: 4px solid var(--chaos-green);
  border-radius: 0;
  box-shadow:
    8px 8px 0 #003300,
    0 0 24px rgba(0,255,65,0.2),
    inset 0 0 40px rgba(0,0,0,0.6);
  padding: 1.5rem;
}

.card-title {
  font-family: Impact, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #ff0080;
  text-shadow: 0 0 8px #ff0080;
  border-bottom: 1px solid rgba(255,0,128,0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

/* ── Form elements ────────────────────────────────────────────────────────── */
.form-group { margin-top: 1.5rem; }
.form-group:first-child { margin-top: 0; }

.label {
  display: block;
  font-family: 'VT323', monospace;
  font-size: 1.15rem;
  color: #ffff66;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 4px rgba(255,255,0,0.4);
}
.label-sub { color: #888; font-size: 0.85rem; margin-left: 6px; letter-spacing: 0; font-family: Verdana, sans-serif; }

.input-text {
  width: 100%;
  background: #050f05;
  border: 2px solid #00aa33;
  padding: 10px 14px;
  color: #c8ffc8;
  font-family: Verdana, Tahoma, sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.6);
}
.input-text::placeholder { color: #3a6a3a; }
.input-text:focus {
  border-color: #ff0080;
  box-shadow: 0 0 10px rgba(255,0,128,0.4), inset 0 0 10px rgba(0,0,0,0.6);
}

/* ── Task chips ───────────────────────────────────────────────────────────── */
.chip-grid { display: flex; flex-wrap: wrap; gap: 6px; }

.chip {
  padding: 5px 11px;
  background: #050f05;
  border: 2px outset #00882a;
  color: #88cc88;
  font-family: Verdana, Tahoma, sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.1s;
  user-select: none;
}
.chip:hover:not(.chip-disabled) {
  background: #0a1f0a;
  border-color: #00ff41;
  color: #c8ffc8;
}
.chip.chip-selected {
  background: #1a0025;
  border: 2px inset #cc00cc;
  color: #ff88ff;
  text-shadow: 0 0 5px rgba(255,0,255,0.5);
}
.chip.chip-disabled {
  border-color: #1a1a1a;
  color: #2a3a2a;
  cursor: not-allowed;
}

/* ── Sliders ──────────────────────────────────────────────────────────────── */
.sliders-stack > * + * { margin-top: 1.25rem; }
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4px;
}
.slider-label { font-size: 0.875rem; color: #b8e8b8; font-family: Verdana, Tahoma, sans-serif; }
.slider-sublabel { font-size: 0.75rem; color: #6a8a6a; margin-left: 6px; font-family: Verdana, sans-serif; }
.slider-val {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: #ff0080;
  text-shadow: 0 0 6px #ff0080;
  min-width: 2.5rem;
  text-align: right;
}
.slider-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #333;
  margin-top: 2px;
  font-family: 'VT323', monospace;
  letter-spacing: 1px;
}

input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: #0a2a0a;
  border: 1px solid #003300;
  outline: none;
  cursor: pointer;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: #ff0080;
  border: 3px outset #ff80c0;
  cursor: pointer;
  box-shadow: 0 0 8px #ff0080;
  transition: transform 0.1s;
}
input[type='range']::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type='range']::-moz-range-thumb {
  width: 20px; height: 20px;
  background: #ff0080;
  border: 3px outset #ff80c0;
  cursor: pointer;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.buttons-group { padding-top: 0.5rem; }
.btn-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.btn-col2 { grid-column: 1 / -1; }

.btn-primary {
  padding: 14px 20px;
  background: linear-gradient(180deg, #00cc44 0%, #006622 100%);
  border: 3px outset #00ff66;
  color: #000;
  font-family: Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.1s;
  text-shadow: none;
}
.btn-primary:hover { background: linear-gradient(180deg, #00ff55 0%, #009933 100%); }
.btn-primary:active { border-style: inset; }

.btn-secondary {
  padding: 10px 14px;
  background: linear-gradient(180deg, #3333aa 0%, #111166 100%);
  border: 3px outset #6666ff;
  color: #ccccff;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.1s;
}
.btn-secondary:hover { background: linear-gradient(180deg, #4444cc 0%, #222288 100%); }
.btn-secondary:active { border-style: inset; }

.btn-roast {
  padding: 10px 14px;
  background: linear-gradient(180deg, #cc1133 0%, #7a000e 100%);
  border: 3px outset #F43F5E;
  color: #ffaaaa;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.1s;
  text-shadow: 0 0 8px var(--cta-red);
}
.btn-roast:hover {
  background: linear-gradient(180deg, #F43F5E 0%, #aa0022 100%);
  color: #fff;
  box-shadow: 0 0 14px rgba(244,63,94,0.6);
}
.btn-roast:active { border-style: inset; }

.btn-appeal {
  width: 100%;
  padding: 10px 14px;
  background: linear-gradient(180deg, #444400 0%, #222200 100%);
  border: 3px outset #aaaa00;
  color: #ffff44;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.1s;
  text-align: center;
}
.btn-appeal:hover { background: linear-gradient(180deg, #666600 0%, #333300 100%); }
.btn-appeal:active { border-style: inset; }

/* ── Visitor counter / footer ─────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 3px ridge #333;
  margin-top: 3rem;
}
.visitor-counter {
  display: inline-block;
  background: #000;
  border: 3px inset #555;
  padding: 4px 12px;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: #ff0000;
  letter-spacing: 4px;
  margin-bottom: 0.75rem;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.8);
}
.footer-text {
  font-family: Verdana, Tahoma, sans-serif;
  font-size: 0.78rem;
  color: #4a6a4a;
  letter-spacing: 0.5px;
  line-height: 1.9;
}
.footer-text a { color: #6a8a6a; text-decoration: underline; }

/* ── Separator / divider ──────────────────────────────────────────────────── */
.divider {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff0080, #00ff41, #ffff00, transparent);
  margin: 1.5rem 0;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/* RESULT PAGE                                                                  */
/* ─────────────────────────────────────────────────────────────────────────── */

/* Loading */
.loading-wrap { text-align: center; padding: 3rem 1rem; }
.loading-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
  color: #00ff41;
  text-shadow: 0 0 10px #00ff41;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  animation: blink 0.6s step-end infinite;
}
.progress-bar {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1rem;
  height: 20px;
  background: #001100;
  border: 2px inset #003300;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    #00ff41 0px, #00ff41 10px,
    #00aa22 10px, #00aa22 20px
  );
  width: 0%;
  animation: fillBar 3s ease-in forwards;
}
@keyframes fillBar {
  0%  { width: 0%; }
  60% { width: 75%; }
  80% { width: 82%; }
  100%{ width: 100%; }
}
.loading-sub {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: #ffff00;
  letter-spacing: 2px;
}

/* Error */
.error-card {
  background: #0d0000;
  border: 3px ridge #ff0000;
  padding: 2rem;
  text-align: center;
}
.error-msg {
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  color: #ff4444;
  text-shadow: 0 0 8px #ff0000;
  margin-bottom: 0.5rem;
}
.error-sub { font-size: 0.8rem; color: #664444; margin-bottom: 1rem; }
.btn-back {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(180deg, #660000, #330000);
  border: 3px outset #aa0000;
  color: #ff6666;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 2px;
}
.btn-back:hover { background: linear-gradient(180deg, #880000, #440000); }

/* Badge block */
.badge-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 4px ridge;
  position: relative;
  overflow: hidden;
}
.badge-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}
.badge-card.green {
  border: 4px solid #00ff41;
  background: rgba(0,30,0,0.95);
  box-shadow: 8px 8px 0 #002200, 0 0 30px rgba(0,255,65,0.2);
}
.badge-card.yellow {
  border: 4px solid var(--chaos-yellow);
  background: rgba(25,25,0,0.95);
  box-shadow: 8px 8px 0 #222200, 0 0 30px rgba(255,255,0,0.15);
}
.badge-card.red {
  border: 4px solid var(--cta-red);
  background: rgba(35,0,0,0.95);
  box-shadow: 8px 8px 0 #220000, 0 0 30px rgba(244,63,94,0.2);
}

.badge-emoji { font-size: 3rem; margin-bottom: 0.5rem; display: block; }

.badge-label {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.6rem, 2.5vw, 0.9rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.badge-label.green  { color: #00ff41; text-shadow: 0 0 12px #00ff41; }
.badge-label.yellow { color: #ffff00; text-shadow: 0 0 12px #ffff00; }
.badge-label.red    { color: #ff4444; text-shadow: 0 0 12px #ff4444; }

.score-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}
.score-number {
  font-family: Impact, sans-serif;
  font-size: 5rem;
  line-height: 1;
}
.score-number.green  { color: #00ff41; text-shadow: 0 0 20px #00ff41, 4px 4px 0 #003300; }
.score-number.yellow { color: #ffff00; text-shadow: 0 0 20px #ffff00, 4px 4px 0 #333300; }
.score-number.red    { color: #ff4444; text-shadow: 0 0 20px #ff4444, 4px 4px 0 #330000; }
.score-meta {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: #555;
  text-align: left;
  line-height: 1.4;
}
.score-detail {
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: #444;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Verdict */
.verdict-card {
  background: rgba(0,0,15,0.95);
  border: 4px solid var(--chaos-pink);
  border-radius: 0;
  box-shadow: 8px 8px 0 #2a0030, 0 0 24px rgba(255,0,255,0.2);
  padding: 1.5rem;
}
.section-label {
  font-family: Impact, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--chaos-pink);
  text-shadow: 0 0 8px var(--chaos-pink), 0 0 20px rgba(255,0,255,0.3);
  margin-bottom: 1rem;
  text-transform: uppercase;
  animation: glitch 8s steps(1) infinite;
}
.verdict-lines { margin-bottom: 1rem; }
.verdict-line {
  font-family: 'VT323', monospace;
  font-size: 1.15rem;
  line-height: 1.7;
  letter-spacing: 1px;
  display: block;
  /* typewriter fill handled by JS */
  white-space: pre-wrap;
}
.verdict-line.v-first { color: #00ff66; font-size: 1.25rem; text-shadow: 0 0 6px rgba(0,255,65,0.4); }
.verdict-line.v-mid   { color: #b8e8b8; }
.verdict-line.v-last.green  { color: #00ff41; font-size: 1.15rem; text-shadow: 0 0 6px #00ff41; }
.verdict-line.v-last.yellow { color: #ffff00; font-size: 1.15rem; text-shadow: 0 0 6px #ffff00; }
.verdict-line.v-last.red    { color: #ff4444; font-size: 1.15rem; text-shadow: 0 0 6px #ff4444; }

.verdict-sig {
  border-top: 1px solid #1a1a1a;
  padding-top: 0.75rem;
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: #333;
  font-style: italic;
  letter-spacing: 1px;
}

/* Memo */
.memo-card {
  background: #f0f0e8;
  border: 3px ridge #aaaaaa;
  color: #000;
  overflow: hidden;
}
.memo-titlebar {
  background: linear-gradient(90deg, #000080, #1084d0);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.memo-titlebar-text {
  font-family: Tahoma, Verdana, sans-serif;
  font-size: 0.8rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0;
}
.memo-titlebar-buttons { display: flex; gap: 3px; }
.memo-tb-btn {
  width: 14px; height: 14px;
  background: #d4d0c8;
  border: 1px outset #fff;
  font-size: 8px;
  font-family: 'Comic Sans MS', cursive;
  cursor: default;
  display: flex; align-items: center; justify-content: center;
  color: #000;
}
.memo-body-inner {
  padding: 1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #111;
  background: #fffff0;
}
.memo-body-inner .memo-field { color: #000033; }
.memo-body-inner .memo-val   { color: #000; }
.memo-separator { border: none; border-top: 1px solid #aaa; margin: 8px 0; }
.memo-body-inner p { margin-bottom: 0.25rem; }
.memo-body-inner .memo-bullet { padding-left: 1rem; color: #444; }
.memo-copy-btn {
  display: block;
  width: 100%;
  padding: 6px;
  background: #d4d0c8;
  border: 2px outset #fff;
  border-top: 2px outset #fff;
  font-family: Tahoma, Verdana, sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: center;
}
.memo-copy-btn:active { border-style: inset; }

/* Callout stats */
.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px;
  background: #e4e0d8;
  border-top: 1px solid #aaa;
}
.callout-item {
  background: #000;
  border: 2px inset #555;
  padding: 6px 8px;
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  color: #ff0000;
  letter-spacing: 1px;
}

/* Share buttons */
.share-section { }
.share-title {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: #ffff00;
  letter-spacing: 3px;
  text-align: center;
  text-shadow: 0 0 6px #ffff00;
  margin-bottom: 0.75rem;
}
.share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: Verdana, Tahoma, sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.1s;
  border: 3px outset;
  text-align: center;
}
.share-btn:active { border-style: inset; }
.share-x      { background: linear-gradient(180deg, #1a1a2e, #0d0d1a); color: #aaaaff; border-color: #6666ff; }
.share-reddit { background: linear-gradient(180deg, #2a1500, #150a00); color: #ff9944; border-color: #ff6600; }
.share-green  { background: linear-gradient(180deg, #001a00, #000d00); color: #00ff88; border-color: #00aa44; }
.share-violet { background: linear-gradient(180deg, #1a0030, #0d0018); color: #cc88ff; border-color: #8800cc; }
.share-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.challenge-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border: 3px outset #555;
  color: #999;
  font-family: Verdana, Tahoma, sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.1s;
}
.challenge-btn:hover { color: #aaa; border-color: #888; }
.challenge-btn:active { border-style: inset; }

/* Result footer */
.result-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 3px ridge #111;
  margin-top: 1rem;
}
.viral-line {
  font-family: Verdana, Tahoma, sans-serif;
  font-size: 0.875rem;
  font-style: italic;
  color: #7a9a7a;
  margin-bottom: 0.75rem;
}
.back-link {
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: #333;
  text-decoration: underline;
  letter-spacing: 1px;
  cursor: pointer;
}
.back-link:hover { color: #00ff41; }

/* Space between result sections */
.result-sections > * + * { margin-top: 1.25rem; }

/* ── SEO content section ─────────────────────────────────────────────────── */
.seo-section {
  margin-top: 2rem;
  border-top: 1px solid rgba(0,255,65,0.15);
  padding-top: 1.5rem;
}
.seo-section-title {
  font-family: 'VT323', monospace;
  font-size: 0.95rem;
  color: rgba(0,255,65,0.4);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.seo-section p {
  font-size: 0.78rem;
  color: #5a7a5a;
  line-height: 1.75;
  margin-bottom: 0.75rem;
  max-width: 72ch;
}
.seo-section strong { color: #7a9a7a; }
.seo-section em { color: #6a8a6a; }
.seo-faq { margin-top: 1.25rem; display: grid; gap: 0.75rem; }
.seo-faq-q {
  font-size: 0.78rem;
  font-weight: bold;
  color: #6a8a6a;
  margin-bottom: 0.2rem;
}
.seo-faq-a {
  font-size: 0.75rem;
  color: #4a6a4a;
  line-height: 1.65;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .card { padding: 1rem; }
  .dancing-title { font-size: 1.6rem; }
  .score-number { font-size: 3.5rem; }
  .callout-grid { grid-template-columns: 1fr; }
  .share-grid { grid-template-columns: 1fr; }
  .btn-grid-2 { grid-template-columns: 1fr; }
  .btn-col2 { grid-column: 1; }
  .badge-label { font-size: 0.55rem; }
}
