/* ── Manga / Japanese comic theme (visual chrome only, no VFX layer) ── */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&family=Bangers&display=swap');

body.manga-theme {
    font-family: 'Rajdhani', 'Noto Sans JP', sans-serif;
}

body.manga-theme::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    background-image: radial-gradient(circle, #000 1px, transparent 1px);
    background-size: 4px 4px;
}

body.manga-theme .zone {
    border: 2px solid rgba(0, 0, 0, 0.85);
    box-shadow:
        3px 3px 0 rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.manga-theme .zone-title {
    font-family: 'Bangers', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.15em;
    text-shadow: 1px 1px 0 #000;
}

body.manga-theme .top-bar {
    border-bottom: 4px solid #000;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
}

body.manga-theme .logo {
    font-family: 'Bangers', cursive;
    font-size: 1.35rem;
    text-shadow: 2px 2px 0 #000, 3px 3px 0 var(--accent);
    letter-spacing: 0.08em;
}

body.manga-theme .playmat {
    position: relative;
    border: 3px solid #0a0a0a;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

body.manga-theme .playmat::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-conic-gradient(
        rgba(0, 0, 0, 0.03) 0% 25%,
        transparent 0% 50%
    ) 50% / 16px 16px;
    opacity: 0.5;
    z-index: 0;
}

body.manga-theme .playmat > * {
    position: relative;
    z-index: 1;
}

body.manga-theme .tcg-card {
    border: 2px solid #111;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.6);
}

body.manga-theme .tcg-card.clickable:hover {
    box-shadow:
        4px 4px 0 #000,
        0 0 16px rgba(251, 191, 36, 0.5);
}

body.manga-theme .hand-row .tcg-card.clickable:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

body.manga-theme .tcg-card.selected {
    outline: 3px solid #fbbf24;
    box-shadow:
        0 0 0 2px #000,
        0 0 20px rgba(251, 191, 36, 0.7);
}

body.manga-theme .tcg-card.targetable {
    outline: 3px solid #f59e0b;
    box-shadow: 0 0 0 2px #000, 0 0 16px rgba(245, 158, 11, 0.55);
}

body.manga-theme .bottom-bar {
    border-top: 4px solid #000;
    box-shadow: 0 -6px 0 rgba(0, 0, 0, 0.35);
}

body.manga-theme .btn-primary {
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
}

body.manga-theme .btn-secondary {
    border: 2px solid #334155;
    box-shadow: 3px 3px 0 #0f172a;
}

body.manga-theme .toast {
    font-family: 'Noto Sans JP', sans-serif;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
}

body.manga-theme .banner {
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
    font-family: 'Noto Sans JP', sans-serif;
}

body.manga-theme .detail-pane {
    background: rgba(255, 255, 255, 0.04);
}

body.manga-theme .nav-btn {
    border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
}
