/* ============================================================
   TOKYO MUSIC JAPAN — SHIBUYA AFTER-DARK NEON
   dark asphalt + neon signage + vertical kanji
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600;800&family=Zen+Old+Mincho:wght@400;700;900&family=Archivo+Black&family=JetBrains+Mono:wght@400;500;700&family=Noto+Sans+JP:wght@400;700;900&family=Bebas+Neue&display=swap');

:root {
    --bg: #0A0608;               /* near-black asphalt */
    --bg-2: #12090D;             /* panel */
    --bg-3: #1C1014;             /* hover */
    --line: #2A1A1F;             /* subtle border */
    --line-2: #3A1E26;
    --ink: #F4E6D4;              /* warm paper text */
    --ink-60: #F4E6D499;
    --ink-30: #F4E6D455;

    --neon-red: #FF2E4A;         /* main signage red */
    --neon-red-glow: #FF2E4A88;
    --neon-pink: #FF3D8B;
    --neon-amber: #FFB347;       /* warm window light */
    --neon-yellow: #FFDC5E;
    --neon-blue: #5EB8FF;
    --neon-green: #7FFF6A;

    --serif: 'Shippori Mincho', 'Zen Old Mincho', 'Times New Roman', serif;
    --disp: 'Zen Old Mincho', serif;
    --block: 'Archivo Black', sans-serif;
    --bebas: 'Bebas Neue', sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
    --jp: 'Noto Sans JP', sans-serif;
}

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

html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* scanline + grain */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255,255,255,0.008) 3px, rgba(255,255,255,0.008) 4px);
    pointer-events: none;
    z-index: 200;
}
body::after { display: none; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--neon-red); }

button { font-family: var(--mono); cursor: pointer; }
input, select, textarea { font-family: var(--mono); font-size: 14px; }
ul { list-style: none; }

/* ============================================================
   SHELL + TOP BAR + MAST
   ============================================================ */

.shell { position: relative; z-index: 2; max-width: 1480px; margin: 0 auto; padding: 0 32px; }

.topbar {
    position: relative; z-index: 10;
    background: #050305;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}
.topbar-inner {
    display: flex; align-items: center; gap: 20px;
    padding: 9px 32px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-60);
}
.topbar .blink {
    display: inline-block; width: 7px; height: 7px;
    background: var(--neon-red);
    box-shadow: 0 0 8px var(--neon-red), 0 0 14px var(--neon-red-glow);
    border-radius: 50%;
    animation: blink 1.2s steps(2, start) infinite;
    margin-right: 8px; vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0.3; } }
.topbar .sep { opacity: 0.3; }
.topbar .jp { font-family: var(--jp); font-weight: 700; letter-spacing: 0.1em; color: var(--neon-pink); }
.topbar .spacer { flex: 1; }
.topbar-ccy a {
    color: var(--ink-60);
    padding: 3px 7px;
    margin: 0 1px;
    border: 1px solid transparent;
}
.topbar-ccy a.active {
    color: var(--neon-amber);
    border-color: var(--neon-amber);
    text-shadow: 0 0 6px var(--neon-amber);
}
.topbar-ccy a:hover { color: var(--neon-red); }

/* ============================================================
   HERO — full-bleed Shibuya photo with overlay
   ============================================================ */

.hero-city {
    position: relative;
    min-height: 820px;
    background-image:
        linear-gradient(180deg, rgba(10,6,8,0.88) 0%, rgba(10,6,8,0.55) 18%, rgba(10,6,8,0.55) 55%, rgba(10,6,8,0.92) 92%, var(--bg) 100%),
        url('../../images/shibuya-night-sm.jpg');
    background-size: cover;
    background-position: center 60%;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.hero-city::before {
    /* vignette */
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(10,6,8,0.6) 100%);
    pointer-events: none;
}

/* Masthead over the hero */
.mast {
    position: relative;
    z-index: 3;
    padding: 20px 28px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(180deg, rgba(5,3,5,0.9), rgba(5,3,5,0.78));
    backdrop-filter: blur(4px);
}
body > [data-shell="mast"] .mast,
body > [data-shell="nav"] .nav {
    background: #080508;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}
body > [data-shell="mast"] {
    border-top: 1px solid var(--line);
    background: #050305;
}
.mast-brand {
    text-align: left;
    line-height: 1;
}
.mast-brand h1 {
    font-family: var(--disp);
    font-weight: 900;
    font-size: 32px;
    letter-spacing: 0.01em;
    line-height: 1;
    color: var(--ink);
    white-space: nowrap;
}
.mast-brand h1 .red {
    color: var(--neon-red);
    text-shadow: 0 0 10px rgba(255,46,74,0.5);
}
.mast-brand .sub {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    margin-top: 6px;
    color: var(--ink-60);
    text-transform: uppercase;
}

/* Nav strip */
.nav {
    position: relative;
    z-index: 3;
    padding: 10px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(5,3,5,0.82);
    backdrop-filter: blur(2px);
    border-left: 1px solid rgba(255,255,255,0.04);
    border-right: 1px solid rgba(255,255,255,0.04);
}
.nav ul { display: flex; gap: 2px; flex-wrap: wrap; }
.nav ul li a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    border: 1px solid transparent;
    color: var(--ink-60);
}
.nav ul li a .n { color: var(--neon-red); font-size: 10px; }
.nav ul li a:hover { color: var(--neon-amber); border-color: var(--line-2); }
.nav ul li a.current {
    color: var(--ink);
    border-color: var(--neon-red);
    background: rgba(255,46,74,0.08);
    box-shadow: inset 0 0 12px rgba(255,46,74,0.15);
}
.nav ul li a.current .n { color: var(--neon-amber); }
.nav .est {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--ink-60);
    letter-spacing: 0;
    text-transform: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    padding: 100px 0 110px;
    text-align: center;
}
.kanji-column { display: none; }

.hero-center { text-align: center; max-width: 820px; margin: 0 auto; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(255,46,74,0.35), inset 0 0 10px rgba(255,46,74,0.15);
    margin-bottom: 28px;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--neon-red);
    box-shadow: 0 0 8px var(--neon-red);
    animation: blink 1.2s steps(2, start) infinite;
}

.hero-title {
    font-family: var(--disp);
    font-weight: 900;
    font-size: clamp(44px, 7vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}
.hero-title .hero-sub {
    display: block;
    font-size: 0.48em;
    line-height: 1.1;
    margin-top: 18px;
    letter-spacing: 0;
    color: var(--ink);
    opacity: 0.92;
}
.hero-title .glow-red {
    color: var(--neon-red);
    text-shadow: 0 0 20px var(--neon-red-glow), 0 0 50px rgba(255,46,74,0.4);
}

.hero-lead {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.45;
    color: var(--ink);
    max-width: 56ch;
    margin: 0 auto 40px;
    opacity: 0.88;
}
.hero-lead b {
    color: var(--neon-amber);
    font-weight: 400;
    text-shadow: 0 0 8px rgba(255,179,71,0.4);
}

/* ============================================================
   TERMINAL SEARCH
   ============================================================ */

.terminal {
    position: relative;
    z-index: 4;
    max-width: 920px;
    margin: -40px auto 0;
    border: 1px solid var(--neon-red);
    background: rgba(8, 4, 6, 0.92);
    backdrop-filter: blur(8px);
    box-shadow:
        0 0 40px rgba(255,46,74,0.35),
        0 24px 80px rgba(0,0,0,0.7),
        inset 0 0 40px rgba(255,46,74,0.04);
}
.terminal-bar {
    background: linear-gradient(90deg, var(--neon-red), #B01E33);
    color: #fff;
    padding: 8px 16px;
    display: flex; align-items: center; gap: 12px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}
.terminal-bar .dots { display: flex; gap: 5px; }
.terminal-bar .dots i {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
}
.terminal-bar .dots i:first-child { background: var(--neon-yellow); box-shadow: 0 0 6px var(--neon-yellow); }
.terminal-bar .path { flex: 1; }
.terminal-bar .path b { color: var(--neon-yellow); }

.terminal-tabs {
    display: flex;
    background: #0D0709;
    border-bottom: 1px solid var(--line-2);
}
.terminal-tabs button {
    flex: 1;
    padding: 14px 14px;
    background: transparent;
    border: none;
    border-right: 1px solid var(--line-2);
    font-family: var(--block);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-60);
    text-align: left;
    display: flex; align-items: center; gap: 10px;
    transition: all 0.15s;
}
.terminal-tabs button:last-child { border-right: none; }
.terminal-tabs button:hover { color: var(--ink); background: rgba(255,46,74,0.06); }
.terminal-tabs button.on {
    color: var(--neon-amber);
    background: rgba(255,179,71,0.08);
    box-shadow: inset 0 -2px 0 var(--neon-amber), inset 0 0 20px rgba(255,179,71,0.08);
    text-shadow: 0 0 8px rgba(255,179,71,0.6);
}
.terminal-tabs button .num {
    font-family: var(--mono); font-size: 10px;
    color: var(--neon-red); text-shadow: 0 0 6px rgba(255,46,74,0.6);
}

.terminal-body { padding: 24px 22px; display: grid; gap: 18px; background: #0A0507; }
.terminal-body .prompt { display: flex; align-items: center; gap: 12px; }
.terminal-body .prompt .caret {
    font-family: var(--mono); font-size: 18px;
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
    animation: caret 1s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0.2; } }
.terminal-body .prompt input,
.terminal-body .prompt select {
    flex: 1;
    border: none;
    border-bottom: 1px solid var(--line-2);
    background: transparent;
    padding: 10px 0;
    font-family: var(--mono);
    font-size: 22px;
    color: var(--ink);
    outline: none;
    letter-spacing: 0.02em;
}
.terminal-body .prompt input:focus,
.terminal-body .prompt select:focus {
    border-bottom-color: var(--neon-amber);
    box-shadow: 0 2px 10px rgba(255,179,71,0.2);
}
.terminal-body .prompt input::placeholder { color: var(--ink-30); font-style: italic; }
.terminal-body .prompt select option { background: var(--bg-2); color: var(--ink); }

.terminal-actions {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 6px;
    border-top: 1px dashed var(--line-2);
}
.terminal-actions .hint {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--ink-60);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.terminal-actions .hint b { color: var(--neon-amber); }
.terminal-actions .hint kbd {
    background: var(--bg-3);
    border: 1px solid var(--line-2);
    color: var(--ink);
    padding: 2px 6px;
    font-family: var(--mono);
    font-size: 10px;
    margin: 0 3px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent;
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
    padding: 11px 22px;
    font-family: var(--block);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 0 0 12px rgba(255,46,74,0.25), inset 0 0 12px rgba(255,46,74,0.08);
    text-shadow: 0 0 6px rgba(255,46,74,0.5);
}
.btn:hover {
    background: var(--neon-red);
    color: #fff;
    box-shadow: 0 0 24px var(--neon-red-glow), 0 0 60px rgba(255,46,74,0.3);
    text-shadow: 0 0 8px rgba(255,255,255,0.6);
}
.btn-amber {
    color: var(--neon-amber);
    border-color: var(--neon-amber);
    box-shadow: 0 0 12px rgba(255,179,71,0.3), inset 0 0 12px rgba(255,179,71,0.08);
    text-shadow: 0 0 6px rgba(255,179,71,0.6);
}
.btn-amber:hover { background: var(--neon-amber); color: var(--bg); box-shadow: 0 0 24px rgba(255,179,71,0.6); }
.btn-ghost {
    color: var(--ink);
    border-color: var(--line-2);
    box-shadow: none;
    text-shadow: none;
}
.btn-ghost:hover { background: var(--bg-3); color: var(--ink); border-color: var(--ink); }

/* ============================================================
   NEWS TICKER
   ============================================================ */

.news-ticker {
    display: flex; align-items: stretch;
    background: #0D0709;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink-60);
}
.news-ticker .label {
    background: var(--neon-red);
    color: #fff;
    padding: 9px 16px;
    font-family: var(--block);
    font-size: 10px;
    letter-spacing: 0.25em;
    white-space: nowrap;
    display: flex; align-items: center;
}
.news-ticker .track { flex: 1; overflow: hidden; position: relative; }
.news-ticker .track-inner {
    display: flex; white-space: nowrap;
    animation: ticker 80s linear infinite;
    padding: 9px 0;
}
.news-ticker .track-inner span { padding: 0 32px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADS
   ============================================================ */

.section-head {
    display: flex; align-items: baseline; gap: 20px;
    padding: 56px 0 28px;
    margin-top: 40px;
}
.section-head h3 {
    font-family: var(--disp);
    font-weight: 900;
    font-size: 52px;
    letter-spacing: -0.015em;
    line-height: 1;
    color: var(--ink);
}
.section-head h3 em {
    color: var(--neon-red);
    font-style: normal;
    text-shadow: 0 0 16px rgba(255,46,74,0.5);
}
.section-head h3 .amb {
    color: var(--neon-amber);
    text-shadow: 0 0 16px rgba(255,179,71,0.5);
    font-style: normal;
}
.section-head .jp {
    font-family: var(--jp); font-weight: 900;
    font-size: 12px; letter-spacing: 0.3em;
    color: var(--neon-pink);
    text-shadow: 0 0 8px rgba(255,61,139,0.5);
    margin-left: auto;
    padding-left: 40px;
    border-left: 1px solid var(--line-2);
}
.section-head .meta {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-60);
    padding-left: 40px;
    border-left: 1px solid var(--line-2);
    margin-left: auto;
}

/* ============================================================
   FEATURE CARDS — neon signboards
   ============================================================ */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-bottom: 16px;
}
.feature {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    padding: 22px 20px 20px;
    min-height: 320px;
    display: flex; flex-direction: column;
    transition: all 0.2s;
    overflow: hidden;
}
.feature::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    background: var(--neon-red);
    opacity: 0.5;
    transition: all 0.2s;
}
.feature:hover {
    transform: translateY(-3px);
    border-color: var(--neon-red);
    box-shadow: 0 0 24px rgba(255,46,74,0.2);
}
.feature:hover::before { opacity: 1; box-shadow: 0 0 12px var(--neon-red); }

.feature .num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--ink-30);
    margin-bottom: 14px;
}
.feature h4 {
    font-family: var(--disp);
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 14px;
    color: var(--ink);
}
.feature p {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-60);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}
.feature form { display: flex; flex-direction: column; gap: 10px; }
.feature input[type=text],
.feature select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line-2);
    background: var(--bg);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 13px;
    outline: none;
}
.feature input:focus, .feature select:focus {
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255,46,74,0.25);
}
.feature input::placeholder { color: var(--ink-30); }
.feature option { background: var(--bg-2); }

/* ============================================================
   SHELF TILES
   ============================================================ */

.shelf {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    padding-bottom: 16px;
}
.tile {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    transition: all 0.2s;
    overflow: hidden;
}
.tile:hover {
    transform: translateY(-4px);
    border-color: var(--neon-red);
    box-shadow: 0 0 24px rgba(255,46,74,0.3);
}
.tile .cover {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}
.tile .cover .obi {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 14px;
    background: var(--neon-red);
    z-index: 2;
    box-shadow: 0 0 12px rgba(255,46,74,0.8);
}
.tile .cover .obi span {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%) rotate(-90deg);
    font-family: var(--jp); font-weight: 900;
    font-size: 8px; color: #fff;
    letter-spacing: 0.3em; white-space: nowrap;
}
.tile .cover .art {
    position: absolute;
    inset: 0 0 0 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--block);
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    line-height: 1;
    text-shadow: 0 0 16px rgba(255,255,255,0.4);
}
.tile .cover .cover-img {
    position: absolute;
    inset: 0 0 0 14px;
    width: calc(100% - 14px); height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    z-index: 1;
}
.tile .meta {
    padding: 12px 12px 14px;
    border-top: 1px solid var(--line-2);
    font-family: var(--mono);
    font-size: 11px;
}
.tile .meta .artist {
    font-family: var(--block);
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    text-transform: uppercase;
    color: var(--ink);
}
.tile .meta .title {
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: var(--ink-60);
}
.tile .meta .row {
    display: flex; justify-content: space-between;
    font-size: 10px; color: var(--ink-60);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tile .meta .price {
    font-family: var(--block);
    color: var(--neon-amber);
    font-size: 13px;
    text-shadow: 0 0 6px rgba(255,179,71,0.4);
}
.tile .badge {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--neon-amber);
    color: var(--bg);
    padding: 4px 9px;
    font-family: var(--block);
    font-size: 9px;
    letter-spacing: 0.15em;
    z-index: 5;
    box-shadow: 0 0 12px rgba(255,179,71,0.6);
}
.tile .badge.rare {
    background: var(--neon-red);
    color: #fff;
    box-shadow: 0 0 14px rgba(255,46,74,0.7);
}
.tile.added {
    border-color: var(--neon-amber);
    box-shadow: 0 0 28px rgba(255,179,71,0.55), inset 0 0 24px rgba(255,179,71,0.18);
}
.tile.added::after {
    content: '+ ADDED TO CART';
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--block);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--bg);
    background: var(--neon-amber);
    text-shadow: none;
    z-index: 10;
    animation: tile-added-flash 1.05s ease-out forwards;
    pointer-events: none;
}
@keyframes tile-added-flash {
    0%   { opacity: 0;    transform: scale(0.96); }
    18%  { opacity: 0.96; transform: scale(1); }
    72%  { opacity: 0.96; transform: scale(1); }
    100% { opacity: 0;    transform: scale(1); }
}

/* cover color palettes — neon-ish */
.cover.c1 { background: linear-gradient(135deg, #1E2F8E, #0A1550); }
.cover.c2 { background: linear-gradient(135deg, #B01E33, #4A0A14); }
.cover.c3 { background: linear-gradient(135deg, #0F5540, #02241A); }
.cover.c4 { background: linear-gradient(135deg, #2A1014, #050203); }
.cover.c5 { background: linear-gradient(135deg, #C48C1F, #5A3D08); }
.cover.c6 { background: linear-gradient(135deg, #5A1F6B, #2A0833); }
.cover.c7 { background: linear-gradient(135deg, #A03318, #3D0F05); }
.cover.c8 { background: linear-gradient(135deg, #1A2330, #050810); }

/* ============================================================
   RESULTS PAGES — HEAD
   ============================================================ */

.page-top {
    padding: 24px 0 0;
    border-bottom: 1px solid var(--line);
}

.results-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
    padding: 40px 0 24px;
}
.results-head h2 {
    font-family: var(--disp);
    font-weight: 900;
    font-size: 68px;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.results-head h2 em { color: var(--neon-red); font-style: normal; text-shadow: 0 0 16px rgba(255,46,74,0.5); }
.results-head .query-chip {
    display: inline-block;
    background: var(--neon-red);
    color: #fff;
    padding: 4px 14px;
    font-family: var(--block);
    font-size: 28px;
    letter-spacing: 0.02em;
    font-style: normal;
    text-transform: uppercase;
    box-shadow: 0 0 24px rgba(255,46,74,0.6);
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
}
.results-head .stats { font-family: var(--mono); font-size: 12px; text-align: right; line-height: 1.8; }
.results-head .stats .big {
    font-family: var(--block);
    font-size: 44px;
    color: var(--neon-amber);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 12px rgba(255,179,71,0.4);
}
.results-head .stats .lbl {
    display: block;
    font-size: 10px;
    color: var(--ink-60);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-eyebrow-inline {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--neon-amber);
}
.hero-eyebrow-inline .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon-red); box-shadow: 0 0 8px var(--neon-red); }
.hero-eyebrow-inline .jp { font-family: var(--jp); font-weight: 900; color: var(--neon-pink); letter-spacing: 0.2em; text-shadow: 0 0 8px rgba(255,61,139,0.4); }

.filters-bar {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 14px 0;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    margin-bottom: 18px;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-60);
}
.filters-bar .lbl { color: var(--ink-30); margin-right: 6px; }
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px;
    border: 1px solid var(--line-2);
    background: var(--bg-2);
    color: var(--ink-60);
    cursor: pointer;
    text-decoration: none;
}
.chip.on {
    background: var(--neon-red);
    color: #fff;
    border-color: var(--neon-red);
    box-shadow: 0 0 12px rgba(255,46,74,0.5);
}
.chip:hover { color: var(--ink); border-color: var(--neon-amber); }

/* ============================================================
   DATA TABLE
   ============================================================ */

/* Wrap data-tables in .table-wrap so they can scroll horizontally on
   narrow screens. Body has overflow-x: hidden so anything that overflows
   without a wrapper gets clipped and can't be reached. */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink);
}
.data-table thead {
    background: #18090E;
    color: var(--neon-amber);
}
.data-table th {
    text-align: left;
    padding: 11px 12px;
    font-family: var(--block);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-right: 1px solid var(--line-2);
    border-bottom: 1px solid var(--neon-red);
    white-space: nowrap;
}
.data-table th:last-child { border-right: none; }
.data-table th .sort { color: var(--neon-red); margin-left: 4px; }

.data-table td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    border-right: 1px dashed var(--line);
    vertical-align: top;
}
.data-table td:last-child { border-right: none; }
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.data-table tbody tr:hover { background: rgba(255,46,74,0.06); }
.data-table tbody tr.unavailable td { color: var(--neon-red); opacity: 0.5; }

.data-table td.loading, .data-table td.hint, .data-table td.error {
    text-align: center;
    padding: 36px 12px;
    font-family: var(--block);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.data-table td.loading { color: var(--neon-amber); }
.data-table td.error   { color: var(--neon-red); }
.data-table td.hint    { color: var(--ink-60); }

.loading-dots i {
    display: inline-block;
    opacity: 0.2;
    font-style: normal;
    animation: tmj-loading-dot 1.2s infinite ease-in-out;
}
.loading-dots i:nth-child(1) { animation-delay: 0s; }
.loading-dots i:nth-child(2) { animation-delay: 0.2s; }
.loading-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes tmj-loading-dot {
    0%, 80%, 100% { opacity: 0.2; }
    40%           { opacity: 1; }
}

.data-table .artist-cell {
    font-family: var(--block);
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--ink);
}
.data-table .title-cell {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.2;
    color: var(--ink);
}
.data-table .cat-cell {
    font-family: var(--mono);
    white-space: nowrap;
    color: var(--neon-amber);
    text-shadow: 0 0 6px rgba(255,179,71,0.3);
}
.data-table .price-cell {
    font-family: var(--block);
    font-size: 14px;
    text-align: right;
    color: var(--neon-red);
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(255,46,74,0.4);
}
.data-table .price-cell .ccy {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--ink-30);
    display: block; margin-top: 2px;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-shadow: none;
}
.data-table .notes-cell {
    font-size: 11px;
    color: var(--ink-60);
    line-height: 1.5;
    max-width: 340px;
}
.data-table .fmt-tag {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 2px 7px;
    border: 1px solid var(--line-2);
    color: var(--ink-60);
    text-transform: uppercase;
    font-family: var(--block);
    white-space: nowrap;
}
.data-table .cond {
    display: inline-block;
    font-family: var(--block);
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 2px 7px;
    background: var(--bg);
    color: var(--ink);
    border: 1px solid var(--line-2);
}
.data-table .cond.M { color: var(--neon-green); border-color: var(--neon-green); text-shadow: 0 0 6px rgba(127,255,106,0.4); }
.data-table .cond.VG { color: var(--neon-blue); border-color: var(--neon-blue); text-shadow: 0 0 6px rgba(94,184,255,0.4); }
.data-table .cond.G { color: var(--neon-amber); border-color: var(--neon-amber); text-shadow: 0 0 6px rgba(255,179,71,0.4); }

.data-table .act {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 30px; height: 28px; padding: 0 8px;
    border: 1px solid var(--line-2);
    background: var(--bg);
    color: var(--ink-60);
    font-family: var(--mono);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.1s;
}
.data-table .act:hover {
    background: var(--neon-red); color: #fff; border-color: var(--neon-red);
    box-shadow: 0 0 12px rgba(255,46,74,0.5);
}
.data-table .act.cart {
    color: var(--neon-amber);
    border-color: var(--neon-amber);
    font-family: var(--block);
    letter-spacing: 0.1em;
}
.data-table .act.cart:hover { background: var(--neon-amber); color: var(--bg); }
.data-table .acts-cell { text-align: center; white-space: nowrap; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 0;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    margin-top: 64px;
    align-items: center;
}
.about-text h3 {
    font-family: var(--disp);
    font-weight: 900;
    font-size: 60px;
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--ink);
}
.about-text h3 em { color: var(--neon-red); font-style: normal; text-shadow: 0 0 16px rgba(255,46,74,0.5); }
.about-text p {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink);
    opacity: 0.9;
    margin-bottom: 18px;
}
.about-text p + p {
    font-size: 14px; font-family: var(--mono);
    color: var(--ink-60); line-height: 1.65;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line-2);
    border: 1px solid var(--line-2);
}
.about-stats .stat {
    background: var(--bg-2);
    padding: 28px 22px;
    position: relative;
}
.about-stats .stat:hover { background: var(--bg-3); }
.about-stats .stat .num {
    font-family: var(--block);
    font-size: 56px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
}
.about-stats .stat .num em {
    color: var(--neon-red); font-style: normal;
    text-shadow: 0 0 14px rgba(255,46,74,0.5);
}
.about-stats .stat .lbl {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-60);
}
.about-stats .stat .jp {
    font-family: var(--jp);
    font-weight: 700;
    font-size: 11px;
    color: var(--neon-pink);
    margin-top: 4px;
    text-shadow: 0 0 6px rgba(255,61,139,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: #050305;
    color: var(--ink);
    padding: 64px 0 24px;
    margin-top: 64px;
    border-top: 1px solid var(--line-2);
    position: relative;
    z-index: 2;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line-2);
}
.footer h5 {
    font-family: var(--disp);
    font-weight: 900;
    font-size: 38px;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--ink);
}
.footer h5 em { color: var(--neon-red); font-style: normal; text-shadow: 0 0 14px rgba(255,46,74,0.5); }
.footer .jp-huge {
    font-family: var(--jp); font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255,61,139,0.4);
    margin-bottom: 20px;
}
.footer p, .footer li {
    font-family: var(--mono);
    font-size: 12px;
    line-height: 1.7;
    color: var(--ink-60);
}
.footer h6 {
    font-family: var(--block);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon-amber);
    margin-bottom: 14px;
    text-shadow: 0 0 6px rgba(255,179,71,0.3);
}
.footer a { color: var(--ink-60); border-bottom: 1px solid transparent; }
.footer a:hover { border-bottom-color: var(--neon-red); color: var(--ink); }
.footer-base {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 22px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-30);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 720px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
    font-family: var(--block);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon-amber);
}
.field label em { color: var(--neon-red); font-style: normal; }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-2);
    background: var(--bg-2);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 13px;
    outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--neon-red);
    box-shadow: 0 0 12px rgba(255,46,74,0.3);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select option { background: var(--bg-2); }

/* ============================================================
   STAMP + TAPE  (reused)
   ============================================================ */

.stamp {
    display: inline-flex; align-items: center; justify-content: center;
    width: 120px; height: 120px;
    border: 3px solid var(--neon-red);
    color: var(--neon-red);
    border-radius: 50%;
    font-family: var(--block);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    transform: rotate(-8deg);
    flex-shrink: 0;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 0 24px rgba(255,46,74,0.5), inset 0 0 16px rgba(255,46,74,0.2);
    text-shadow: 0 0 10px rgba(255,46,74,0.6);
}
.stamp em {
    font-family: var(--jp); font-weight: 900;
    font-size: 10px; letter-spacing: 0.2em;
    font-style: normal;
}
.tape {
    display: inline-block;
    background: var(--neon-amber);
    color: var(--bg);
    padding: 4px 20px;
    font-family: var(--block);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 0 16px rgba(255,179,71,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .kanji-column { display: none; }
    .hero-inner { grid-template-columns: 1fr; padding: 60px 0 80px; }
}
@media (max-width: 1000px) {
    .features { grid-template-columns: repeat(2, 1fr); }
    .shelf { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about { grid-template-columns: 1fr; gap: 40px; }
    .mast-brand h1 { font-size: 44px; }
}
@media (max-width: 700px) {
    .shell { padding: 0 16px; }
    .features { grid-template-columns: 1fr; }
    .shelf { grid-template-columns: repeat(2, 1fr); }
    .mast { grid-template-columns: 1fr; }
    .mast-left, .mast-right { display: none; }
    .mast-brand h1 { font-size: 36px; }
    .nav ul { flex-wrap: wrap; }
    .hero-title { font-size: 48px; }
    .results-head { grid-template-columns: 1fr; }
    .results-head h2 { font-size: 40px; }
    .form-grid { grid-template-columns: 1fr; }
    .data-table { font-size: 11px; }
    .data-table th, .data-table td { padding: 7px 8px; }
    .about-stats .stat .num { font-size: 40px; }
    .section-head h3 { font-size: 36px; }
}
