/* ============================================================
   NOCTILUCA — official site (Web Design Lab showcase)
   midnight electro idol unit / 漆黒・ネオン・グリッチ
   ============================================================ */
:root {
  --bg: #05060a;
  --bg-2: #090b14;
  --bg-3: #0d1020;
  --panel: #0b0e1a;
  --cyan: #4df0ff;
  --magenta: #ff3df0;
  --violet: #8b5cf6;
  --lime: #b6ff3d;
  --amber: #ffb13d;
  --ink: #e8eef7;
  --ink-dim: #8a93ad;
  --ink-faint: #535d76;
  --line: rgba(77, 240, 255, .14);
  --disp: 'Orbitron', system-ui, sans-serif;
  --sans: 'Zen Kaku Gothic New', system-ui, sans-serif;
  --pixel: 'DotGothic16', monospace;
  --maxw: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; overflow-x: clip; line-height: 1.85;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--magenta); color: #05060a; }
@media (hover: hover) and (pointer: fine) { body { cursor: none; } }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 2px; }

/* 微かなフィルムノイズ（SVG turbulence をdata-URIで） */
.crt::after, .hero::before { background-repeat: repeat; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .045; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noiseShift .4s steps(3) infinite;
}
@keyframes noiseShift { 0% { transform: translate(0, 0); } 33% { transform: translate(-2%, 1%); } 66% { transform: translate(1%, -2%); } 100% { transform: translate(0, 0); } }

/* ===== global CRT / scanline overlay ===== */
.crt { position: fixed; inset: 0; z-index: 9000; pointer-events: none; mix-blend-mode: screen; opacity: .5; }
.crt::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, .28) 3px, rgba(0, 0, 0, 0) 4px);
}
.crt::after {
  content: ""; position: absolute; inset: -50%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(77, 240, 255, .05), transparent 60%),
              radial-gradient(60% 60% at 50% 100%, rgba(255, 61, 240, .05), transparent 60%);
  animation: crtFlicker 6s steps(40) infinite;
}
@keyframes crtFlicker { 0%, 97% { opacity: 1; } 98% { opacity: .82; } 99% { opacity: 1; } 100% { opacity: .9; } }

/* ===== custom cursor ===== */
.cursor { position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; mix-blend-mode: screen; }
.cursor-dot { position: fixed; left: 0; top: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); transform: translate(-50%, -50%); box-shadow: 0 0 10px var(--cyan); }
.cursor-ring { position: fixed; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--cyan); transform: translate(-50%, -50%); transition: width .25s, height .25s, border-color .25s, opacity .25s; opacity: .7; }
.cursor.hover .cursor-ring { width: 62px; height: 62px; border-color: var(--magenta); box-shadow: 0 0 18px rgba(255, 61, 240, .5); opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ===== scroll progress ===== */
.scroll-progress { position: fixed; left: 0; top: 0; height: 2px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta)); box-shadow: 0 0 14px rgba(77, 240, 255, .8); }

/* ===== glitch (RGB split) ===== */
/* isolation で独自スタッキング文脈を作り、z-index:-1 のRGBレイヤを
   文字の真下（兄弟要素より前）に固定する */
.glitch { position: relative; display: inline-block; isolation: isolate; }
.glitch::before, .glitch::after {
  content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  overflow: hidden; pointer-events: none; opacity: 0; transition: opacity .2s;
}
.glitch::before { color: var(--magenta); z-index: -1; text-shadow: 0 0 14px rgba(255, 61, 240, .6); }
.glitch::after { color: var(--cyan); z-index: -1; text-shadow: 0 0 14px rgba(77, 240, 255, .6); }
.glitch:hover::before, .glitch:hover::after, .glitch.burst::before, .glitch.burst::after { opacity: .9; }
/* 常時はごく僅か。.burst付与時のみ激しく */
.glitch-burst.burst::before { animation: glitchTop .42s steps(2) 1; }
.glitch-burst.burst::after { animation: glitchBot .42s steps(2) 1; }
@keyframes glitchTop {
  0% { transform: translate(0, 0); clip-path: inset(0 0 70% 0); }
  20% { transform: translate(-4px, -3px); clip-path: inset(10% 0 55% 0); }
  40% { transform: translate(5px, 2px); clip-path: inset(40% 0 28% 0); }
  60% { transform: translate(-3px, 1px); clip-path: inset(6% 0 72% 0); }
  80% { transform: translate(4px, -2px); clip-path: inset(28% 0 40% 0); }
  100% { transform: translate(0, 0); clip-path: inset(0 0 70% 0); }
}
@keyframes glitchBot {
  0% { transform: translate(0, 0); clip-path: inset(70% 0 0 0); }
  20% { transform: translate(4px, 2px); clip-path: inset(55% 0 8% 0); }
  40% { transform: translate(-5px, -2px); clip-path: inset(80% 0 2% 0); }
  60% { transform: translate(3px, -1px); clip-path: inset(48% 0 30% 0); }
  80% { transform: translate(-4px, 2px); clip-path: inset(66% 0 14% 0); }
  100% { transform: translate(0, 0); clip-path: inset(70% 0 0 0); }
}

/* ===== intro loader ===== */
.intro { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 40%, #0a0d1c 0%, #05060a 70%);
  transition: clip-path 1s var(--ease), opacity .6s ease .5s; clip-path: inset(0 0 0 0); }
.intro.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.intro-inner { display: grid; justify-items: center; gap: 16px; }
.intro-mark { font-family: var(--pixel); font-size: clamp(46px, 11vw, 90px); color: var(--cyan);
  text-shadow: 0 0 18px var(--cyan), 0 0 40px rgba(77, 240, 255, .5);
  opacity: 0; transform: translateY(12px); animation: introRise .9s var(--ease) forwards; }
.intro-name { font-family: var(--disp); font-weight: 800; letter-spacing: .42em; padding-left: .42em; color: var(--ink); font-size: clamp(13px, 3vw, 18px);
  opacity: 0; animation: introRise .9s var(--ease) .15s forwards; }
.intro-bar { width: 200px; height: 2px; background: rgba(77, 240, 255, .16); overflow: hidden; }
.intro-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan), var(--magenta)); box-shadow: 0 0 10px var(--cyan); }
.intro-status { font-family: var(--disp); font-weight: 600; font-size: 11px; letter-spacing: .35em; color: var(--ink-faint); }
@keyframes introRise { to { opacity: 1; transform: none; } }

/* ===== nav ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 300; display: flex; align-items: center; gap: 24px;
  padding: 20px clamp(18px, 4vw, 54px); transition: padding .35s var(--ease), background .35s, box-shadow .35s; }
.nav.solid { padding: 12px clamp(18px, 4vw, 54px); background: rgba(7, 9, 18, .72);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .9); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff, var(--cyan) 45%, transparent 72%);
  box-shadow: 0 0 12px var(--cyan), 0 0 26px rgba(77, 240, 255, .5); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: .9; transform: scale(1); } 50% { opacity: 1; transform: scale(1.18); } }
.brand-roman { font-family: var(--disp); font-weight: 800; letter-spacing: .2em; font-size: 15px; color: var(--ink); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-family: var(--disp); font-weight: 600; font-size: 12.5px; letter-spacing: .14em; position: relative; padding: 4px 0; color: var(--ink-dim); transition: color .3s; }
.nav-links a:hover { color: var(--cyan); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { font-family: var(--disp); font-weight: 700; font-size: 12px; letter-spacing: .12em; color: #05060a;
  padding: 11px 22px; border-radius: 6px; background: linear-gradient(100deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 22px -4px rgba(77, 240, 255, .7); }
.nav-burger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }
.nav-burger i { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); transition: .3s var(--ease); }

/* ===== buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--disp);
  font-weight: 700; font-size: 13.5px; letter-spacing: .06em; padding: 15px 30px; border-radius: 7px;
  transition: transform .25s var(--ease), box-shadow .3s, background .3s, color .3s; }
.btn-primary { color: #05060a; background: linear-gradient(100deg, var(--cyan), var(--violet)); box-shadow: 0 0 28px -6px rgba(77, 240, 255, .7); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 42px -6px rgba(139, 92, 246, .85); }
.btn-ghost { color: var(--ink); border: 1.5px solid rgba(77, 240, 255, .4); }
.btn-ghost:hover { background: var(--cyan); color: #05060a; border-color: transparent; transform: translateY(-3px); box-shadow: 0 0 28px -6px rgba(77, 240, 255, .7); }
.btn-light { color: #05060a; background: var(--ink); box-shadow: 0 0 24px -8px rgba(255, 255, 255, .4); }
.btn-light:hover { transform: translateY(-3px); background: var(--cyan); }
.magnetic { will-change: transform; }

/* ===== reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-stagger] { display: inline-block; opacity: 0; transform: translateY(110%); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-stagger].in { opacity: 1; transform: none; }

/* ===== hero ===== */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden;
  background: radial-gradient(120% 90% at 80% -10%, #10142a 0%, var(--bg) 55%),
              linear-gradient(180deg, #07091a, var(--bg)); }
.viz { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.hero-grid { position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: linear-gradient(rgba(77, 240, 255, .06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(77, 240, 255, .06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(110% 80% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(110% 80% at 50% 30%, #000 0%, transparent 75%);
  transform: perspective(600px) rotateX(58deg) translateY(20%) scale(1.6); transform-origin: top; }
.hero-glow { position: absolute; width: 70vw; height: 70vw; right: -16vw; top: -18vw; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, .3), transparent 62%); filter: blur(24px); animation: floaty 12s ease-in-out infinite alternate; }
@keyframes floaty { to { transform: translate(-6%, 8%) scale(1.12); } }
.hero-vignette { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 50%, transparent 50%, rgba(5, 6, 10, .85) 100%); }
.hero-inner { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 54px); }
.hero-kicker { font-family: var(--disp); font-weight: 700; letter-spacing: .34em; font-size: 11.5px; color: var(--cyan);
  text-shadow: 0 0 14px rgba(77, 240, 255, .7); margin-bottom: 22px; }
.hero-title { font-family: var(--disp); font-weight: 900; line-height: .94; font-size: clamp(46px, 13vw, 184px);
  color: var(--ink); letter-spacing: -.01em;
  text-shadow: 0 0 18px rgba(77, 240, 255, .55), 0 0 50px rgba(139, 92, 246, .45), 0 0 90px rgba(255, 61, 240, .3); }
.hero-tagline { font-family: var(--pixel); font-size: clamp(16px, 3.4vw, 30px); color: var(--magenta);
  text-shadow: 0 0 16px rgba(255, 61, 240, .6); margin-top: 18px; letter-spacing: .04em; }
.hero-sub { margin: 16px 0 32px; font-size: clamp(14px, 2vw, 18px); color: var(--ink-dim); }
.hero-sub b { color: var(--cyan); font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-marquee { position: absolute; left: 0; bottom: 64px; width: 100%; overflow: hidden; z-index: 3;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 32s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mq-item { font-family: var(--disp); font-size: 22px; font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(77, 240, 255, .35); white-space: nowrap; letter-spacing: .12em; }
.mq-item::after { content: "◆"; margin-left: 40px; -webkit-text-stroke: 0; color: rgba(255, 61, 240, .4); }
.scroll-cue { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 4;
  font-family: var(--disp); font-size: 10px; letter-spacing: .38em; color: var(--cyan); display: grid; justify-items: center; gap: 8px; }
.scroll-cue span { width: 1px; height: 40px; background: linear-gradient(var(--cyan), transparent); position: relative; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(250%); } }

/* ===== ticker (電光掲示板) ===== */
.ticker { display: flex; align-items: center; gap: 0; background: var(--bg-3); color: var(--ink); overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker-label { font-family: var(--disp); font-weight: 800; letter-spacing: .2em; font-size: 11px; padding: 13px 20px;
  background: linear-gradient(100deg, var(--cyan), var(--violet)); color: #05060a; white-space: nowrap; position: relative; }
.ticker-label::after { content: ""; position: absolute; right: 8px; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: #05060a; transform: translateY(-50%); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: .15; } }
.ticker-track { display: flex; gap: 48px; width: max-content; animation: marquee 28s linear infinite; padding-left: 48px; }
.ticker-track span { font-family: var(--pixel); font-size: 13px; white-space: nowrap; color: var(--lime); text-shadow: 0 0 8px rgba(182, 255, 61, .4); }
.ticker-track b { color: var(--magenta); margin-right: 10px; font-family: var(--disp); font-weight: 700; }

/* ===== sections base ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 54px); }
.sec-head { margin-bottom: 50px; }
.sec-en { font-family: var(--disp); font-weight: 900; font-size: clamp(38px, 8vw, 88px); letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1.2px rgba(77, 240, 255, .3); display: inline-block; line-height: 1; }
.sec-en.glitch::before, .sec-en.glitch::after { -webkit-text-stroke: 0; }
.sec-jp { font-family: var(--pixel); font-weight: 400; font-size: 15px; color: var(--cyan); margin-top: 6px; padding-left: 4px; letter-spacing: .12em; }
.sec-head.light .sec-en { -webkit-text-stroke-color: rgba(255, 61, 240, .3); }
.sec-head.light .sec-jp { color: var(--magenta); }

/* ===== news → NIGHT FEED terminal ===== */
.term { border-radius: 10px; overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(180deg, #070a14, #05070e); position: relative;
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, .9), inset 0 0 60px -40px rgba(77, 240, 255, .5); }
.term::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 3px); }
.term-bar { display: flex; align-items: center; gap: 12px; padding: 11px 16px;
  background: rgba(13, 16, 32, .9); border-bottom: 1px solid var(--line); }
.term-dots { display: flex; gap: 7px; }
.term-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--ink-faint); }
.term-dots i:nth-child(1) { background: var(--magenta); box-shadow: 0 0 8px rgba(255, 61, 240, .6); }
.term-dots i:nth-child(2) { background: var(--amber); box-shadow: 0 0 8px rgba(255, 177, 61, .5); }
.term-dots i:nth-child(3) { background: var(--lime); box-shadow: 0 0 8px rgba(182, 255, 61, .5); }
.term-title { font-family: var(--pixel); font-size: 12.5px; color: var(--cyan); letter-spacing: .02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.term-stat { margin-left: auto; font-family: var(--disp); font-weight: 700; font-size: 10px; letter-spacing: .14em; color: var(--lime); white-space: nowrap; }
.term-stat::first-letter { color: var(--lime); }
.term-body { font-family: var(--pixel); font-size: 13.5px; line-height: 1.95; color: var(--ink);
  padding: 20px clamp(16px, 3vw, 26px); min-height: 280px; }
.feed-line { display: block; white-space: pre-wrap; word-break: break-word; opacity: 0; }
.feed-line.show { opacity: 1; }
.feed-ts { color: var(--ink-faint); margin-right: 10px; }
.feed-tag { font-family: var(--disp); font-weight: 700; font-size: 11px; letter-spacing: .06em; margin-right: 10px; }
.feed-tag.ft-release { color: var(--cyan); }
.feed-tag.ft-live { color: var(--magenta); }
.feed-tag.ft-media { color: var(--lime); }
.feed-tag.ft-news { color: var(--amber); }
.feed-cursor { display: inline-block; width: 9px; height: 1.05em; vertical-align: -2px; margin-left: 2px;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: caret 1s steps(2) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.more-link { display: inline-block; margin-top: 36px; font-family: var(--disp); font-weight: 700; color: var(--cyan); font-size: 13px; }

/* ===== about ===== */
.about { position: relative; max-width: none; }
.about-bg { position: absolute; inset: 0; background:
  radial-gradient(60% 60% at 12% 15%, rgba(77, 240, 255, .1), transparent 60%),
  radial-gradient(60% 60% at 88% 85%, rgba(255, 61, 240, .1), transparent 60%), var(--bg-2); z-index: 0; }
.about-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 54px); text-align: center; }
.about-en { font-family: var(--disp); font-weight: 800; letter-spacing: .34em; color: var(--cyan); font-size: 12px; margin-bottom: 18px; text-shadow: 0 0 12px rgba(77, 240, 255, .5); }
.about-copy { font-family: var(--disp); font-weight: 800; font-size: clamp(34px, 8vw, 84px); line-height: 1.12; color: var(--ink); }
.about-copy span { display: inline-block; }
.about-copy span:nth-child(2) { color: transparent; -webkit-text-stroke: 1.5px var(--magenta); text-shadow: 0 0 24px rgba(255, 61, 240, .5); }
.about-text { max-width: 640px; margin: 30px auto 0; color: var(--ink-dim); font-size: 16px; }
/* ===== about → NIGHT STATUS neon gauges ===== */
.about-status-en { font-family: var(--disp); font-weight: 800; letter-spacing: .34em; color: var(--magenta);
  font-size: 12px; margin: 64px 0 26px; text-shadow: 0 0 12px rgba(255, 61, 240, .5); }
.gauges { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 3vw, 30px); }
.gauge { position: relative; display: grid; justify-items: center; gap: 14px; }
.gauge-ring { --val: 0; --gc: var(--cyan); position: relative; width: clamp(96px, 16vw, 150px); aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(closest-side, var(--panel) 0 71%, transparent 72% 100%),
    conic-gradient(var(--gc) calc(var(--val) * 1%), rgba(77, 240, 255, .08) 0);
  filter: drop-shadow(0 0 14px color-mix(in srgb, var(--gc) 38%, transparent)); }
.gauge-ring::before { content: ""; position: absolute; inset: 6%; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .05); }
.gauge-core { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.gauge-num { font-family: var(--disp); font-weight: 900; font-size: clamp(22px, 3.4vw, 34px); line-height: 1;
  color: var(--ink); text-shadow: 0 0 14px color-mix(in srgb, var(--gc, var(--cyan)) 55%, transparent); }
.gauge-lab { font-family: var(--disp); font-weight: 600; font-size: 11px; letter-spacing: .16em; color: var(--ink-faint); }

/* ===== members → full-bleed auto marquee ===== */
.member { max-width: none; padding: clamp(80px, 11vw, 150px) 0; overflow: hidden; }
.member-head { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 54px); }
.member-marquee { position: relative; width: 100%; overflow: hidden; margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.member-belt { display: flex; gap: 18px; width: max-content; padding: 14px clamp(20px, 5vw, 54px);
  animation: beltScroll 46s linear infinite; will-change: transform; }
@keyframes beltScroll { to { transform: translateX(-50%); } }
/* hover で帯全体を停止（pointer:fine のみ） */
@media (hover: hover) and (pointer: fine) {
  .member-marquee:hover .member-belt { animation-play-state: paused; }
}
.mcard { position: relative; flex: 0 0 auto; width: clamp(190px, 21vw, 250px); aspect-ratio: 3 / 4.4;
  border-radius: 12px; overflow: hidden; cursor: none;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease); border: 1px solid var(--line);
  --mc: var(--cyan); box-shadow: 0 14px 40px -24px rgba(0, 0, 0, .8); }
/* 夜光アブストラクト面: 写真を使わずメンバーカラーの深いグラデ＋発光イニシャル＋走査線で構成 */
/* 実写メンバー写真（黒背景×メンバーカラーのリムライト素材）。欠損時は .noimg でアブストラクト面へ */
.mcard__ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  filter: contrast(1.05) saturate(1.08); transform: scale(1.02); transition: transform .6s var(--ease), filter .6s var(--ease); }
.mcard__veil { position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 102%, color-mix(in srgb, var(--mc) 38%, transparent), transparent 64%),
    radial-gradient(90% 70% at 82% 4%, color-mix(in srgb, var(--mc) 18%, transparent), transparent 58%),
    linear-gradient(168deg, #0c0e18, #05060a 58%);
  transform: scale(1.05); transition: transform .6s var(--ease), filter .6s var(--ease); }
.mcard__init { position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%); z-index: 1;
  font-family: var(--disp); font-weight: 800; font-size: clamp(96px, 10vw, 160px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--mc);
  text-shadow: 0 0 36px color-mix(in srgb, var(--mc) 60%, transparent); opacity: .92; }
.mcard__orb { position: absolute; left: 50%; top: 42%; z-index: 1; width: 9px; height: 9px; border-radius: 50%;
  background: var(--mc); box-shadow: 0 0 16px 4px var(--mc); opacity: .9;
  animation: orbDrift 7.5s ease-in-out infinite; animation-delay: var(--d, 0s); }
@keyframes orbDrift {
  0%, 100% { transform: translate(-56px, 30px); }
  33% { transform: translate(46px, -40px); }
  66% { transform: translate(18px, 52px); }
}
.mcard__scan { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .55;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 4px); }
.mcard::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 38%, rgba(5, 6, 10, .92)); }
/* VHS ノイズ・オーバーレイ（hover時のみ可視・走査ジッタ） */
.mcard__vhs { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; mix-blend-mode: screen;
  transition: opacity .35s; background-repeat: repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='v'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23v)'/%3E%3C/svg%3E"); }
.mcard__vhs::after { content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, .4) 3px 4px); }
/* hover: 拡大＋ベール増光＋メンバーカラーのグロー強化＋VHSノイズ＋イニシャルRGB分離 */
/* 写真あり(既定): veil=色のオーバーレイ、イニシャル=左上の小モノグラム */
.mcard:not(.noimg) .mcard__veil { opacity: .38; mix-blend-mode: screen; }
.mcard:not(.noimg) .mcard__init { left: 14px; top: 10px; transform: none; font-size: 30px;
  -webkit-text-stroke: 1px var(--mc); opacity: .85; z-index: 3; }
.mcard:not(.noimg) .mcard__orb { opacity: .5; }
.mcard:not(.noimg):hover .mcard__ph { transform: scale(1.09); filter: contrast(1.1) saturate(1.25) brightness(1.08); }
.mcard:hover { transform: scale(1.07); z-index: 5;
  box-shadow: 0 0 52px -6px var(--mc), 0 0 18px -2px var(--mc), 0 18px 50px -20px rgba(0, 0, 0, .9); }
.mcard:hover .mcard__veil { transform: scale(1.12); filter: brightness(1.35) saturate(1.2); }
.mcard:hover .mcard__vhs { opacity: .5; animation: vhsJit .18s steps(3) infinite; }
@keyframes vhsJit { 0% { transform: translate(0, 0); } 50% { transform: translate(-2%, 1%); } 100% { transform: translate(1%, -1%); } }
.mcard.noimg:hover .mcard__init { animation: rgbShift .5s steps(2) 2; }
.mcard:not(.noimg):hover .mcard__init { animation: monoFlick .5s steps(2) 2; }
/* coarse タップ時の拡大（hover代替）。pointer:fine では .tap は付かない */
.mcard.tap { transform: scale(1.07); z-index: 5;
  box-shadow: 0 0 52px -6px var(--mc), 0 0 18px -2px var(--mc), 0 18px 50px -20px rgba(0, 0, 0, .9); }
.mcard.tap .mcard__veil { transform: scale(1.12); filter: brightness(1.35) saturate(1.2); }
.mcard.tap .mcard__vhs { opacity: .5; }
@keyframes rgbShift {
  0%, 100% { transform: translate(-50%, -50%); text-shadow: 0 0 36px color-mix(in srgb, var(--mc) 60%, transparent); }
  25% { transform: translate(calc(-50% - 5px), calc(-50% + 2px)); text-shadow: -7px 0 0 rgba(77, 240, 255, .8), 7px 0 0 rgba(255, 61, 240, .8); }
  60% { transform: translate(calc(-50% + 4px), calc(-50% - 2px)); text-shadow: 6px 0 0 rgba(77, 240, 255, .8), -6px 0 0 rgba(255, 61, 240, .8); }
}
.mcard__info { position: absolute; left: 16px; bottom: 14px; z-index: 4; color: #fff; }
.mcard__no { font-family: var(--disp); font-weight: 800; font-size: 11px; letter-spacing: .2em; color: var(--mc); text-shadow: 0 0 10px var(--mc); }
.mcard__name { font-family: var(--sans); font-weight: 900; font-size: 19px; line-height: 1.12; margin-top: 3px; text-shadow: 0 1px 8px rgba(0, 0, 0, .8); }
.mcard__roman { font-family: var(--disp); font-weight: 600; font-size: 9.5px; letter-spacing: .14em; opacity: .8; margin-top: 2px; }
.mcard__color { position: absolute; top: 12px; right: 12px; z-index: 4; width: 12px; height: 12px; border-radius: 50%; background: var(--mc); box-shadow: 0 0 12px var(--mc), 0 0 0 3px rgba(5, 6, 10, .6); }

/* ===== discography (dark) ===== */
.disco { position: relative; max-width: none; background: linear-gradient(180deg, var(--bg-2), #06070f); overflow: hidden; }
.disco > * { position: relative; z-index: 1; max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.disco { padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 54px); }
.disco-glow { position: absolute; z-index: 0; width: 70vw; height: 70vw; left: -20vw; top: 8%;
  background: radial-gradient(circle, rgba(255, 61, 240, .18), transparent 62%); filter: blur(34px); }
/* ===== discography → 3D coverflow ===== */
.flow { position: relative; height: clamp(330px, 46vw, 460px); margin-bottom: 60px;
  perspective: 1400px; -webkit-perspective: 1400px; }
.flow-stage { position: absolute; inset: 0; transform-style: preserve-3d; }
.cf { position: absolute; left: 50%; top: 50%; width: clamp(190px, 26vw, 280px); aspect-ratio: 1;
  margin-left: calc(clamp(190px, 26vw, 280px) / -2); margin-top: calc(clamp(190px, 26vw, 280px) / -2);
  border-radius: 14px; overflow: hidden; cursor: none; will-change: transform;
  transition: transform .55s var(--ease), opacity .55s var(--ease), filter .55s var(--ease);
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, .9); border: 1px solid var(--line); }
.cf-art { position: absolute; inset: 0; }
.cf::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(160deg, rgba(255, 255, 255, .14), transparent 42%); mix-blend-mode: screen; }
.cf-foil { position: absolute; inset: -40%; z-index: 1; mix-blend-mode: color-dodge; opacity: .5;
  background: conic-gradient(from 0deg, #ff3df0, #4df0ff, #b6ff3d, #8b5cf6, #ffb13d, #ff3df0); animation: foilSpin 9s linear infinite; }
@keyframes foilSpin { to { transform: rotate(360deg); } }
.cf-tag { position: absolute; left: 12px; bottom: 12px; z-index: 3; font-family: var(--disp); font-weight: 800;
  font-size: 11px; letter-spacing: .1em; color: #fff; text-shadow: 0 1px 8px rgba(0, 0, 0, .9); }
.cf.active { filter: none; }
.cf.side { filter: brightness(.5) saturate(.85); }
.cf.active::after { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  box-shadow: inset 0 0 40px -8px rgba(77, 240, 255, .55); border-radius: 14px; }
.flow-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 48px; height: 48px;
  border-radius: 50%; border: 1.5px solid rgba(77, 240, 255, .4); background: rgba(7, 9, 18, .7); cursor: none;
  display: grid; place-items: center; color: var(--cyan); transition: background .3s, box-shadow .3s, transform .3s; }
.flow-nav span { font-family: var(--disp); font-size: 24px; line-height: 1; margin-top: -3px; }
.flow-nav.prev { left: clamp(4px, 3vw, 30px); }
.flow-nav.next { right: clamp(4px, 3vw, 30px); }
.flow-nav:hover { background: var(--cyan); color: #05060a; box-shadow: 0 0 26px -6px rgba(77, 240, 255, .8); }
.flow-meta { position: absolute; left: 0; right: 0; bottom: -8px; text-align: center; z-index: 5; }
.flow-meta b { display: block; font-family: var(--sans); font-weight: 900; font-size: clamp(20px, 3.4vw, 30px); color: var(--ink); }
.flow-meta span { font-family: var(--disp); font-size: 12px; letter-spacing: .12em; color: var(--cyan); }

/* ===== pseudo music player ===== */
.player { max-width: 760px; margin: 0 auto; border-radius: 14px; padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(180deg, rgba(13, 16, 32, .85), rgba(7, 9, 18, .85)); border: 1px solid var(--line);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, .9), inset 0 0 70px -50px rgba(139, 92, 246, .6); backdrop-filter: blur(8px); }
.player-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.player-eq { display: flex; align-items: flex-end; gap: 3px; height: 22px; }
.player-eq i { width: 3px; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); border-radius: 1px; height: 30%; }
.player.playing .player-eq i { animation: eq 1s ease-in-out infinite; }
.player.playing .player-eq i:nth-child(1) { animation-delay: -.8s; }
.player.playing .player-eq i:nth-child(2) { animation-delay: -.4s; }
.player.playing .player-eq i:nth-child(3) { animation-delay: -.6s; }
.player.playing .player-eq i:nth-child(4) { animation-delay: -.2s; }
.player.playing .player-eq i:nth-child(5) { animation-delay: -.5s; }
.player-now { font-family: var(--sans); font-weight: 900; font-size: 16px; color: var(--ink); }
.player-clock { margin-left: auto; font-family: var(--disp); font-size: 13px; color: var(--ink-dim); white-space: nowrap; }
.player-wave { display: block; width: 100%; height: 92px; border-radius: 8px; background: rgba(5, 6, 10, .55); }
.player-ctl { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.player-play { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 50%; cursor: none; border: 0;
  background: linear-gradient(120deg, var(--cyan), var(--violet)); color: #05060a; font-size: 17px;
  display: grid; place-items: center; box-shadow: 0 0 24px -6px rgba(77, 240, 255, .7); transition: transform .25s var(--ease), box-shadow .3s; }
.player-play:hover { transform: scale(1.06); box-shadow: 0 0 34px -6px rgba(139, 92, 246, .85); }
.player-seek { flex: 1; -webkit-appearance: none; appearance: none; height: 5px; border-radius: 3px; cursor: none;
  background: linear-gradient(90deg, var(--cyan) var(--p, 0%), rgba(77, 240, 255, .14) var(--p, 0%)); }
.player-seek::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 15px; height: 15px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan); cursor: none; }
.player-seek::-moz-range-thumb { width: 15px; height: 15px; border: 0; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.player-note { margin-top: 12px; font-family: var(--disp); font-size: 10.5px; letter-spacing: .08em; color: var(--ink-faint); }

/* ===== live ===== */
.live { position: relative; max-width: none; background: #06070f; }
.live > .sec-head, .live > .live-tour, .live > .route { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.live { padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 54px); }
.live-tour { font-family: var(--disp); font-weight: 800; font-size: clamp(24px, 5vw, 44px); margin-bottom: 40px; color: var(--ink); letter-spacing: .02em; }
.live-tour span { color: var(--magenta); text-shadow: 0 0 18px rgba(255, 61, 240, .5); white-space: nowrap; }
/* ===== live → subway-style tour map ===== */
.route { width: 100%; overflow-x: auto; overflow-y: hidden; padding: 4px 0 8px; }
.route-svg { width: 100%; min-width: 760px; height: auto; display: block; }
/* 路線（ネオンライン）: dashで描画→IO到達で描かれる */
.route-line { fill: none; stroke: var(--cyan); stroke-width: 4; stroke-linecap: round; filter: url(#routeGlow);
  stroke-dasharray: var(--len, 1200); stroke-dashoffset: var(--len, 1200); transition: stroke-dashoffset 2.4s var(--ease); }
.route.in .route-line { stroke-dashoffset: 0; }
/* 駅ノード */
.stn-node { fill: #05060a; stroke: var(--ink-faint); stroke-width: 3; transition: stroke .5s, fill .5s; }
.stn-halo { fill: none; opacity: 0; transition: opacity .5s; }
.station.lit .stn-node { stroke: var(--sc, var(--cyan)); fill: color-mix(in srgb, var(--sc, var(--cyan)) 26%, #05060a); filter: url(#routeGlow); }
.station.lit .stn-halo { opacity: .9; stroke: var(--sc, var(--cyan)); stroke-width: 2; filter: url(#routeGlow); }
.station.sold .stn-node { stroke: var(--ink-faint); fill: #05060a; filter: none; }
.station:hover .stn-node { stroke-width: 4; }
.station.lit:hover .stn-halo { opacity: 1; animation: stnPing 1.1s ease-out infinite; }
@keyframes stnPing { 0% { transform-box: fill-box; transform-origin: center; transform: scale(1); opacity: .9; } 100% { transform: scale(1.7); opacity: 0; } }
.stn-city { font-family: var(--disp); font-weight: 800; font-size: 17px; letter-spacing: .08em; fill: var(--ink); }
.station.sold .stn-city { fill: var(--ink-faint); }
.stn-date { font-family: var(--disp); font-weight: 700; font-size: 14px; fill: var(--cyan); }
.station.sold .stn-date { fill: var(--magenta); }
.stn-venue { font-family: var(--sans); font-weight: 500; font-size: 12.5px; fill: var(--ink-dim); }
.stn-flag { font-family: var(--disp); font-weight: 800; font-size: 11px; letter-spacing: .1em; fill: var(--magenta); }
.station { cursor: none; }

/* ===== media / fc → terminal sign-up ===== */
.media { position: relative; }
.join-term { max-width: 760px; margin: 0 auto; }
.join-term .term-body { min-height: 0; }
.join-cmd { font-family: var(--pixel); font-size: 14px; color: var(--lime); text-shadow: 0 0 8px rgba(182, 255, 61, .35);
  white-space: pre-wrap; word-break: break-word; min-height: 1.95em; }
.join-cmd .feed-cursor { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.join-form { display: flex; align-items: stretch; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.join-field { flex: 1; min-width: 220px; display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 8px; padding: 4px 14px; background: rgba(5, 6, 10, .6);
  transition: border-color .3s, box-shadow .3s; }
.join-field:focus-within { border-color: var(--cyan); box-shadow: 0 0 22px -8px rgba(77, 240, 255, .7); }
.join-prompt { font-family: var(--disp); font-weight: 700; font-size: 11px; letter-spacing: .12em; color: var(--cyan); white-space: nowrap; }
.join-input { flex: 1; min-width: 0; background: none; border: 0; outline: none; color: var(--ink);
  font-family: var(--pixel); font-size: 14px; padding: 13px 0; caret-color: var(--cyan); }
.join-input::placeholder { color: var(--ink-faint); }
.join-btn { font-family: var(--disp); font-weight: 700; font-size: 13px; letter-spacing: .1em; color: #05060a;
  padding: 0 28px; border: 0; border-radius: 8px; cursor: none; background: linear-gradient(100deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 24px -6px rgba(77, 240, 255, .7); transition: transform .25s var(--ease), box-shadow .3s; }
.join-btn:hover { transform: translateY(-2px); box-shadow: 0 0 34px -6px rgba(255, 61, 240, .8); }
.join-out { margin-top: 18px; font-family: var(--pixel); font-size: 14px; line-height: 1.9; color: var(--cyan);
  text-shadow: 0 0 10px rgba(77, 240, 255, .4); min-height: 1.9em; white-space: pre-wrap; word-break: break-word; }
.join-out.granted { color: var(--lime); text-shadow: 0 0 10px rgba(182, 255, 61, .45); }
/* SNS ネオンアイコン行 */
.sns-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 44px; }
.sns-ico { display: flex; align-items: center; gap: 12px; padding: 13px 20px; border-radius: 10px;
  background: rgba(77, 240, 255, .05); border: 1px solid var(--line);
  transition: transform .3s var(--ease), background .3s, box-shadow .3s, border-color .3s; }
.sns-ico:hover { transform: translateY(-4px); background: rgba(77, 240, 255, .1); border-color: var(--cyan);
  box-shadow: 0 0 26px -8px rgba(77, 240, 255, .7); }
.sns-ico b { font-family: var(--disp); font-weight: 800; width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(120deg, var(--cyan), var(--violet)); color: #05060a; display: grid; place-items: center; font-size: 12px;
  box-shadow: 0 0 14px -4px rgba(77, 240, 255, .6); }
.sns-ico span { font-size: 12.5px; font-weight: 500; color: var(--ink); font-family: var(--disp); letter-spacing: .04em; }
.hashtag { text-align: center; font-family: var(--disp); font-weight: 900; font-size: clamp(28px, 7vw, 76px);
  color: transparent; -webkit-text-stroke: 1px rgba(255, 61, 240, .25); margin-top: 60px; letter-spacing: .04em; }

/* ===== footer ===== */
.footer { position: relative; background: #04050a; color: var(--ink); overflow: hidden; padding-top: 40px; border-top: 1px solid var(--line); }
.footer-big { font-family: var(--disp); font-weight: 900; font-size: clamp(56px, 19vw, 290px); line-height: .8; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(77, 240, 255, .22); white-space: nowrap; user-select: none; display: block; }
.footer-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 30px clamp(20px, 5vw, 54px) 50px; text-align: center; }
.footer-nav { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.footer-nav a { font-family: var(--disp); font-weight: 600; font-size: 12px; letter-spacing: .12em; color: var(--ink-dim); transition: color .3s; }
.footer-nav a:hover { color: var(--cyan); }
.footer-note { color: var(--ink-faint); font-size: 12px; max-width: 580px; margin: 0 auto 14px; line-height: 1.7; }
.footer-copy { color: var(--ink-faint); font-family: var(--disp); font-size: 12px; letter-spacing: .1em; }

/* ===== responsive ===== */
@media (max-width: 900px) {
  .gauges { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .flow { height: clamp(280px, 70vw, 380px); }
  .player-now { font-size: 14px; }
}
@media (max-width: 680px) {
  .gauges { grid-template-columns: repeat(2, 1fr); }
  .term-title { font-size: 11px; }
  .term-body { font-size: 12.5px; }
  .join-form { flex-direction: column; }
  .join-btn { padding: 14px; }
  .nav-links, .nav-cta { position: fixed; }
  .nav-links { inset: 0 0 auto; top: 0; height: 100svh; flex-direction: column; justify-content: center; align-items: center; gap: 28px;
    background: rgba(5, 6, 10, .97); backdrop-filter: blur(14px); transform: translateX(100%); transition: transform .5s var(--ease); }
  .nav-links a { font-size: 22px; color: var(--ink); }
  .nav.open .nav-links { transform: none; }
  .nav-cta { bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 320; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .nav.open .nav-cta { opacity: 1; pointer-events: auto; }
  .nav-burger { display: block; margin-left: auto; z-index: 330; }
  .nav.open .nav-burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-burger i:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mcard { width: clamp(160px, 56vw, 210px); }
  .flow-nav { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], [data-stagger] { opacity: 1 !important; transform: none !important; }
  .player-eq i, .player.playing .player-eq i { height: 60% !important; }
  /* マーキーは低速で継続（=止めない） */
  .member-belt { animation-duration: 140s !important; animation-iteration-count: infinite !important; }
  /* ゲージ・ターミナル・路線は即値（JS側でも分岐するが保険） */
  .feed-line { opacity: 1 !important; }
  .route .route-line { transition: none !important; }
}

@keyframes monoFlick {
  0%, 100% { transform: none; }
  25% { transform: translate(-3px, 1px); text-shadow: -5px 0 0 rgba(77, 240, 255, .8), 5px 0 0 rgba(255, 61, 240, .8); }
  60% { transform: translate(3px, -1px); text-shadow: 4px 0 0 rgba(77, 240, 255, .8), -4px 0 0 rgba(255, 61, 240, .8); }
}
