  @import url('https://fonts.googleapis.com/css2?family=VT323&family=Special+Elite&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');
  :root {
    --hot-pink: #ff3d9a;
    --deep-blue: #1133cc;
    --sky-blue: #4488ff;
    --pale-pink: #ffb3d9;
    --ghost-white: #e8e8e0;
    --dark-bg: #0a0a0a;
    --terminal-green: #33ff33;
    --manila: #f5f0d8;
    --ink: #1a1208;
    --tape: #c8b87a;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    background-color: #0c0c14;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,61,154,0.04) 2px, rgba(255,61,154,0.04) 4px),
      repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,0,0,0.2) 40px, rgba(0,0,0,0.2) 41px);
    font-family: 'Courier Prime', monospace;
    color: var(--ghost-white);
    min-height: 100vh;
    cursor: crosshair;
  }
  /* SCANLINES overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.15) 0px,
      rgba(0,0,0,0.15) 1px,
      transparent 1px,
      transparent 3px
    );
    pointer-events: none;
    z-index: 9999;
  }
  .page-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 12px 60px;
  }
  /* ===== HEADER ===== */
  .site-header {
    text-align: center;
    padding: 28px 12px 0;
    border-bottom: 3px double var(--hot-pink);
    margin-bottom: 0;
    position: relative;
  }
  .header-stamp {
    display: inline-block;
    border: 3px solid var(--deep-blue);
    color: var(--deep-blue);
    font-family: 'VT323', monospace;
    font-size: 13px;
    letter-spacing: 3px;
    padding: 2px 8px;
    transform: rotate(-2deg);
    margin-bottom: 8px;
  }
  .site-title {
    font-family: 'VT323', monospace;
    font-size: clamp(52px, 10vw, 88px);
    letter-spacing: 6px;
    color: var(--ghost-white);
    text-shadow:
      4px 0 0 var(--hot-pink),
      -2px 0 0 var(--deep-blue),
      0 0 30px rgba(255,61,154,0.35);
    line-height: 1;
    margin-bottom: 4px;
    animation: glitch 8s infinite;
  }
  @keyframes glitch {
    0%, 95%, 100% { text-shadow: 4px 0 0 var(--hot-pink), -2px 0 0 var(--deep-blue), 0 0 30px rgba(255,61,154,0.35); transform: none; }
    96% { text-shadow: -4px 0 0 var(--hot-pink), 3px 0 0 var(--deep-blue); transform: skewX(-2deg); }
    97% { text-shadow: 6px 0 0 var(--hot-pink), -4px 0 0 var(--deep-blue); transform: skewX(1deg); }
    98% { text-shadow: 4px 0 0 var(--hot-pink), -2px 0 0 var(--deep-blue); transform: none; }
  }
  .site-subtitle {
    font-family: 'Special Elite', serif;
    font-size: 13px;
    color: var(--pale-pink);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  /* ===== MARQUEE ===== */
  .marquee-strip {
    background: var(--deep-blue);
    color: #fff;
    font-family: 'VT323', monospace;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 4px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 0;
  }
  .marquee-inner {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
  }
  @keyframes scroll-left {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
  }
  /* ===== NAV ===== */
  .nav-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--hot-pink);
    margin-bottom: 24px;
    background: #050505;
  }
  .nav-bar a {
    font-family: 'VT323', monospace;
    font-size: 20px;
    color: var(--hot-pink);
    text-decoration: none;
    padding: 6px 18px;
    letter-spacing: 2px;
    border-right: 1px solid #0d0d1e;
    transition: background 0.1s, color 0.1s;
  }
  .nav-bar a:hover {
    background: var(--hot-pink);
    color: #fff;
  }
  /* ===== SECTION LABELS ===== */
  .section-label {
    font-family: 'VT323', monospace;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--hot-pink);
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.7;
  }
  .section-title {
    font-family: 'VT323', monospace;
    font-size: 34px;
    letter-spacing: 3px;
    color: var(--pale-pink);
    border-left: 4px solid var(--pale-pink);
    padding-left: 12px;
    margin-bottom: 20px;
    line-height: 1;
  }
  /* ===== ABOUT BOX ===== */
  .about-box {
    border: 1px solid #2a2a2a;
    background: #0d0d0d;
    padding: 20px 24px;
    margin-bottom: 32px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 24px;
    align-items: start;
  }
  .about-box::before {
    content: 'FILE: INTERLINEAS-OVERVIEW.TXT';
    position: absolute;
    top: -10px;
    left: 16px;
    font-family: 'VT323', monospace;
    font-size: 14px;
    color: var(--hot-pink);
    background: #0d0d0d;
    padding: 0 8px;
    letter-spacing: 2px;
  }
  .about-text {
    font-family: 'Courier Prime', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: #c8c8bc;
  }
  .about-text p + p { margin-top: 12px; }
  .about-text strong {
    color: var(--pale-pink);
    font-weight: 700;
  }
  .sidebar-dossier {
    border: 1px dashed #333;
    padding: 14px;
    background: #080808;
  }
  .dossier-title {
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: var(--deep-blue);
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-align: center;
    border-bottom: 1px solid #1f1f1f;
    padding-bottom: 6px;
  }
  .dossier-entry {
    margin-bottom: 10px;
  }
  .dossier-key {
    font-family: 'VT323', monospace;
    font-size: 13px;
    color: #555;
    letter-spacing: 2px;
    display: block;
  }
  .dossier-val {
    font-family: 'Special Elite', serif;
    font-size: 13px;
    color: var(--ghost-white);
  }
  /* ===== CONTENT GRID ===== */
  .content-section {
    margin-bottom: 40px;
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .content-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 0;
    position: relative;
    transition: border-color 0.15s;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
  }
  .content-card:hover {
    border-color: var(--hot-pink);
  }
  .content-card:hover .card-type-bar {
    opacity: 1;
  }
  .card-type-bar {
    height: 3px;
    opacity: 0.6;
    transition: opacity 0.15s;
  }
  .bar-art { background: #ff3d9a; }
  .bar-story { background: var(--sky-blue); }
  .bar-lore { background: var(--pale-pink); }
  .bar-classified { background: var(--deep-blue); }
  .card-inner {
    padding: 16px 16px 14px;
  }
  .card-tag {
    font-family: 'VT323', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
  }
  .tag-art { color: #ff3d9a; }
  .tag-story { color: #66aaff; }
  .tag-lore { color: var(--pale-pink); }
  .tag-classified { color: var(--deep-blue); }
  .card-title {
    font-family: 'Special Elite', serif;
    font-size: 17px;
    color: var(--ghost-white);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .card-desc {
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
  }
  .card-footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .card-date {
    font-family: 'VT323', monospace;
    font-size: 13px;
    color: #444;
    letter-spacing: 1px;
  }
  .card-access {
    font-family: 'VT323', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--hot-pink);
    border: 1px solid var(--hot-pink);
    padding: 1px 7px;
  }
  .card-access.locked {
    color: var(--deep-blue);
    border-color: var(--deep-blue);
  }
  /* ===== REDACTED CARD ===== */
  .content-card.redacted {
    opacity: 0.5;
    pointer-events: none;
  }
  .content-card.redacted .card-title::after {
    content: '';
    display: block;
    height: 14px;
    background: #333;
    margin-top: 4px;
    width: 60%;
  }
  /* ===== CHARACTERS SECTION ===== */
  .char-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }
  .char-card {
    border: 1px solid #1e1e1e;
    background: #080808;
    padding: 14px;
    position: relative;
  }
  .char-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: #111;
    border: 1px solid #222;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .char-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  .char-silhouette {
    opacity: 0.15;
  }
  .photo-label {
    font-family: 'VT323', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: #333;
    text-align: center;
  }
  .char-name {
    font-family: 'Special Elite', serif;
    font-size: 16px;
    color: var(--ghost-white);
    margin-bottom: 4px;
  }
  .char-role {
    font-family: 'VT323', monospace;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--pale-pink);
    margin-bottom: 10px;
  }
  .char-threat {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
  }
  .threat-label {
    font-family: 'VT323', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: #444;
    white-space: nowrap;
  }
  .threat-bar {
    flex: 1;
    height: 6px;
    background: #1a1a1a;
    position: relative;
  }
  .threat-fill {
    height: 100%;
    background: var(--deep-blue);
  }
  .threat-fill.medium { background: var(--pale-pink); }
  .threat-fill.low { background: var(--hot-pink); }
  .char-note {
    font-family: 'Courier Prime', monospace;
    font-size: 11px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #1e1e1e;
  }
  /* ===== BLINKING ===== */
  .blink {
    animation: blink 1.1s step-end infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  /* ===== FOOTER ===== */
  .site-footer {
    border-top: 1px solid #1a1a1a;
    margin-top: 48px;
    padding-top: 20px;
    text-align: center;
  }
  .footer-text {
    font-family: 'VT323', monospace;
    font-size: 14px;
    color: #333;
    letter-spacing: 3px;
    line-height: 1.8;
  }
  .footer-text a {
    color: var(--hot-pink);
    text-decoration: none;
  }
  .visitor-counter {
    display: inline-block;
    background: #050505;
    border: 1px solid #222;
    padding: 4px 12px;
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: var(--hot-pink);
    letter-spacing: 4px;
    margin-top: 12px;
  }
  /* ===== DIVIDER ===== */
  .divider {
    border: none;
    border-top: 1px solid #1a1a1a;
    margin: 32px 0;
    position: relative;
  }
  .divider::after {
    content: '* * *';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    padding: 0 12px;
    font-family: 'VT323', monospace;
    font-size: 14px;
    color: #333;
    letter-spacing: 4px;
  }
  /* ===== UPDATES LOG ===== */
  .updates-log {
    background: #050505;
    border: 1px solid #1a1a1a;
    padding: 16px 20px;
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    color: #555;
    line-height: 2;
    margin-bottom: 32px;
  }
  .log-entry { display: flex; gap: 16px; }
  .log-date { color: var(--hot-pink); white-space: nowrap; flex-shrink: 0; }
  .log-msg { color: #444; }
  .log-msg strong { color: #777; }
  /* ===== ALERT BOX ===== */
  .alert-box {
    border: 1px solid var(--deep-blue);
    background: #00000d;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-family: 'VT323', monospace;
    font-size: 16px;
    color: var(--deep-blue);
    letter-spacing: 2px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  /* MOBILE */
  @media (max-width: 600px) {
    .about-box { grid-template-columns: 1fr; }
    .sidebar-dossier { display: none; }
    .site-title { letter-spacing: 2px; }
  }