    @import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

    @font-face {
      font-family: 'DungGeunMo';
      src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/DungGeunMo.woff') format('woff');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    /* ─────────────────────────────────────────────
       BASE
    ───────────────────────────────────────────── */
    :root {
      --bg-0: #050508;
      --bg-1: #120a1f;
      --bg-2: #1d0930;
      --pink: #ff7be5;
      --pink-deep: #ff52d5;
      --mint: #4dffd8;
      --violet: #d27bff;
      --text-main: #f8f4fa;
      --text-soft: #c0b6cc;
      --panel: rgba(15, 15, 22, 0.62);
      --panel-strong: rgba(8, 8, 14, 0.84);
      --line-soft: rgba(255, 255, 255, 0.08);
      --shadow-pink: 0 20px 60px rgba(255, 123, 229, 0.15);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html {
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 123, 229, 0.85) rgba(7, 8, 12, 0.8);
    }
    ::-webkit-scrollbar {
      width: 12px;
      height: 12px;
    }
    ::-webkit-scrollbar-track {
      background: linear-gradient(180deg, rgba(8, 9, 13, 0.9), rgba(12, 9, 20, 0.82));
      border-left: 1px solid rgba(255, 255, 255, 0.08);
      background-size: 100% 200%;
      animation: scrollbar-track-shift 9s ease-in-out infinite;
    }
    ::-webkit-scrollbar-thumb {
      border-radius: 999px;
      border: 2px solid rgba(5, 5, 8, 0.92);
      background: linear-gradient(180deg, #ff7be5 0%, #d27bff 52%, #4dffd8 100%);
      background-size: 100% 220%;
      background-position: 0% 0%;
      box-shadow: 0 0 12px rgba(255, 123, 229, 0.35);
      animation: scrollbar-shift 5.8s ease-in-out infinite, scrollbar-glow 2.8s ease-in-out infinite;
    }
    ::-webkit-scrollbar-thumb:hover {
      box-shadow: 0 0 16px rgba(77, 255, 216, 0.42), 0 0 10px rgba(255, 123, 229, 0.46);
      filter: brightness(1.07);
    }
    @keyframes scrollbar-shift {
      0% { background-position: 0% 0%; }
      50% { background-position: 0% 100%; }
      100% { background-position: 0% 0%; }
    }
    @keyframes scrollbar-track-shift {
      0% { background-position: 0% 0%; }
      50% { background-position: 0% 100%; }
      100% { background-position: 0% 0%; }
    }
    @keyframes scrollbar-glow {
      0%, 100% {
        box-shadow: 0 0 10px rgba(255, 123, 229, 0.28);
      }
      50% {
        box-shadow: 0 0 16px rgba(77, 255, 216, 0.4), 0 0 12px rgba(255, 123, 229, 0.34);
      }
    }
    body {
      background:
        radial-gradient(1200px 600px at 80% -10%, rgba(210, 123, 255, 0.22), transparent 65%),
        radial-gradient(900px 500px at -10% 10%, rgba(77, 255, 216, 0.14), transparent 60%),
        radial-gradient(ellipse 120% 65% at 50% 0%, var(--bg-2) 0%, var(--bg-0) 58%),
        linear-gradient(180deg, var(--bg-0) 0%, #0b0611 100%);
      background-attachment: fixed;
      color: var(--text-main);
      font-family: 'Pretendard', sans-serif;
      overflow-x: hidden;
      cursor: auto;
      position: relative;
    }
    body.theme-orbit::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: 0.28;
      background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px),
        radial-gradient(circle at 30% 82%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.5px),
        radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.65) 0 1px, transparent 1.5px);
      animation: twinkle-grid 11s ease-in-out infinite alternate;
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: 0.35;
      background:
        radial-gradient(circle at 15% 30%, rgba(255, 123, 229, 0.15), transparent 45%),
        radial-gradient(circle at 88% 78%, rgba(77, 255, 216, 0.12), transparent 42%);
      animation: bg-orbit 22s ease-in-out infinite alternate;
    }
    @keyframes bg-orbit {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      100% { transform: translate3d(0, -18px, 0) scale(1.04); }
    }
    @keyframes twinkle-grid {
      0% { opacity: 0.2; transform: translate3d(0, 0, 0); }
      100% { opacity: 0.38; transform: translate3d(0, -10px, 0); }
    }
    ::selection { background: #ff7be5; color: #000; }
    a, button { -webkit-tap-highlight-color: transparent; }

    /* ─────────────────────────────────────────────
       CRT OVERLAYS
    ───────────────────────────────────────────── */
    .scanlines {
      position: fixed; inset: 0; z-index: 99998; pointer-events: none;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.14) 2px, rgba(0, 0, 0, 0.14) 4px);
      mix-blend-mode: soft-light;
      opacity: 0.7;
    }
    .vignette {
      position: fixed; inset: 0; z-index: 99997; pointer-events: none;
      background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
    }

    /* ─────────────────────────────────────────────
       LOADER
    ───────────────────────────────────────────── */
    #loader {
      position: fixed; inset: 0; background: #050508;
      z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center;
      transition: transform 1s cubic-bezier(0.85,0,0.15,1), opacity 1s ease;
    }

    /* LOG face (0_0) */
    .log-face { position: relative; }
    .log-eye {
      position: absolute; top: 0; border: solid #FF7BE5; box-sizing: border-box; border-radius: 50px;
      box-shadow: 0 0 15px rgba(255,123,229,0.6), inset 0 0 8px rgba(255,123,229,0.4); transform-origin: center;
    }
    .log-mouth {
      position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
      background: #FF7BE5; border-radius: 50px; box-shadow: 0 0 15px rgba(255,123,229,0.6);
    }
    #loader .log-face { width: 84px; height: 44px; }
    #loader .log-eye { width: 22px; height: 44px; border-width: 6px; animation: blink-eye 4s infinite ease-in-out; }
    #loader .log-eye.left { left: 0; }
    #loader .log-eye.right { right: 0; }
    #loader .log-mouth { width: 18px; height: 6px; }

    @keyframes blink-eye {
      0%, 45%, 55%, 100% { height: 44px; transform: translateY(0); border-width: 6px; background: transparent; }
      50% { height: 6px; transform: translateY(19px); border-width: 0px; background: #FF7BE5; }
    }

    #loader .log-face-container { animation: float-face 3s ease-in-out infinite; margin-bottom: 3rem; }
    @keyframes float-face { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

    #loader .log-face.happy .log-eye,
    #loader .log-face.happy .log-mouth { display: none; }
    .happy-eyes {
      display: none; font-family: 'VT323', monospace; font-size: 5rem; color: #FF7BE5;
      text-shadow: 0 0 20px rgba(255,123,229,0.8); line-height: 0.8;
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    }
    #loader .log-face.happy .happy-eyes { display: block; animation: bounce 0.5s ease; }
    @keyframes bounce { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,-65%)} }

    .typewriter-text {
      font-family: 'VT323', monospace; color: #FF7BE5; font-size: 1.8rem;
      text-align: center; text-shadow: 0 0 10px rgba(255,123,229,0.5);
      min-height: 5rem; line-height: 1.4; letter-spacing: 1px;
    }
    .cursor-blink::after { content: '█'; animation: blink 1s step-end infinite; }
    @keyframes blink { 50%{opacity:0} }

    /* ─────────────────────────────────────────────
       CANVAS PARTICLES (z-index -3)
    ───────────────────────────────────────────── */
    #particle-canvas { position: fixed; inset: 0; z-index: -3; pointer-events: none; }

    /* ─────────────────────────────────────────────
       AMBIENT GLOW BLOBS
    ───────────────────────────────────────────── */
    .glow { position: fixed; border-radius: 50%; filter: blur(160px); z-index: -2; pointer-events: none; mix-blend-mode: screen; }
    .glow-a { background: #ff7be5; width: 70vw; height: 70vw; top: -20vw; left: -20vw; opacity: 0.13; animation: gfloat-a 18s ease-in-out infinite alternate; }
    .glow-b { background: #8a3dff; width: 50vw; height: 50vw; bottom: -15vw; right: -15vw; opacity: 0.1; animation: gfloat-b 22s ease-in-out infinite alternate-reverse; }
    @keyframes gfloat-a {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      100% { transform: translate3d(35px, -65px, 0) scale(1.08); }
    }
    @keyframes gfloat-b {
      0% { transform: translate3d(0, 0, 0) scale(1); }
      100% { transform: translate3d(-20px, -48px, 0) scale(0.94); }
    }

    /* ─────────────────────────────────────────────
       CUSTOM CURSOR
    ───────────────────────────────────────────── */
    #cursor-planet,
    #cursor-ring {
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
      display: none;
    }

    @media (hover: hover) and (pointer: fine) {
      body { cursor: none; }

      #cursor-planet {
        width: 8px; height: 8px; background: #ff7be5; border-radius: 50%;
        position: fixed; display: block;
        box-shadow: 0 0 12px rgba(255, 123, 229, 0.9);
        transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.3s, background 0.3s;
      }
      #cursor-ring {
        width: 38px; height: 38px; border: 1px dashed rgba(255, 123, 229, 0.4); border-radius: 50%;
        position: fixed; display: flex; align-items: center; justify-content: center;
        animation: orbit-spin 10s linear infinite;
      }
      #cursor-satellite { position: absolute; width: 100%; height: 100%; border-radius: 50%; animation: spin-sat 2s linear infinite; opacity: 0; transition: opacity 0.3s; }
      #cursor-satellite::after {
        content: ''; position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
        width: 6px; height: 6px; background: #ff7be5; border-radius: 50%;
        box-shadow: 0 0 8px #ff7be5;
      }
      #cursor-ring::before {
        content: ''; position: absolute; width: 155%; height: 28%; border: 2px solid rgba(255, 123, 229, 0.4); border-radius: 50%;
        transform: rotate(-20deg); opacity: 0; transition: opacity 0.3s; pointer-events: none;
      }
      @supports selector(body:has(*)) {
        body:has(.hover-target:hover) #cursor-planet {
          width: 28px; height: 28px;
          background: radial-gradient(circle at 30% 30%, #ff7be5, #8a3dff);
          box-shadow: inset -3px -3px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 123, 229, 0.6);
        }
        body:has(.hover-target:hover) #cursor-ring {
          width: 58px; height: 20px; border: 2px solid rgba(255, 123, 229, 0.4); border-top-color: transparent;
          transform: translate(-50%, -50%) rotate(-20deg); animation: ring-wob 2s ease-in-out infinite alternate;
        }
        body:has(.hover-target:hover) #cursor-ring::before { opacity: 1; }
        body:has(.hover-target:hover) #cursor-satellite { opacity: 1; }
      }
    }
    @media (hover: none), (pointer: coarse) {
      #cursor-planet,
      #cursor-ring { display: none !important; }
    }
    @keyframes orbit-spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
    @keyframes spin-sat { 100% { transform: rotate(360deg); } }
    @keyframes ring-wob {
      0% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); }
      100% { transform: translate(-50%, -50%) rotate(-25deg) scale(1.05); }
    }

    /* ─────────────────────────────────────────────
       HEADER STATUS BAR
    ───────────────────────────────────────────── */
    .status-bar {
      background: linear-gradient(90deg, rgba(255, 123, 229, 0.08), rgba(210, 123, 255, 0.04));
      border-bottom: 1px solid rgba(255, 123, 229, 0.15);
      padding: 4px 24px; display: flex; align-items: center; gap: 24px;
      font-family: 'VT323', monospace; font-size: 1rem; color: #b5abc1; letter-spacing: 0.1em;
      overflow: hidden; white-space: nowrap;
      backdrop-filter: blur(8px);
    }
    .status-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff7be5; animation: pulse-dot 1.5s ease-in-out infinite; flex-shrink: 0; }
    @keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(255,123,229,0.6)} 50%{box-shadow:0 0 0 5px rgba(255,123,229,0)} }

    header > .px-4 {
      background: linear-gradient(180deg, rgba(8, 8, 14, 0.84), rgba(8, 8, 14, 0.68));
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38);
    }
    .nav-link {
      position: relative;
      letter-spacing: 0.03em;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -6px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, #ff7be5, #4dffd8);
      transform: translateX(-50%);
      transition: width 0.28s ease;
    }
    .nav-link:hover::after,
    .nav-link[aria-current='page']::after {
      width: 100%;
    }

    /* ─────────────────────────────────────────────
       TECH FRAME (pink-dominant corners)
    ───────────────────────────────────────────── */
    .tech-frame {
      border: 1px solid rgba(255,255,255,0.07);
      background: linear-gradient(180deg, rgba(20, 20, 30, 0.62), rgba(7, 7, 12, 0.62));
      backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
      position: relative; overflow: hidden;
      box-shadow: 0 14px 42px rgba(0, 0, 0, 0.58), inset 0 0 0 1px rgba(255,255,255,0.04);
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.1s;
      transform-style: preserve-3d;
    }
    .tech-frame::before {
      content: ''; position: absolute; top: -1px; left: -1px; width: 28px; height: 28px;
      border-top: 3px solid #ff7be5; border-left: 3px solid #ff7be5;
      border-radius: 14px 0 0 0; z-index: 2; pointer-events: none; transition: all 0.3s;
    }
    .tech-frame::after {
      content: ''; position: absolute; bottom: -1px; right: -1px; width: 28px; height: 28px;
      border-bottom: 3px solid rgba(77, 255, 216, 0.45); border-right: 3px solid rgba(77, 255, 216, 0.45);
      border-radius: 0 0 14px 0; z-index: 2; pointer-events: none; transition: all 0.3s;
    }
    .tech-frame:hover {
      border-color: rgba(255,123,229,0.32);
      box-shadow: 0 24px 58px rgba(0,0,0,0.82), 0 0 35px rgba(255,123,229,0.14), inset 0 0 0 1px rgba(255,123,229,0.15);
    }
    .tech-frame:hover::before { border-color: #ff7be5; width: 38px; height: 38px; }
    .tech-frame:hover::after { border-color: #4dffd8; width: 38px; height: 38px; opacity: 1; }
    .tech-frame-inner { transform: translateZ(20px); }

    /* ─────────────────────────────────────────────
       HERO POLISH
    ───────────────────────────────────────────── */
    .hero-orbit::before {
      content: '';
      position: absolute;
      width: min(72vw, 860px);
      height: min(72vw, 860px);
      left: 50%;
      top: 18%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 123, 229, 0.2) 0%, rgba(255, 123, 229, 0) 70%);
      filter: blur(30px);
      pointer-events: none;
      z-index: -1;
      animation: hero-halo 9s ease-in-out infinite alternate;
    }
    @keyframes hero-halo {
      0% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
      100% { opacity: 0.85; transform: translate(-50%, -52%) scale(1.08); }
    }
    .hero-copy-panel {
      position: relative;
      padding: clamp(1.1rem, 2.2vw, 2rem);
      border-radius: 28px;
      background: linear-gradient(145deg, rgba(255, 123, 229, 0.1), rgba(20, 18, 33, 0.55));
      border: 1px solid rgba(255, 255, 255, 0.11);
      box-shadow: var(--shadow-pink), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(10px);
    }
    .hero-copy-panel::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 75%, rgba(77, 255, 216, 0.1));
      mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
      -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
      mask-composite: exclude;
      -webkit-mask-composite: xor;
      padding: 1px;
    }
    .hero-stats > .text-center {
      min-width: 110px;
      padding: 0.35rem 0.4rem;
      border-radius: 14px;
      background: rgba(0, 0, 0, 0.26);
      border: 1px solid rgba(255, 255, 255, 0.09);
      backdrop-filter: blur(8px);
    }
    .hero-transmission-wrap {
      perspective: 1200px;
    }
    .transmission-core::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent 24%, transparent 76%, rgba(77, 255, 216, 0.08));
      mix-blend-mode: screen;
      z-index: 1;
    }
    .transmission-meta p {
      box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
    }
    .transmission-player {
      position: absolute;
      inset: 0;
      z-index: 35;
      background: #000;
    }
    .transmission-close-btn {
      position: absolute;
      top: 0.8rem;
      right: 0.8rem;
      z-index: 40;
      border: 1px solid rgba(255, 255, 255, 0.38);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.72);
      color: #ffffff;
      font-family: 'VT323', monospace;
      font-size: 1.05rem;
      letter-spacing: 0.08em;
      padding: 0.28rem 0.78rem;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .transmission-close-btn:hover {
      background: rgba(255, 123, 229, 0.32);
      transform: translateY(-1px);
    }
    #latest-transmission-card.is-playing #latest-transmission-play,
    #video-featured-card.is-playing #video-featured-play {
      opacity: 0;
      pointer-events: none;
      transform: scale(0.9);
    }
    #latest-transmission-card.is-playing .planet-1 {
      opacity: 0;
    }

    /* ─────────────────────────────────────────────
       HOME PHOTO COLLAGE
    ───────────────────────────────────────────── */
    .home-photo-board {
      isolation: isolate;
      border-radius: 34px;
    }
    .home-photo-board::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 34px;
      z-index: -1;
      background:
        linear-gradient(155deg, rgba(255, 123, 229, 0.14), rgba(11, 11, 18, 0.75) 48%, rgba(77, 255, 216, 0.1)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 24px 52px rgba(0, 0, 0, 0.46);
    }
    .home-collage-photo {
      transform: rotate(-1.35deg);
      transition: transform 0.35s ease;
      transform-origin: 18% 8%;
    }
    .home-collage-photo:hover {
      transform: rotate(-0.45deg) translateY(-3px);
    }
    .home-collage-photo::before,
    .home-collage-photo::after {
      content: '';
      position: absolute;
      top: -12px;
      width: 72px;
      height: 18px;
      border-radius: 4px;
      z-index: 25;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(248, 242, 232, 0.95), rgba(227, 216, 201, 0.78));
      border: 1px solid rgba(53, 43, 33, 0.22);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.26);
      opacity: 0.9;
    }
    .home-collage-photo::before {
      left: 9%;
      transform: rotate(-8deg);
    }
    .home-collage-photo::after {
      right: 8%;
      transform: rotate(7deg);
    }
    .home-collage-photo .transmission-core {
      border-color: rgba(248, 241, 230, 0.9);
      box-shadow:
        0 26px 56px rgba(0, 0, 0, 0.58),
        0 0 0 7px rgba(248, 241, 230, 0.92),
        0 16px 0 7px rgba(248, 241, 230, 0.92);
    }
    .home-collage-photo .transmission-core::before,
    .home-collage-photo .transmission-core::after {
      display: none;
    }
    .home-collage-note.tech-frame::before,
    .home-collage-note.tech-frame::after {
      display: none;
    }
    .home-collage-note {
      box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.62),
        0 0 0 6px rgba(246, 237, 225, 0.9),
        0 12px 0 6px rgba(246, 237, 225, 0.9);
      transition: transform 0.32s ease;
    }
    .home-collage-note-left {
      transform: rotate(-1.15deg);
    }
    .home-collage-note-right {
      transform: rotate(1.3deg);
    }
    .home-collage-note:hover {
      transform: rotate(0deg) translateY(-4px);
    }
    .home-collage-note .tech-frame-inner {
      border-color: rgba(255, 255, 255, 0.12);
    }

    /* ─────────────────────────────────────────────
       SUBPAGE SYSTEM
    ───────────────────────────────────────────── */
    .subpage-shell {
      position: relative;
    }
    .subpage-shell::before {
      content: '';
      position: absolute;
      inset: 80px 0 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.38;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 32px 32px;
      -webkit-mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1) 65%, transparent 85%);
      mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1) 65%, transparent 85%);
    }
    .subpage-shell > * {
      position: relative;
      z-index: 1;
    }

    .page-heading-panel {
      position: relative;
      padding: clamp(1rem, 1.8vw, 1.6rem) clamp(1rem, 2.3vw, 1.9rem);
      border-radius: 26px;
      background: linear-gradient(140deg, rgba(255, 123, 229, 0.12), rgba(8, 8, 14, 0.64));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
      overflow: hidden;
    }
    .page-heading-panel > * {
      position: relative;
      z-index: 2;
    }
    .page-heading-panel::before {
      content: 'KITSCH MODE';
      position: absolute;
      top: 0.6rem;
      right: 0.8rem;
      z-index: 3;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.42);
      background: rgba(8, 8, 12, 0.72);
      color: #4dffd8;
      font-family: 'VT323', monospace;
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      transform: rotate(3deg);
      box-shadow: 0 0 16px rgba(77, 255, 216, 0.22);
    }
    .page-heading-panel::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.11), transparent 23%, transparent 78%, rgba(77, 255, 216, 0.09)),
        radial-gradient(circle at 90% 14%, rgba(255, 123, 229, 0.2), transparent 44%);
      mix-blend-mode: screen;
    }
    body[data-page='video'] .page-heading-panel::before {
      content: 'VIDEO FEED';
    }
    body[data-page='release'] .page-heading-panel::before {
      content: 'RELEASE LOG';
      color: #ff7be5;
      box-shadow: 0 0 16px rgba(255, 123, 229, 0.22);
    }
    body[data-page='archive'] .page-heading-panel::before {
      display: none;
    }
    body[data-page='archive'] .page-heading-panel::after {
      display: none;
    }
    body[data-page='biography'] .page-heading-panel::before {
      content: 'BIO PROFILE';
    }
    body[data-page='lore'] .page-heading-panel::before {
      content: 'WORLD LORE';
    }
    body[data-page='goods'] .page-heading-panel::before {
      content: 'MERCH DROP';
      color: #ffcf7b;
      box-shadow: 0 0 16px rgba(255, 207, 123, 0.25);
    }
    body[data-page='contact'] .page-heading-panel::before {
      content: 'OPEN CHANNEL';
    }

    body[data-page='lore'] .lore-orbit-line {
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 10px 12px;
    }
    body[data-page='lore'] .lore-orbit-chip {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.68rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #b8e9ff;
      background: linear-gradient(120deg, rgba(77, 255, 216, 0.08), rgba(13, 14, 18, 0.8));
      font-family: 'VT323', monospace;
      letter-spacing: 0.06em;
      font-size: 0.95rem;
      margin-right: 0.3rem;
      white-space: nowrap;
    }
    body[data-page='lore'] .lore-status-board {
      background: linear-gradient(165deg, rgba(255, 123, 229, 0.08), rgba(8, 8, 14, 0.76));
    }
    body[data-page='lore'] .lore-status-line {
      display: flex;
      justify-content: space-between;
      gap: 0.8rem;
      padding: 0.72rem 0.85rem;
      margin-bottom: 0.6rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.32);
      color: #ffffff;
      font-size: 0.92rem;
      letter-spacing: 0.05em;
    }
    body[data-page='lore'] .lore-status-line span:last-child {
      color: #ffb7ea;
      text-align: right;
      font-weight: 700;
    }
    body[data-page='lore'] .lore-status-line span:first-child {
      color: #bdb6de;
    }

    .lore-quote {
      padding-left: 0.8rem;
      border-left: 3px solid #ff7be5;
      color: #fff;
      font-weight: 700;
      margin-top: 0.9rem;
      line-height: 1.5;
      text-shadow: 0 0 16px rgba(255, 123, 229, 0.28);
    }
    .lore-bullets p {
      position: relative;
      padding-left: 1rem;
      margin-bottom: 0.7rem;
      color: #d6cce2;
      font-size: 0.98rem;
    }
    .lore-bullets p::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.68rem;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      transform: translateY(-50%);
      background: #4dffd8;
      box-shadow: 0 0 0 4px rgba(77, 255, 216, 0.2);
    }

    .lore-character-card {
      position: relative;
      overflow: hidden;
      background: linear-gradient(155deg, rgba(11, 11, 18, 0.75), rgba(12, 8, 20, 0.45));
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 22px;
      padding: 1.2rem 1.25rem;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }
    .lore-character-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, rgba(255, 123, 229, 0.9), rgba(255, 123, 229, 0.1));
      pointer-events: none;
    }
    .lore-character-card:nth-child(2)::before {
      background: linear-gradient(90deg, rgba(77, 255, 216, 0.9), rgba(77, 255, 216, 0.1));
    }
    .lore-character-head {
      display: grid;
      grid-template-columns: 168px minmax(0, 1fr);
      gap: 1.2rem;
      align-items: start;
    }
    .lore-character-meta {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      flex: 1;
      min-width: 0;
    }
    .lore-character-card-log .lore-character-head {
      grid-template-columns: minmax(0, 1fr) 168px;
    }
    .lore-character-card-log .lore-character-meta {
      grid-column: 1;
      text-align: right;
    }
    .lore-character-card-log .lore-portrait-wrap {
      grid-column: 2;
      justify-self: end;
    }
    .lore-character-card-log .lore-character-quotes {
      width: 100%;
    }
    .lore-character-card-log .lore-character-quotes p {
      border-left: 0;
      border-right: 2px solid rgba(77, 255, 216, 0.4);
      background: linear-gradient(240deg, rgba(77, 255, 216, 0.08), rgba(7, 8, 12, 0.42));
      text-align: right;
    }
    .lore-character-card-log .lore-character-quotes p:first-child {
      background: linear-gradient(240deg, rgba(77, 255, 216, 0.14), rgba(7, 8, 12, 0.52));
    }
    .lore-character-name {
      line-height: 1;
      letter-spacing: 0.04em;
      text-shadow: 0 0 12px rgba(255, 123, 229, 0.35);
    }
    .lore-character-role {
      line-height: 1.2;
      font-size: clamp(1.34rem, 2.3vw, 1.9rem);
    }
    .lore-portrait-wrap {
      width: 168px;
      aspect-ratio: 9 / 16;
      border-radius: 18px;
      border: 2px solid rgba(255, 255, 255, 0.25);
      overflow: hidden;
      flex-shrink: 0;
      align-self: center;
      position: relative;
    }
    .lore-portrait-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 40px rgba(255, 123, 229, 0.35);
      pointer-events: none;
    }
    .lore-portrait-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .lore-character-quotes {
      display: grid;
      gap: 0.5rem;
    }
    .lore-character-quotes p {
      color: #d8cee7;
      font-size: 0.92rem;
      line-height: 1.6;
      margin: 0;
      padding: 0.5rem 0.68rem;
      border-left: 2px solid rgba(255, 123, 229, 0.36);
      border-radius: 10px;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(7, 8, 12, 0.42));
    }
    .lore-character-quotes p:first-child {
      color: #f6edff;
      font-weight: 700;
      background: linear-gradient(120deg, rgba(255, 123, 229, 0.14), rgba(7, 8, 12, 0.52));
    }

    .lore-scene {
      background:
        linear-gradient(150deg, rgba(255, 123, 229, 0.07), rgba(9, 10, 14, 0.78)),
        radial-gradient(circle at 100% 0%, rgba(77, 255, 216, 0.08), transparent 45%);
    }
    .lore-line {
      display: block;
      border-radius: 12px;
      padding: 0.74rem 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.09);
      background: rgba(0, 0, 0, 0.32);
      margin-bottom: 0.56rem;
      font-size: 0.93rem;
      line-height: 1.6;
      color: #d9d0e6;
      letter-spacing: 0.01em;
    }
    .lore-line span {
      display: inline-block;
      width: 5.5rem;
      font-family: 'VT323', monospace;
      color: #ff7be5;
      font-size: 1.1rem;
      margin-right: 0.6rem;
    }
    .lore-line.log-line span { color: #4dffd8; }
    .lore-line.elly-line span { color: #ffb6f0; }

    .lore-orbit-line {
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 0.25rem 0;
    }
    .lore-orbit-line::before {
      content: '';
      position: absolute;
      left: -1%;
      right: -1%;
      top: 50%;
      height: 1px;
      background: linear-gradient(90deg, rgba(77, 255, 216, 0.1), rgba(255, 123, 229, 0.7), rgba(77, 255, 216, 0.1));
      opacity: 0.65;
      z-index: 0;
    }
    .lore-orbit-line * {
      position: relative;
      z-index: 1;
    }

    .page-video .mission-spotlight {
      isolation: isolate;
    }
    .page-video .video-featured-scan {
      position: absolute;
      top: -35%;
      left: -45%;
      width: 42%;
      height: 170%;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(120deg, transparent 0%, rgba(77, 255, 216, 0.1) 45%, rgba(255, 123, 229, 0.12) 58%, transparent 100%);
      filter: blur(1px);
      transform: translateX(-130%) rotate(8deg);
      animation: video-featured-scan 6.2s ease-in-out infinite;
    }
    .page-video .video-featured-orbit {
      position: absolute;
      top: 23%;
      left: 50%;
      width: 3.25rem;
      height: 3.25rem;
      z-index: 12;
      pointer-events: none;
      animation: video-featured-orbit 5.4s ease-in-out infinite;
    }
    .page-video .video-featured-orbit svg {
      width: 100%;
      height: 100%;
      display: block;
      filter: drop-shadow(0 0 10px rgba(210, 123, 255, 0.45));
    }
    .page-video .video-featured-meta {
      animation: video-featured-meta-float 4.4s ease-in-out infinite;
    }
    .page-video .video-featured-frame::before,
    .page-video .video-featured-frame::after {
      display: none;
    }
    .page-video .signal-chip.tech-frame::before,
    .page-video .signal-chip.tech-frame::after {
      display: none;
    }
    .signal-grid .signal-chip {
      position: relative;
      background: linear-gradient(160deg, rgba(255, 123, 229, 0.1), rgba(7, 8, 12, 0.66));
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      overflow: hidden;
    }
    .signal-grid .signal-chip::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%);
      opacity: 0.8;
    }
    @keyframes video-featured-scan {
      0% {
        transform: translateX(-130%) rotate(8deg);
        opacity: 0;
      }
      18% {
        opacity: 1;
      }
      55% {
        opacity: 0.8;
      }
      100% {
        transform: translateX(360%) rotate(8deg);
        opacity: 0;
      }
    }
    @keyframes video-featured-orbit {
      0%, 100% {
        transform: translateX(-58%) translateY(0) rotate(-3deg);
      }
      50% {
        transform: translateX(-64%) translateY(-11px) rotate(6deg);
      }
    }
    @keyframes video-featured-meta-float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-4px);
      }
    }
    .signal-grid .signal-chip:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(77, 255, 216, 0.15);
    }
    .video-feed-thumb {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(0, 0, 0, 0.6);
      aspect-ratio: 16 / 9;
      display: block;
    }
    .video-feed-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease, opacity 0.5s ease;
      opacity: 0.88;
    }
    .signal-chip:hover .video-feed-thumb img {
      transform: scale(1.04);
      opacity: 1;
    }
    .video-feed-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(3, 4, 7, 0.78), rgba(3, 4, 7, 0.08));
      pointer-events: none;
    }
    .video-feed-time {
      position: absolute;
      right: 0.8rem;
      bottom: 0.8rem;
      z-index: 2;
      padding: 0.12rem 0.45rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(0, 0, 0, 0.72);
      color: #ffffff;
      font-family: 'VT323', monospace;
      font-size: 1rem;
      letter-spacing: 0.05em;
    }
    .video-feed-title {
      margin-top: 0.85rem;
      font-size: 1.02rem;
      line-height: 1.45;
      color: #ffffff;
      font-weight: 700;
    }
    .video-feed-meta {
      margin-top: 0.35rem;
      color: rgba(255, 255, 255, 0.58);
      font-family: 'VT323', monospace;
      font-size: 1.05rem;
      letter-spacing: 0.07em;
    }

    .release-stream {
      position: relative;
      padding-left: 1.2rem;
    }
    .release-stream::before {
      content: '';
      position: absolute;
      left: 0.18rem;
      top: 0.5rem;
      bottom: 0.5rem;
      width: 2px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255, 123, 229, 0.85), rgba(77, 255, 216, 0.6));
      box-shadow: 0 0 16px rgba(255, 123, 229, 0.3);
    }
    .release-item {
      position: relative;
      margin-left: 0.8rem;
      background: linear-gradient(150deg, rgba(255, 123, 229, 0.09), rgba(9, 10, 14, 0.68));
      transition: transform 0.26s ease, box-shadow 0.26s ease;
    }
    .release-item::before {
      content: '';
      position: absolute;
      left: -1.25rem;
      top: 1.95rem;
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: radial-gradient(circle, #ff7be5 0%, #ff7be5 38%, #221126 40%);
      border: 1px solid rgba(255, 255, 255, 0.42);
      box-shadow: 0 0 14px rgba(255, 123, 229, 0.44);
    }
    .release-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 123, 229, 0.2);
    }
    .release-item-body {
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 1rem;
      align-items: start;
    }
    .release-cover {
      width: 96px;
      height: 96px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(0, 0, 0, 0.55);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42);
    }
    .release-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .release-details {
      min-width: 0;
    }
    .release-meta-line {
      margin-top: 0.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
    }
    .release-pill {
      border-radius: 999px;
      border: 1px solid rgba(255, 123, 229, 0.42);
      background: rgba(255, 123, 229, 0.14);
      color: #ffb1f2;
      font-family: 'VT323', monospace;
      font-size: 1rem;
      letter-spacing: 0.08em;
      padding: 0.12rem 0.56rem;
    }
    .release-link {
      margin-top: 0.85rem;
      display: inline-flex;
    }
    .release-date {
      display: inline-flex;
      align-items: center;
      padding: 0.22rem 0.62rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 123, 229, 0.4);
      background: rgba(255, 123, 229, 0.12);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .archive-album-wall {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .archive-album-card {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      background: linear-gradient(158deg, rgba(255, 123, 229, 0.11), rgba(8, 10, 14, 0.76));
      box-shadow: 0 20px 44px rgba(255, 123, 229, 0.14);
    }
    .archive-album-cover {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      min-height: 220px;
      background: #0a0d14;
      isolation: isolate;
    }
    .archive-album-cover::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8, 10, 16, 0.02), rgba(8, 10, 16, 0.66));
      pointer-events: none;
      z-index: 1;
    }
    .archive-album-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 16 / 9;
      display: block;
      transition: transform 0.7s ease;
    }
    .archive-album-card:hover .archive-album-image {
      transform: scale(1.06);
    }
    .archive-album-code {
      position: absolute;
      top: 0.9rem;
      left: 0.9rem;
      z-index: 2;
      border-radius: 10px;
      border: 1px solid rgba(255, 123, 229, 0.55);
      background: rgba(5, 7, 11, 0.72);
      color: #ff7be5;
      padding: 0.3rem 0.6rem;
      font-family: 'VT323', monospace;
      font-size: 1.1rem;
      letter-spacing: 0.08em;
      line-height: 1;
    }
    .archive-album-open {
      position: absolute;
      right: 0.9rem;
      bottom: 0.9rem;
      z-index: 2;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(0, 0, 0, 0.48);
      color: #f8f8ff;
      padding: 0.2rem 0.7rem;
      font-family: 'VT323', monospace;
      font-size: 1rem;
      letter-spacing: 0.08em;
      line-height: 1.2;
    }
    .archive-album-meta {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      padding: 1rem 1.1rem;
      background: linear-gradient(150deg, rgba(12, 14, 23, 0.7), rgba(8, 10, 16, 0.44));
    }
    .archive-album-meta::before {
      content: '';
      position: absolute;
      width: 110px;
      height: 110px;
      right: -35px;
      top: -35px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(255, 123, 229, 0.25), rgba(255, 123, 229, 0));
      pointer-events: none;
    }
    .archive-album-featured {
      box-shadow: 0 24px 58px rgba(255, 123, 229, 0.2);
    }
    .archive-album-featured .archive-album-cover {
      min-height: 300px;
    }
    @media (min-width: 960px) {
      .archive-album-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .archive-album-featured {
        grid-column: 1 / -1;
      }
    }
    @media (min-width: 1280px) {
      .archive-album-featured .archive-album-cover {
        min-height: 360px;
      }
    }

    .goods-callout {
      background: linear-gradient(160deg, rgba(255, 123, 229, 0.1), rgba(8, 9, 12, 0.7));
      box-shadow: 0 24px 52px rgba(255, 123, 229, 0.14);
    }
    .contact-form-shell {
      background: linear-gradient(165deg, rgba(255, 123, 229, 0.08), rgba(8, 9, 13, 0.74));
    }

    /* ─────────────────────────────────────────────
       SECTION GLITCH EFFECT (on scroll entry)
    ───────────────────────────────────────────── */
    @keyframes section-glitch {
      0%   { clip-path: inset(0 0 100% 0); transform: skewX(0deg); }
      10%  { clip-path: inset(0 0 90% 0);  transform: skewX(-3deg); color: #4DFFD8; }
      25%  { clip-path: inset(0 0 60% 0);  transform: skewX(3deg); }
      50%  { clip-path: inset(0 0 20% 0);  transform: skewX(-1deg); color: #FF7BE5; }
      80%  { clip-path: inset(0 0 5% 0);   transform: skewX(0.5deg); }
      100% { clip-path: inset(0 0 0 0);    transform: skewX(0deg); }
    }
    .glitch-reveal { animation: section-glitch 0.5s ease-out forwards; }

    /* ─────────────────────────────────────────────
       GLITCH TEXT HOVER
    ───────────────────────────────────────────── */
    .hero-main-copy .hero-copy-line {
      display: inline-block;
      white-space: nowrap;
    }
    @media (max-width: 640px) {
      .hero-main-copy .hero-copy-line.hero-copy-line-mobile-break {
        white-space: pre-line;
      }
    }
    .hero-main-copy .hero-copy-line.is-typing::after {
      content: '▌';
      display: inline-block;
      margin-left: 0.08em;
      color: rgba(255, 255, 255, 0.85);
      animation: hero-type-caret 0.9s steps(1, end) infinite;
      transform: translateY(-0.03em);
    }
    .hero-main-copy .hero-copy-line-bottom.typing-complete {
      animation: hero-copy-pulse 3.2s ease-in-out 0.8s infinite both;
    }
    @keyframes hero-type-caret {
      0%, 49% { opacity: 1; }
      50%, 100% { opacity: 0; }
    }
    @keyframes hero-copy-pulse {
      0%, 100% {
        text-shadow: 0 0 10px rgba(255, 123, 229, 0.25);
      }
      50% {
        text-shadow: 0 0 18px rgba(255, 123, 229, 0.55), 0 0 28px rgba(77, 255, 216, 0.25);
      }
    }
    .glitch-text { position: relative; display: inline-block; }
    .glitch-text:hover::before {
      content: attr(data-text); position: absolute; left: 2px; top: 0; color: #fff;
      background: #050508; overflow: hidden; text-shadow: -2px 0 #FF7BE5;
      clip: rect(0,900px,0,0); animation: ga 1.5s infinite linear alternate-reverse;
    }
    .glitch-text:hover::after {
      content: attr(data-text); position: absolute; left: -2px; top: 0; color: #fff;
      background: transparent; overflow: hidden; text-shadow: -2px 0 #4DFFD8;
      clip: rect(0,900px,0,0); animation: gb 2s infinite linear alternate-reverse;
    }
    @keyframes ga { 0%{clip:rect(44px,9999px,56px,0)} 100%{clip:rect(12px,9999px,34px,0)} }
    @keyframes gb { 0%{clip:rect(15px,9999px,80px,0)} 100%{clip:rect(40px,9999px,10px,0)} }

    /* ─────────────────────────────────────────────
       FLOATING PLANETS (hero background)
    ───────────────────────────────────────────── */
    .planet { position: absolute; pointer-events: none; z-index: 10; }
    .planet-1 { animation: pfloat1 8s ease-in-out infinite; }
    @keyframes pfloat1 { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-15px) rotate(5deg)} }

    /* ─────────────────────────────────────────────
       MUSIC PLAYER
    ───────────────────────────────────────────── */
    .music-vis { position: relative; width: 52px; height: 52px; flex-shrink: 0; }
    .audio-wave {
      position: absolute; border-radius: 50%; top: 50%; left: 50%;
      transform: translate(-50%,-50%); opacity: 0; width: 100%; height: 100%;
      z-index: 0; border: 2px solid transparent; pointer-events: none;
    }
    .playing-waves .audio-wave { animation: wave-ripple 2.5s infinite cubic-bezier(0.36,0.11,0.89,0.32); }
    .playing-waves .wave-1 { border-color: #FF7BE5; animation-delay: 0s; }
    .playing-waves .wave-2 { border-color: #D27BFF; animation-delay: 0.8s; }
    .playing-waves .wave-3 { border-color: #4DFFD8; animation-delay: 1.6s; }
    @keyframes wave-ripple { 0%{width:52px;height:52px;opacity:0.9;border-width:3px} 100%{width:130px;height:130px;opacity:0;border-width:0} }

    .lp-record { width:100%;height:100%;border-radius:50%;background:#111;border:2px solid #333;display:flex;align-items:center;justify-content:center;position:relative;box-shadow:0 4px 15px rgba(0,0,0,0.8);overflow:hidden;z-index:10;transition:border-color 0.3s, box-shadow 0.3s; }
    .lp-spin { position:absolute;inset:0;border-radius:50%;display:flex;align-items:center;justify-content:center; }
    .lp-grooves { position:absolute;inset:0;border-radius:50%;background:repeating-radial-gradient(#111,#111 2px,#222 3px,#222 4px); }
    .lp-label { width:20px;height:20px;background:#FF7BE5;border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative;z-index:10; }
    .lp-hole { width:4px;height:4px;background:#050508;border-radius:50%; }
    .lp-record.playing { border-color:#FF7BE5; box-shadow:0 0 20px rgba(255,123,229,0.5); }
    .lp-record.playing .lp-spin { animation: spin 2.5s linear infinite; }
    @keyframes spin { 100%{transform:rotate(360deg)} }

    /* Track title marquee when playing */
    .track-scroll { animation: track-marquee 6s linear infinite; }
    @keyframes track-marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-100%)} }

    /* ─────────────────────────────────────────────
       SECTION DIVIDER (pixel art style)
    ───────────────────────────────────────────── */
    .pixel-divider {
      position: relative; display: flex; align-items: center; gap: 12px; padding: 0 24px;
      font-family: 'VT323', monospace; font-size: 1rem; color: rgba(255,123,229,0.3); letter-spacing: 0.2em;
      overflow: hidden;
    }
    .pixel-divider::before, .pixel-divider::after {
      content: ''; flex: 1; height: 1px;
      background: repeating-linear-gradient(90deg, rgba(255,123,229,0.2) 0, rgba(255,123,229,0.2) 6px, transparent 6px, transparent 12px);
    }

    /* ─────────────────────────────────────────────
       MARQUEE
    ───────────────────────────────────────────── */
    .marquee { overflow: hidden; white-space: nowrap; padding: 12px 0; background: rgba(255,123,229,0.04); border-top: 1px solid rgba(255,123,229,0.1); border-bottom: 1px solid rgba(255,123,229,0.1); }
    .marquee-content { display: inline-block; animation: marquee 28s linear infinite; font-family: 'VT323', monospace; font-size: 1.5rem; color: #ff7be5; letter-spacing: 2px; opacity: 0.78; text-shadow: 0 0 18px rgba(255, 123, 229, 0.25); }
    @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

    /* ─────────────────────────────────────────────
       INPUTS
    ───────────────────────────────────────────── */
    .cyber-input {
      width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08);
      color: #F8F4FA; font-family: 'Pretendard', sans-serif; font-size: 1rem; font-weight: 600;
      padding: 1rem 1.2rem; outline: none; transition: all 0.3s; border-radius: 12px;
    }
    .cyber-input:focus { border-color: #FF7BE5; box-shadow: inset 0 0 15px rgba(255,123,229,0.15), 0 0 0 1px rgba(255,123,229,0.3); }
    .cyber-input::placeholder { color: #A79CB5; }

    /* ─────────────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition-property: opacity, transform;
      transition-duration: 0.9s;
      transition-timing-function: cubic-bezier(0.16,1,0.3,1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: transform, opacity;
    }
    .reveal.active { opacity: 1; transform: translateY(0); }

    /* ─────────────────────────────────────────────
       TILT CARD
    ───────────────────────────────────────────── */
    .tilt-card { transition: transform 0.15s ease; }

    /* ─────────────────────────────────────────────
       PULSE BORDER
    ───────────────────────────────────────────── */
    .pulse-border { animation: pulse-b 2s infinite; }
    @keyframes pulse-b { 0%{box-shadow:0 0 0 0 rgba(255,123,229,0.5)} 70%{box-shadow:0 0 0 18px rgba(255,123,229,0)} 100%{box-shadow:0 0 0 0 rgba(255,123,229,0)} }

    /* ─────────────────────────────────────────────
       MOBILE MENU OVERLAY
    ───────────────────────────────────────────── */
    #mobile-menu {
      position: fixed; inset: 0; background: rgba(5,5,8,0.97); backdrop-filter: blur(20px);
      z-index: 99990; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem;
      padding: 5.5rem 1rem 2rem;
      overflow-y: auto;
      transform: translateX(100%); opacity: 0;
      transition: transform 0.45s cubic-bezier(0.7,0,0.3,1), opacity 0.3s ease;
    }
    #mobile-menu.open { transform: translateX(0); opacity: 1; }
    .mobile-nav-link {
      opacity: 0;
      transform: translateY(16px) scale(0.98);
      transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease, color 0.25s ease;
    }
    #mobile-menu.open .mobile-nav-link {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    #mobile-menu.open .mobile-nav-link:nth-of-type(1) { transition-delay: 0.06s; }
    #mobile-menu.open .mobile-nav-link:nth-of-type(2) { transition-delay: 0.11s; }
    #mobile-menu.open .mobile-nav-link:nth-of-type(3) { transition-delay: 0.16s; }
    #mobile-menu.open .mobile-nav-link:nth-of-type(4) { transition-delay: 0.21s; }
    #mobile-menu.open .mobile-nav-link:nth-of-type(5) { transition-delay: 0.26s; }
    #mobile-menu.open .mobile-nav-link:nth-of-type(6) { transition-delay: 0.31s; }
    #mobile-menu.open .mobile-nav-link:nth-of-type(7) { transition-delay: 0.36s; }
    #mobile-menu.open .mobile-nav-link:nth-of-type(8) { transition-delay: 0.41s; }

    /* ─────────────────────────────────────────────
       BUTTON
    ───────────────────────────────────────────── */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(120deg, #ff7be5 0%, #ff52d5 55%, #ffd0f3 100%);
      color: #07070a; font-family: 'VT323', monospace;
      font-size: 1.4rem; font-weight: 700; padding: 14px 28px; border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.38); cursor: pointer; letter-spacing: 0.06em;
      box-shadow: 0 12px 34px rgba(255,123,229,0.36); transition: all 0.3s;
      text-decoration: none;
    }
    .btn-primary:hover { box-shadow: 0 15px 42px rgba(255,123,229,0.58); transform: translateY(-2px) scale(1.01); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255, 123, 229, 0.08); color: #ff7be5; font-family: 'VT323', monospace;
      font-size: 1.4rem; font-weight: 700; padding: 12px 28px; border-radius: 100px;
      border: 2px solid rgba(255,123,229,0.45); cursor: pointer; letter-spacing: 0.06em;
      transition: all 0.3s; text-decoration: none;
    }
    .btn-ghost:hover { border-color: #ff7be5; background: rgba(255,123,229,0.16); transform: translateY(-1px); }

    /* ─────────────────────────────────────────────
       FOOTER FACE
    ───────────────────────────────────────────── */
    footer > .relative.z-10 {
      width: 100%;
    }
    footer .footer-sns-links {
      width: 100%;
      justify-content: center;
    }
    @media (min-width: 1024px) {
      footer .footer-sns-links {
        position: absolute;
        left: clamp(0.75rem, 1.8vw, 1.25rem);
        bottom: -1.55rem;
        width: auto;
        justify-content: flex-start;
        gap: 0.72rem !important;
        margin-top: 0 !important;
        z-index: 15;
      }
      footer .footer-sns-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
        position: relative;
        top: 10px;
      }
      footer .footer-sns-links a[aria-label='PayPal'] {
        top: 13px;
      }
      footer .footer-sns-links svg {
        width: 1.55rem !important;
        height: 1.55rem !important;
        display: block;
      }
      footer .footer-sns-links + p {
        margin-bottom: 3rem;
      }
    }
    footer .log-face { width: 56px; height: 30px; }
    footer .log-eye { width: 14px; height: 30px; border-width: 3px; border-color: #FF7BE5; box-shadow: 0 0 10px rgba(255,123,229,0.4); }
    footer .log-eye.left { left: 0; }
    footer .log-eye.right { right: 0; }
    footer .log-mouth { width: 12px; height: 4px; background: #FF7BE5; box-shadow: 0 0 10px rgba(255,123,229,0.4); }

    /* ─────────────────────────────────────────────
       AI RESPONSE
    ───────────────────────────────────────────── */
    .ai-response-box { background: rgba(255,123,229,0.06); border: 1px solid rgba(255,123,229,0.3); border-radius: 12px; padding: 1.5rem; margin-top: 1rem; box-shadow: 0 0 20px rgba(255,123,229,0.1); animation: fadeIn 0.5s ease-out; }
    @keyframes fadeIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }

    /* decal text */
    .decal-text { position: absolute; font-family: 'VT323', monospace; color: rgba(255,255,255,0.06); font-size: 0.9rem; letter-spacing: 0.2em; pointer-events: none; }

    /* contact page section background */
    .contact-page-bg {
      background: transparent;
    }

    /* ─────────────────────────────────────────────
       A11Y + RESPONSIVE + MOTION
    ───────────────────────────────────────────── */
    a:focus-visible,
    button:focus-visible,
    [role='button']:focus-visible,
    .nav-link:focus-visible {
      outline: 2px solid var(--mint);
      outline-offset: 3px;
      box-shadow: 0 0 0 4px rgba(77, 255, 216, 0.22);
      border-radius: 10px;
    }
    a:focus,
    button:focus,
    [role='button']:focus,
    .nav-link:focus {
      outline: none;
    }
    body[data-page='contact'] .cyber-input:focus {
      outline: none;
    }

    #music-widget[role='button']:focus-visible {
      border-radius: 999px;
    }

    @media (max-width: 900px) {
      .status-bar {
        padding-inline: 12px;
        gap: 12px;
        font-size: 0.9rem;
      }
      .page-heading-panel {
        border-radius: 20px;
        padding: 0.95rem 0.95rem 1rem;
      }
      .page-heading-panel::before {
        top: 0.45rem;
        right: 0.55rem;
        font-size: 0.78rem;
        padding: 0.16rem 0.44rem;
      }
      .hero-copy-panel {
        padding: 1rem;
        border-radius: 20px;
      }
      .hero-stats {
        gap: 0.7rem;
      }
      .hero-stats > .text-center {
        min-width: 92px;
      }
      .transmission-meta {
        max-width: 72%;
      }
      .home-collage-photo,
      .home-collage-note-left,
      .home-collage-note-right {
        transform: rotate(0deg);
      }
      .home-collage-photo::before,
      .home-collage-photo::after {
        display: none;
      }
      .home-collage-photo .transmission-core {
        box-shadow:
          0 20px 42px rgba(0, 0, 0, 0.52),
          0 0 0 5px rgba(248, 241, 230, 0.9),
          0 10px 0 5px rgba(248, 241, 230, 0.9);
      }
      .transmission-meta #latest-transmission-title {
        font-size: 0.86rem;
        line-height: 1.35;
        padding: 0.55rem 0.65rem;
      }
      .btn-primary,
      .btn-ghost {
        font-size: 1.2rem;
        padding: 0.65rem 1.1rem;
      }
      .release-stream {
        padding-left: 0.85rem;
      }
      .release-item {
        margin-left: 0.5rem;
      }
      .release-item::before {
        left: -1rem;
      }
      .release-item-body {
        grid-template-columns: 72px 1fr;
        gap: 0.75rem;
      }
      .release-cover {
        width: 72px;
        height: 72px;
      }
    }

    @media (max-width: 640px) {
      .marquee-content {
        font-size: 1.1rem;
      }
      .pixel-divider {
        padding-inline: 10px;
        font-size: 0.86rem;
        gap: 7px;
      }
      .hero-transmission-wrap {
        min-height: 260px;
      }
      .page-heading-panel {
        padding: 0.85rem;
      }
      .page-heading-panel::before {
        display: none;
      }
      .signal-grid {
        gap: 0.9rem;
      }
      .release-stream {
        padding-left: 0;
      }
      .release-stream::before,
      .release-item::before {
        display: none;
      }
      .release-item {
        margin-left: 0;
      }
      .release-item-body {
        grid-template-columns: 1fr;
      }
      .release-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
      }
      .lore-character-head {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 0.75rem;
      }
      .lore-character-card-log .lore-character-head {
        grid-template-columns: minmax(0, 1fr) 108px;
      }
      .lore-portrait-wrap {
        width: 108px;
        border-radius: 14px;
      }
      .lore-character-role {
        font-size: 1.32rem;
      }
      .lore-character-quotes p {
        font-size: 0.88rem;
        padding: 0.46rem 0.58rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .scanlines,
      .glow,
      #cursor-planet,
      #cursor-ring {
        display: none !important;
      }
      .reveal {
        transition-delay: 0ms !important;
      }
      ::-webkit-scrollbar-thumb {
        animation: none !important;
      }
    }
