  /* ==============================
     THE CALM BEFORE THE STORM
     ============================== */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  :root {
    --bg: #f5f0eb;
    --fg: #1a1a1a;
    --accent: #c23616;
    --accent2: #0a3d62;
    --muted: #8b7d6b;
    --paper: #ece5db;
    --ink: #2c2c2c;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
    cursor: crosshair;
  }

  ::selection {
    background: var(--accent);
    color: #fff;
  }

  /* Scrollbar - deceptively normal */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 4px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--accent); }

  /* ==============================
     NOISE OVERLAY - subtle grain
     ============================== */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
  }

  /* ==============================
     GLITCH TEXT SYSTEM
     ============================== */
  @keyframes glitchSlice {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    5% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 0); }
    10% { clip-path: inset(60% 0 10% 0); transform: translate(4px, 0); }
    15% { clip-path: inset(0 0 0 0); transform: translate(0); }
  }
  @keyframes glitchSlice2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    7% { clip-path: inset(40% 0 30% 0); transform: translate(5px, 0); }
    12% { clip-path: inset(10% 0 70% 0); transform: translate(-3px, 0); }
    17% { clip-path: inset(0 0 0 0); transform: translate(0); }
  }

  .glitch-text {
    position: relative;
  }
  .glitch-text::before,
  .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .glitch-text::before {
    color: var(--accent);
    animation: glitchSlice 4s infinite linear;
    z-index: 1;
  }
  .glitch-text::after {
    color: var(--accent2);
    animation: glitchSlice2 4s infinite linear;
    animation-delay: 0.1s;
    z-index: 1;
  }

  /* ==============================
     CURSOR STALKER
     ============================== */
  .stalker {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
    
  }
  .stalker.expand {
    width: 80px;
    height: 80px;
    border-color: var(--accent2);
  }
  .stalker-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s;
  }

  /* ==============================
     LOADING - quiet tension
     ============================== */
  #loading {
    position: fixed;
    inset: 0;
    background: var(--fg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #loading .ld-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 8px;
    text-transform: uppercase;
  }
  #loading .ld-line {
    width: 200px;
    height: 1px;
    background: #333;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
  }
  #loading .ld-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width 0.3s;
  }
  #loading .ld-counter {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 80px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: -4px;
  }

  /* ==============================
     NAV - barely there
     ============================== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    background: transparent;
    
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 40px;
    width: auto;
    
    transition: filter 0.3s, transform 0.3s;
  }
  .nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 4px rgba(194,54,22,0.5));
    transform: scale(1.05);
  }
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .nav-links a:hover::after { width: 100%; }

  /* ==============================
     HERO - calm exterior, raging inside
     ============================== */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  /* Canvas背景 */
  #bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .hero-bg-text {
    position: absolute;
    font-family: 'Dela Gothic One', sans-serif;
    font-size: clamp(15rem, 35vw, 50rem);
    color: transparent;
    -webkit-text-stroke: 1px #e0d8cf;
    opacity: 0.3;
    user-select: none;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .hero-brand {
    font-family: 'Dela Gothic One', sans-serif;
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 400;
    letter-spacing: -4px;
    line-height: 0.9;
    color: var(--fg);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    visibility: hidden;
  }
  .hero-brand.ready { visibility: visible; }

  .hero-brand .char {
    display: inline-block;
    position: relative;
  }
  .hero-brand .char.platform {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .hero-brand .char.platform.show {
    opacity: 0.12;
    transform: translateY(0);
  }
  .hero-brand .char.platform.full {
    opacity: 1;
    transition: opacity 0.6s ease;
  }
  .hero-brand .char.f-slot {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .hero-brand .char.f-slot.show { opacity: 1; }

  /* SVG fox runner */
  .fox-runner {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    transform-origin: center bottom;
  }
  .fox-runner svg {
    display: block;
    filter: drop-shadow(1px 3px 5px rgba(0,0,0,0.12));
  }
  /* Ear twitch: subtle pivot from base */
  @keyframes earTwitchL {
    0%, 100% { transform: rotate(0deg); }
    40% { transform: rotate(-8deg); }
    70% { transform: rotate(3deg); }
  }
  @keyframes earTwitchR {
    0%, 100% { transform: rotate(0deg); }
    35% { transform: rotate(6deg); }
    65% { transform: rotate(-4deg); }
  }
  @keyframes tailWag {
    0%, 100% { transform: rotate(0deg); }
    30% { transform: rotate(12deg); }
    60% { transform: rotate(-8deg); }
  }
  /* Leg run cycle */
  @keyframes legFrontL {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(25deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-20deg); }
  }
  @keyframes legFrontR {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(25deg); }
  }
  @keyframes legBackL {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(20deg); }
  }
  @keyframes legBackR {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-15deg); }
  }
  .fox-runner .fox-ear-l { transform-origin: 23px 30px; }
  .fox-runner .fox-ear-r { transform-origin: 38px 28px; }
  .fox-runner .fox-tail { transform-origin: 80px 55px; }
  .fox-runner .leg-fl { transform-origin: 38px 68px; }
  .fox-runner .leg-fr { transform-origin: 46px 68px; }
  .fox-runner .leg-bl { transform-origin: 68px 68px; }
  .fox-runner .leg-br { transform-origin: 76px 68px; }
  /* Running state */
  .fox-runner.running .leg-fl { animation: legFrontL 0.35s ease-in-out infinite; }
  .fox-runner.running .leg-fr { animation: legFrontR 0.35s ease-in-out infinite; }
  .fox-runner.running .leg-bl { animation: legBackL 0.35s ease-in-out infinite; }
  .fox-runner.running .leg-br { animation: legBackR 0.35s ease-in-out infinite; }
  .fox-runner.running .fox-tail { animation: tailWag 0.4s ease-in-out infinite; }
  /* Looking state */
  .fox-runner.looking .fox-ear-l { animation: earTwitchL 0.9s ease-in-out infinite; }
  .fox-runner.looking .fox-ear-r { animation: earTwitchR 0.8s ease-in-out 0.15s infinite; }
  .fox-runner.looking .fox-tail { animation: tailWag 0.7s ease-in-out infinite; }

  /* Idle sway */
  @keyframes foxSway1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    15% { transform: translateY(-6px) rotate(2deg); }
    50% { transform: translateY(-4px) rotate(1.5deg); }
    85% { transform: translateY(-3px) rotate(-1.5deg); }
  }
  @keyframes foxSway2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(-5px) rotate(-2deg); }
    60% { transform: translateY(-7px) rotate(-1deg); }
    80% { transform: translateY(-2px) rotate(2deg); }
  }
  @keyframes foxSway3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    35% { transform: translateY(-8px) rotate(-2deg); }
    75% { transform: translateY(-5px) rotate(-1deg); }
  }
  .hero-brand .char.idle:nth-child(1) { animation: foxSway1 3.5s ease-in-out infinite; }
  .hero-brand .char.idle:nth-child(2) { animation: foxSway2 4s ease-in-out infinite 0.2s; }
  .hero-brand .char.idle:nth-child(3) { animation: foxSway3 3.8s ease-in-out infinite 0.5s; }
  .hero-brand .char.idle:nth-child(4) { animation: foxSway2 3.2s ease-in-out infinite 0.8s; }
  .hero-brand .char.idle:nth-child(5) { animation: foxSway1 4.2s ease-in-out infinite 0.4s; }
  .hero-brand .char:hover {
    color: var(--accent) !important;
    transform: translateY(-15px) scale(1.2) rotate(-8deg) !important;
    transition: all 0.12s cubic-bezier(0.2, 0.8, 0.2, 1.6) !important;
    animation: none !important;
    text-shadow: 3px 3px 0 rgba(194,54,22,0.2);
  }
  .hero-tagline {
    font-family: 'Shippori Mincho B1', serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--muted);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.7, 0, 0.3, 1);
    transition-delay: 0.8s;
    line-height: 2;
  }
  .hero-tagline.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-line {
    width: 0;
    height: 1px;
    background: var(--accent);
    margin: 20px auto;
    transition: width 1s cubic-bezier(0.7, 0, 0.3, 1);
    transition-delay: 0.5s;
  }
  .hero-line.visible {
    width: 80px;
  }
  .hero-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0;
    transition: opacity 0.8s;
    transition-delay: 1.2s;
  }
  .hero-sub.visible {
    opacity: 1;
  }
  .hero-scroll-words {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
  }
  .scroll-word {
    position: absolute;
    font-family: 'Dela Gothic One', sans-serif;
    color: var(--fg);
    opacity: 0.025;
    white-space: nowrap;
    user-select: none;
    transition: opacity 0.3s;
  }

  /* Scroll indicator - restrained */
  .scroll-ind {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .scroll-ind span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-ind .scroll-line {
    width: 1px;
    height: 40px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
  }
  .scroll-ind .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollDown 2s ease-in-out infinite;
  }
  @keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
  }

  /* ==============================
     SECTION HEADERS
     ============================== */
  .section-header {
    padding: 120px 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .section-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .section-heading {
    font-family: 'Shippori Mincho B1', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--fg);
    position: relative;
    display: inline-block;
  }

  /* ==============================
     ABOUT - the mask slips
     ============================== */
  .about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .about-text {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 1.05rem;
    line-height: 2.2;
    color: var(--ink);
    overflow: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .about-text .break-line {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent);
    margin: 25px 0;
  }
  /* The crazy part: random words go nuts on hover */
  .about-text .volatile {
    position: relative;
    display: inline;
    cursor: crosshair;
    transition: color 0.15s, font-weight 0.15s, text-shadow 0.15s;
  }
  .about-text .volatile:hover {
    color: var(--accent);
    font-weight: 900;
    text-shadow: 2px 2px 0 rgba(194, 54, 22, 0.15);
  }
  .about-meta {
    position: relative;
  }
  .about-meta-card {
    background: var(--paper);
    padding: 35px;
    border-left: 3px solid var(--accent);
    position: relative;
  }
  .about-meta-card h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }
  .meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #d5cdc3;
    font-size: 0.9rem;
    transition: all 0.3s;
  }
  .meta-item:hover {
    padding-left: 15px;
    border-bottom-color: var(--accent);
  }
  .meta-item .label {
    color: var(--muted);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .meta-item .value {
    font-weight: 700;
  }
  .meta-item .value.red { color: var(--accent); }

  /* ==============================
     PROJECTS - controlled chaos
     ============================== */
  .projects-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 120px;
  }
  .project {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 50px 0;
    border-top: 1px solid #d5cdc3;
    position: relative;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    overflow: hidden;
  }
  .project:hover {
    padding-left: 30px;
  }
  /* Hover background - base layer */
  .project::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    pointer-events: none;
    z-index: 0;
  }
  .project:hover::before {
    opacity: 1;
  }

  /* === LIVE PROJECT hover backgrounds: mock UI silhouettes === */
  /* 01 - KnowRight: dark brand with check marks */
  .project[data-hover="knowright"]::before {
    background:
      linear-gradient(135deg, #1a2332 0%, #0f1923 100%);
    opacity: 0;
  }
  .project[data-hover="knowright"]:hover::before { opacity: 0.06; }
  .project[data-hover="knowright"]::after {
    content: 'KnowRight';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 5rem;
    color: var(--fg);
    opacity: 0;
    transition: opacity 0.6s, right 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
  }
  .project[data-hover="knowright"]:hover::after {
    opacity: 0.04;
    right: 40px;
  }

  /* 02 - ninkatsu: warm, gentle tones */
  .project[data-hover="ninkatsu"]::before {
    background:
      radial-gradient(ellipse at 80% 50%, #f0e6d8 0%, transparent 60%),
      linear-gradient(135deg, #fdf6ee, #f5ebe0);
  }
  .project[data-hover="ninkatsu"]:hover::before { opacity: 0.5; }
  .project[data-hover="ninkatsu"]::after {
    content: '¥';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 12rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
  }
  .project[data-hover="ninkatsu"]:hover::after {
    opacity: 0.06;
    transform: translateY(-50%) rotate(-8deg);
  }

  /* 03 - chokinho: playful, piggy bank vibes */
  .project[data-hover="chokinho"]::before {
    background:
      radial-gradient(circle at 85% 40%, #ffe0ec 0%, transparent 50%),
      linear-gradient(135deg, #fff5f9, #fce4ec);
  }
  .project[data-hover="chokinho"]:hover::before { opacity: 0.5; }
  .project[data-hover="chokinho"]::after {
    content: '貯';
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Shippori Mincho B1', serif;
    font-size: 12rem;
    font-weight: 800;
    color: #c23616;
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
  }
  .project[data-hover="chokinho"]:hover::after {
    opacity: 0.06;
    transform: translateY(-50%) rotate(5deg);
  }

  /* === COMING SOON projects: big text slides in from right === */
  .project[data-hover="coming-soon"]::before {
    background: linear-gradient(90deg, transparent 0%, #f0ebe4 100%);
  }
  .project[data-hover="coming-soon"]:hover::before { opacity: 0.6; }
  .project[data-hover="coming-soon"]::after {
    content: 'COMING SOON';
    position: absolute;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Dela Gothic One', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--fg);
    opacity: 0;
    transition: opacity 0.5s, right 0.8s cubic-bezier(0.7, 0, 0.3, 1);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    letter-spacing: -2px;
  }
  .project[data-hover="coming-soon"]:hover::after {
    opacity: 0.07;
    right: 20px;
  }

  .project-index {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 3.5rem;
    font-weight: 600;
    color: #e0d8cf;
    line-height: 1;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
  }
  .project:hover .project-index {
    color: var(--accent);
    transform: scale(1.2) rotate(-5deg);
  }
  .project-info {
    position: relative;
    z-index: 1;
  }
  .project-name {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    transition: letter-spacing 0.5s;
  }
  .project:hover .project-name {
    letter-spacing: 3px;
  }
  .project-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  .project-body {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.9;
    max-width: 600px;
    margin-bottom: 20px;
  }
  .project-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    list-style: none;
  }
  .stack-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 4px 12px;
    border: 1px solid #d5cdc3;
    transition: all 0.3s;
  }
  .stack-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }
  .project-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fg);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    display: inline-block;
    transition: color 0.3s;
  }
  .project-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--fg);
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), background 0.3s;
  }
  .project-cta:hover {
    color: var(--accent);
  }
  .project-cta:hover::after {
    transform-origin: left;
    transform: scaleX(1);
    background: var(--accent);
  }
  .project-status {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--muted);
    border: 1px solid #d5cdc3;
    padding: 4px 12px;
    display: inline-block;
  }

  /* ==============================
     SKILLS - the bar that betrays
     ============================== */
  .skills-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 120px;
  }
  .skill-item {
    display: grid;
    grid-template-columns: 180px 1fr 60px;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e8e0d6;
    transition: all 0.4s;
  }
  .skill-item:hover {
    padding-left: 20px;
    border-bottom-color: var(--accent);
  }
  .skill-label {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 0.95rem;
    font-weight: 600;
  }
  .skill-track {
    height: 3px;
    background: #e8e0d6;
    position: relative;
    overflow: hidden;
  }
  .skill-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--fg);
    transition: width 1.8s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .skill-item:hover .skill-fill {
    background: var(--accent);
  }
  .skill-pct {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-align: right;
    color: var(--muted);
    transition: color 0.3s;
  }
  .skill-item:hover .skill-pct {
    color: var(--accent);
  }
  /* The joke skill */
  .skill-item.joke .skill-fill {
    background: var(--accent);
    animation: jokePulse 0.5s ease-in-out infinite alternate;
  }
  @keyframes jokePulse {
    from { opacity: 1; }
    to { opacity: 0.3; }
  }
  .skill-item.joke .skill-pct {
    color: var(--accent);
    font-weight: 600;
  }

  /* ==============================
     PHILOSOPHY - here the madness shows
     ============================== */
  .phil-section {
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--fg);
    color: var(--bg);
  }
  .phil-section .section-num { color: var(--accent); }
  .phil-quote {
    font-family: 'Shippori Mincho B1', serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.8;
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
  }
  .phil-quote .accent-word {
    color: var(--accent);
    position: relative;
    display: inline-block;
    cursor: crosshair;
    transition: transform 0.3s;
  }
  .phil-quote .accent-word:hover {
    transform: scale(1.3) rotate(-3deg);
  }
  .phil-bg-repeat {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 0.03;
    font-family: 'Dela Gothic One', sans-serif;
    font-size: 3rem;
    color: #fff;
    pointer-events: none;
    overflow: hidden;
    word-break: break-all;
    line-height: 1.2;
  }

  /* ==============================
     FOOTER - whisper
     ============================== */
  .footer {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid #d5cdc3;
  }
  .footer-left {}
  .footer-heading {
    font-family: 'Shippori Mincho B1', serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .footer-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 3px;
  }
  .footer-right {
    display: flex;
    gap: 25px;
  }
  .footer-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fg);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s;
  }
  .footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s;
  }
  .footer-link:hover { color: var(--accent); }
  .footer-link:hover::after { width: 100%; }

  .footer-copy {
    text-align: center;
    padding: 0 40px 40px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 2px;
  }

  /* ==============================
     MADNESS LAYER: hidden text
     ============================== */
  .hidden-msg {
    position: fixed;
    bottom: 15px;
    right: 15px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    color: var(--muted);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 9000;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 250px;
    text-align: right;
    line-height: 1.6;
    pointer-events: none;
  }
  body.awake .hidden-msg { opacity: 1; }

  /* ==============================
     DISTORTION: hover-triggered insanity 
     ============================== */
  .distort-zone {
    transition: all 0.5s;
  }
  .distort-zone.active {
    filter: url(#turbulence-filter);
  }

  /* ==============================
     SPLIT TEXT REVEAL
     ============================== */
  .split-reveal .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(10deg);
    transition: all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .split-reveal.visible .char {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }

  /* ==============================
     SCROLL REVEAL
     ============================== */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ==============================
     REDACTED TEXT (easter egg)
     ============================== */
  .redacted {
    background: var(--fg);
    color: var(--fg);
    padding: 0 4px;
    transition: all 0.3s;
    cursor: help;
    user-select: none;
  }
  .redacted:hover {
    background: transparent;
    color: var(--accent);
  }

  /* ==============================
     RESPONSIVE
     ============================== */
  @media (max-width: 768px) {
    .about-section { grid-template-columns: 1fr; gap: 40px; }
    .project { grid-template-columns: 60px 1fr; gap: 20px; }
    .project-index { font-size: 2rem; }
    .skill-item { grid-template-columns: 120px 1fr 50px; gap: 10px; }
    .nav { padding: 15px 20px; }
    .nav-links { gap: 15px; }
    .nav-links a { font-size: 0.6rem; letter-spacing: 2px; }
    .section-header { padding: 80px 20px 40px; }
    .about-section, .projects-section, .skills-section { padding-left: 20px; padding-right: 20px; }
    .footer { flex-direction: column; gap: 30px; align-items: start; padding: 60px 20px; }
    .stalker, .stalker-dot { display: none; }
  }

  /* Footer logo image */
  .footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 8px;
    display: block;
  }

/* ============================================
   MODE SWITCHING
   ============================================ */
#normalMode { position: relative; }
#psychoMode { display: none; }
#psychoMode.active { display: block; }

/* SECRET BUTTON */
.secret-btn {
  position: fixed; bottom: 15px; left: 15px; z-index: 100;
  width: 30px; height: 30px; border: 1px solid #ccc; border-radius: 50%;
  background: transparent; cursor: pointer; opacity: 0.5; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center; font-size: 10px; color: #999;
}
.secret-btn:hover { opacity: 0.8; }

/* FALLING CHARS */
.falling-char { display: inline-block; }
.falling-char.go {
  animation: charFall var(--fall-dur, 0.8s) cubic-bezier(0.55, 0, 1, 0.45) var(--fall-delay, 0s) forwards;
}
@keyframes charFall {
  0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 1; }
  30% { opacity: 1; }
  100% { transform: translateY(120vh) translateX(var(--fall-x, 0px)) rotate(var(--fall-rot, 15deg)); opacity: 0; }
}

/* TAPE OVERLAY */
.tape-overlay {
  position: fixed; inset: 0; z-index: 10000; pointer-events: none; overflow: hidden; display: none;
}
.tape {
  position: absolute; height: 60px; white-space: nowrap;
  font-family: 'Press Start 2P', monospace; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; letter-spacing: 3px; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.tape.caution {
  background: repeating-linear-gradient(45deg, #f5c518 0, #f5c518 20px, #111 20px, #111 40px);
  color: #111;
}
.tape.danger {
  background: repeating-linear-gradient(-45deg, #e63222 0, #e63222 20px, #111 20px, #111 40px);
  color: #fff;
}
.tape-text { display: inline-block; padding: 0 40px; white-space: nowrap; }
.tape:nth-child(1) { top: 5%; transform: rotate(-5deg); left: -110%; width: 130%; }
.tape:nth-child(2) { top: 18%; transform: rotate(3deg); right: -110%; width: 130%; }
.tape:nth-child(3) { top: 32%; transform: rotate(-2deg); left: -110%; width: 130%; }
.tape:nth-child(4) { top: 46%; transform: rotate(4deg); right: -110%; width: 130%; }
.tape:nth-child(5) { top: 58%; transform: rotate(-3deg); left: -110%; width: 130%; }
.tape:nth-child(6) { top: 70%; transform: rotate(2deg); right: -110%; width: 130%; }
.tape:nth-child(7) { top: 82%; transform: rotate(-4deg); left: -110%; width: 130%; }
.tape:nth-child(8) { top: 93%; transform: rotate(1deg); right: -110%; width: 130%; }
.tape.slide-in-left { animation: tapeFromLeft 0.4s cubic-bezier(0.22,0.61,0.36,1) forwards; }
.tape.slide-in-right { animation: tapeFromRight 0.4s cubic-bezier(0.22,0.61,0.36,1) forwards; }
@keyframes tapeFromLeft { 0% { left: -130%; } 100% { left: -5%; } }
@keyframes tapeFromRight { 0% { right: -130%; } 100% { right: -5%; } }
.tape.slide-out-left { animation: tapeOutLeft 0.5s cubic-bezier(0.55,0,1,0.45) forwards; }
.tape.slide-out-right { animation: tapeOutRight 0.5s cubic-bezier(0.55,0,1,0.45) forwards; }
@keyframes tapeOutLeft { 0% { left: -5%; } 100% { left: -130%; } }
@keyframes tapeOutRight { 0% { right: -5%; } 100% { right: -130%; } }

/* ============================================
   PSYCHO MODE STYLES
   ============================================ */
#psychoMode ::selection { background: #ff00ff; color: #00ff00; }
@keyframes psy-rainbow { 0%{color:#ff0000;}14%{color:#ff8800;}28%{color:#ffff00;}42%{color:#00ff00;}57%{color:#0088ff;}71%{color:#8800ff;}85%{color:#ff00ff;}100%{color:#ff0000;} }
@keyframes psy-rainbowBg { 0%{background-color:#ff000030;}14%{background-color:#ff880030;}28%{background-color:#ffff0030;}42%{background-color:#00ff0030;}57%{background-color:#0088ff30;}71%{background-color:#8800ff30;}85%{background-color:#ff00ff30;}100%{background-color:#ff000030;} }
@keyframes psy-spin { to { transform: rotate(360deg); } }
@keyframes psy-spinR { to { transform: rotate(-360deg); } }
@keyframes psy-float { 0%,100%{transform:translateY(0) rotate(0);}25%{transform:translateY(-20px) rotate(5deg);}75%{transform:translateY(-25px) rotate(-3deg);} }
@keyframes psy-glitch { 0%,100%{transform:translate(0);}20%{transform:translate(-3px,3px);}40%{transform:translate(-3px,-3px);}60%{transform:translate(3px,3px);}80%{transform:translate(3px,-3px);} }
@keyframes psy-marquee { 0%{transform:translateX(0);}100%{transform:translateX(-50%);} }
@keyframes psy-wiggle { 0%,100%{transform:rotate(0);}25%{transform:rotate(12deg);}75%{transform:rotate(-12deg);} }
@keyframes psy-pulse { 0%,100%{transform:scale(1);}50%{transform:scale(1.08);} }
@keyframes psy-borderDance { 0%{border-color:#ff0066;}25%{border-color:#ffcc00;}50%{border-color:#00ff88;}75%{border-color:#0066ff;}100%{border-color:#ff0066;} }
@keyframes psy-bgSlide { 0%{background-position:0% 50%;}50%{background-position:100% 50%;}100%{background-position:0% 50%;} }
@keyframes psy-blink { 0%,50%{opacity:1;}51%,100%{opacity:0;} }
@keyframes psy-rainbowScroll { 0%{background-position:0% 0%;}100%{background-position:0% 800%;} }
@keyframes psy-eFall { 0%{opacity:1;transform:translateY(-50px) rotate(0);}100%{opacity:0;transform:translateY(100vh) rotate(720deg);} }
@keyframes psy-bOut { 0%{transform:scale(.5) translate(0,0);opacity:1;}100%{transform:scale(1.5) translate(var(--tx),var(--ty));opacity:0;} }
@keyframes psy-tFade { 0%{transform:scale(1);opacity:.8;}100%{transform:scale(0);opacity:0;} }
@keyframes psy-bgWordFloat { 0%{transform:translateY(0) rotate(0);}100%{transform:translateY(-200vh) rotate(10deg);} }

.psycho-active::-webkit-scrollbar { width: 14px; }
.psycho-active::-webkit-scrollbar-track { background: #0a0a0a; }
.psycho-active::-webkit-scrollbar-thumb { background: linear-gradient(180deg,#ff0000,#ff8800,#ffff00,#00ff00,#0088ff,#8800ff,#ff00ff,#ff0000); background-size: 100% 800%; animation: psy-rainbowScroll 2s linear infinite; }

.emoji-p { position:fixed;font-size:24px;pointer-events:none;z-index:9999;animation:psy-eFall linear forwards; }
.click-b { position:fixed;pointer-events:none;z-index:10000;font-size:30px;animation:psy-bOut 0.6s ease-out forwards; }
.psy-trail { position:fixed;pointer-events:none;z-index:9998;width:15px;height:15px;border-radius:50%;mix-blend-mode:screen;animation:psy-tFade .5s ease-out forwards; }
#psyCanvas { position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:0; }
.bg-word { position:fixed;pointer-events:none;z-index:0;font-family:'Dela Gothic One',sans-serif;opacity:.015;animation:psy-bgWordFloat linear infinite;white-space:nowrap; }

.psy-marquee { background:linear-gradient(90deg,#ff0066,#ffcc00,#00ff88,#0066ff,#ff0066);background-size:300% 100%;animation:psy-bgSlide 3s linear infinite;padding:6px 0;overflow:hidden;white-space:nowrap;position:relative;z-index:10; }
.psy-marquee-in { display:inline-block;animation:psy-marquee 10s linear infinite;font-family:'Press Start 2P',monospace;font-size:10px;color:#000; }
.psy-marquee2 { background:linear-gradient(90deg,#0066ff,#ff00ff,#ffcc00,#00ff88,#0066ff);background-size:300% 100%;animation:psy-bgSlide 4s linear infinite;padding:4px 0;overflow:hidden;white-space:nowrap;position:relative;z-index:10; }
.psy-marquee2 .psy-marquee-in { animation-direction:reverse;animation-duration:8s;font-size:8px; }

.psy-hero { min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;position:relative;padding:40px 20px;z-index:1; }
.psy-name { font-family:'Dela Gothic One',sans-serif;font-size:clamp(4rem,16vw,14rem);animation:psy-rainbow 1.5s linear infinite,psy-glitch .3s infinite;text-shadow:4px 4px 0 #ff0066,-4px -4px 0 #0066ff,8px 8px 0 #00ff88;letter-spacing:-3px;line-height:1;position:relative;z-index:2; }
.psy-name .ch { display:inline-block;animation:psy-float 3s ease-in-out infinite; }
.psy-name .ch:hover { animation:psy-wiggle .15s infinite;font-size:1.4em;text-shadow:0 0 30px currentColor; }
.psy-sub { font-family:'Silkscreen',monospace;font-size:clamp(.7rem,2vw,1.3rem);margin-top:20px;color:#00ff88;animation:psy-pulse 1s infinite;position:relative;z-index:2; }
.orbit { position:absolute;pointer-events:none; }
.orbit.cw { animation:psy-spin 8s linear infinite; }
.orbit.ccw { animation:psy-spin 6s linear infinite reverse; }

.psy-stitle { font-family:'Dela Gothic One',sans-serif;font-size:clamp(2rem,6vw,4rem);text-align:center;padding:60px 20px 40px;position:relative;z-index:2;text-shadow:0 0 40px #0a0a0a,0 0 80px #0a0a0a;color:#fff; }
.psy-stitle::before { content:'▶▶▶';display:block;font-size:.4em;animation:psy-rainbow 1s linear infinite;letter-spacing:10px; }
.psy-stitle::after { content:'';display:block;width:200px;height:6px;margin:15px auto 0;background:linear-gradient(90deg,#ff0066,#ffcc00,#00ff88,#0066ff);background-size:300% 100%;animation:psy-bgSlide 2s linear infinite;border-radius:3px; }

.psy-content { padding:20px;max-width:900px;margin:0 auto;position:relative;z-index:2; }
.psy-card { background:rgba(20,20,40,.9);border:3px solid #ff0066;border-radius:20px;padding:40px;animation:psy-borderDance 3s linear infinite;backdrop-filter:blur(10px);margin-bottom:30px;color:#fff; }
.psy-card p { line-height:2.2;font-family:'Zen Maru Gothic',sans-serif; }
.psy-card .hl { color:#ffcc00;font-weight:900;animation:psy-pulse 2s infinite;display:inline-block; }
.psy-tags { display:flex;flex-wrap:wrap;gap:10px;margin-top:25px; }
.psy-tag { background:#ff006620;border:1px solid #ff0066;padding:6px 16px;border-radius:999px;font-size:.85rem;animation:psy-float 3s ease-in-out infinite;transition:all .3s;color:#fff; }
.psy-tag:nth-child(2n) { animation-delay:.5s; }
.psy-tag:nth-child(3n) { animation-delay:1s; }
.psy-tag:hover { background:#ff0066;transform:scale(1.3) rotate(10deg) !important; }

.psy-stats { padding:20px 20px 80px;position:relative;z-index:2; }
.stats-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;max-width:900px;margin:0 auto; }
.stat-card { background:rgba(17,17,17,.9);border:3px solid;border-radius:15px;padding:30px 20px;text-align:center;animation:psy-borderDance 2s linear infinite;transition:all .3s;position:relative;overflow:hidden;backdrop-filter:blur(5px);color:#fff; }
.stat-card:hover { transform:scale(1.1) rotate(-3deg);box-shadow:0 0 40px #ff006680; }
.stat-emoji { font-size:50px;display:block;animation:psy-float 3s ease-in-out infinite; }
.stat-number { font-family:'Press Start 2P',monospace;font-size:1.4rem;color:#ffcc00;margin:10px 0;display:block;word-break:break-all; }
.stat-label { font-size:.85rem;color:#aaa; }

.psy-projects { padding:20px 20px 80px;max-width:1000px;margin:0 auto;position:relative;z-index:2; }
.psy-proj { background:rgba(17,17,17,.9);border-radius:20px;padding:35px;margin-bottom:30px;border:3px solid #333;position:relative;overflow:hidden;transition:all .4s cubic-bezier(.175,.885,.32,1.275);backdrop-filter:blur(5px);color:#fff; }
.psy-proj:hover { border-color:#ff0066;transform:translateX(20px) rotate(-1deg);box-shadow:-10px 10px 0 #ff0066,-20px 20px 0 #ffcc00,-30px 30px 0 #00ff88; }
.psy-proj-num { font-family:'Press Start 2P',monospace;font-size:.7rem;color:#ff0066;margin-bottom:10px; }
.psy-proj-title { font-family:'Dela Gothic One',sans-serif;font-size:1.5rem;margin-bottom:8px; }
.psy-proj-title .em { animation:psy-wiggle 1s ease-in-out infinite;display:inline-block; }
.psy-proj-desc { color:#bbb;line-height:1.8;margin-bottom:15px; }
.psy-proj-tech { display:flex;flex-wrap:wrap;gap:8px; }
.tbadge { font-family:'Silkscreen',monospace;font-size:.7rem;background:#0066ff30;border:1px solid #0066ff;padding:4px 12px;border-radius:5px;transition:all .3s;color:#fff; }
.tbadge:hover { background:#0066ff;transform:scale(1.2); }
.psy-proj-link { display:inline-block;margin-top:15px;padding:8px 20px;background:linear-gradient(90deg,#ff0066,#ff8800);border-radius:8px;color:#fff;text-decoration:none;font-weight:700;font-size:.9rem;transition:all .3s;animation:psy-pulse 2s infinite; }
.psy-proj-link:hover { transform:scale(1.1);box-shadow:0 0 30px #ff006680; }

.psy-skills { padding:20px 20px 80px;max-width:900px;margin:0 auto;position:relative;z-index:2; }
.sk-row { display:flex;align-items:center;gap:15px;margin-bottom:20px;padding:15px 20px;background:rgba(17,17,17,.9);border-radius:10px;border-left:5px solid;animation:psy-borderDance 3s linear infinite;transition:all .3s;backdrop-filter:blur(5px);color:#fff; }
.sk-row:hover { transform:translateX(30px) scale(1.02);background:rgba(26,26,26,.95); }
.sk-icon { font-size:30px;animation:psy-float 2s ease-in-out infinite;flex-shrink:0; }
.sk-name { font-weight:700;min-width:140px; }
.sk-bar-bg { flex:1;height:20px;background:#222;border-radius:10px;overflow:hidden; }
.sk-bar-fill { height:100%;border-radius:10px;background:linear-gradient(90deg,#ff0066,#ffcc00);width:0%;transition:width 1.5s cubic-bezier(.175,.885,.32,1.275);position:relative; }
.sk-bar-fill::after { content:'';position:absolute;right:0;top:0;width:20px;height:100%;background:#fff;opacity:.5;animation:psy-blink .5s infinite; }
.sk-lv { font-family:'Press Start 2P',monospace;font-size:.6rem;color:#ffcc00;min-width:40px;text-align:right; }

.psy-phil { padding:60px 20px 80px;text-align:center;position:relative;overflow:hidden;z-index:2; }
.psy-phil::before { content:'💡🔥⚡🦊💡🔥⚡🦊';position:absolute;top:0;left:0;width:200%;font-size:40px;animation:psy-marquee 10s linear infinite;opacity:.08; }
.psy-phil-q { font-family:'Dela Gothic One',sans-serif;font-size:clamp(1.5rem,4vw,3rem);max-width:800px;margin:0 auto;line-height:1.6;position:relative;z-index:1;text-shadow:0 0 30px #0a0a0a;color:#fff; }
.psy-phil-q .big { font-size:1.5em;animation:psy-rainbow 1.5s linear infinite;display:inline-block; }
.psy-phil-q .big:hover { animation:psy-glitch .1s infinite; }

.psy-footer { background:#050505;padding:60px 20px;text-align:center;border-top:3px solid;animation:psy-borderDance 2s linear infinite;position:relative;z-index:2; }
.psy-footer-title { font-family:'Dela Gothic One',sans-serif;font-size:2rem;animation:psy-rainbow 2s linear infinite; }
.psy-footer-copy { font-family:'Press Start 2P',monospace;font-size:.55rem;color:#555;margin-top:20px; }
.psy-footer-copy .yr { animation:psy-rainbow 3s linear infinite; }

.visit-c { position:fixed;bottom:20px;left:20px;z-index:9500;background:#000;border:2px solid #00ff88;padding:5px 12px;border-radius:5px;font-family:'Press Start 2P',monospace;font-size:8px;color:#00ff88;display:none; }
#psychoMode.active .visit-c { display:block; }

.pr { opacity:0;transform:translateY(60px);transition:all .8s cubic-bezier(.175,.885,.32,1.275); }
.pr.v { opacity:1;transform:translateY(0); }

body::after { content:'';position:fixed;inset:0;pointer-events:none;z-index:99999;opacity:0;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");background-size:128px; }
.psycho-active::after { opacity: 0.03; }
