        /* PROJECT LIVECAM POSITIONING */
        /* PROJECT MASCOT ANCHOR */
        #project-cam-container {
            position: absolute;
            top: 180px; /* Lowered to prevent head-clipping */
            right: 80px;
            width: 150px;
            height: 1px;
            z-index: 110; /* Above news */
        }
        
        #project-cam-container .mascot-wrapper {
            position: absolute !important;
            transform: translate(-50%, -100%) !important;
            top: 0 !important;
            left: 50% !important;
        }

        /* BROADCAST STYLES */
        .broadcast-view {
            display: none;
            flex-direction: column;
            height: 100%;
            gap: 20px;
        }

        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            background: rgba(0, 245, 255, 0.05);
            border: 1px solid rgba(0, 245, 255, 0.2);
            padding: 5px 0;
            white-space: nowrap;
        }

        .ticker-content {
            display: inline-block;
            animation: ticker 30s linear infinite;
            padding-left: 100%;
            font-size: 14px;
            text-transform: uppercase;
        }

        @keyframes ticker {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

        .news-log {
            height: 350px; /* Locked height to prevent screen stretch */
            overflow-y: hidden;
            font-size: 14px;
            line-height: 1.8;
            display: flex;
            flex-direction: column-reverse;
            border-bottom: 1px dashed rgba(0, 245, 255, 0.1);
            padding-bottom: 10px;
        }

        .news-item {
            border-left: 2px solid var(--neko-pink);
            padding-left: 15px;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateX(-10px);
            animation: news-in 0.5s forwards;
        }

        @keyframes news-in {
            to { opacity: 1; transform: translateX(0); }
        }

        .news-timestamp { color: var(--neko-pink); margin-right: 10px; }
        
        .news-link {
            color: var(--neko-cyan);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .news-link:hover {
            color: #FFF;
            text-shadow: 0 0 10px var(--neko-cyan);
            background: rgba(0, 245, 255, 0.1);
            padding: 2px 5px;
            border-radius: 4px;
        }
        .broadcast-back {
            background: none;
            border: 1px solid var(--neko-cyan);
            color: var(--neko-cyan);
            padding: 5px 15px;
            cursor: pointer;
            font-family: var(--font-mono);
            font-size: 10px;
            align-self: flex-start;
        }
        .broadcast-back:hover { background: var(--neko-cyan); color: #000; }
        :root {
            --neko-bg: #FAF9F6;
            --neko-pink: #FFB7C5;
            --neko-cyan: #00F5FF;
            --neko-dark: #2D2926;
            --font-main: 'Inter', sans-serif;
            --font-mono: 'Space Mono', monospace;
            --font-heading: 'Dela Gothic One', cursive;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background-color: var(--neko-bg);
            color: var(--neko-dark);
            font-family: var(--font-main);
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            position: relative;
        }

        /* DIGITAL GRID BACKGROUND */
        .grid-bg {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            pointer-events: none;
            background-image: radial-gradient(#000 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 1;
        }

        /* SCANLINE EFFECT */
        body::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.02) 50%), 
                        linear-gradient(90deg, rgba(255, 0, 0, 0.01), rgba(0, 255, 0, 0.005), rgba(0, 0, 255, 0.01));
            z-index: 5;
            background-size: 100% 4px, 3px 100%;
            pointer-events: none;
        }

        /* TERMINAL BORDER OVERLAY */
        .terminal-frame {
            position: absolute;
            inset: 20px;
            border: 1px solid rgba(45, 41, 38, 0.05);
            pointer-events: none;
            z-index: 50;
            border-radius: 12px;
        }

        .frame-label {
            position: absolute;
            font-family: var(--font-mono);
            font-size: 10px;
            color: rgba(45, 41, 38, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }
        .label-tl { top: 15px; left: 20px; }
        .label-br { bottom: 10px; right: 20px; }

        /* SVG CONNECTIONS */
        .connections {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        /* CENTER HUB (Card Style) */
        .skip-link {
            position: fixed;
            top: 14px;
            left: 14px;
            z-index: 10001;
            background: var(--neko-dark);
            color: white;
            padding: 10px 14px;
            border-radius: 8px;
            font-family: var(--font-mono);
            font-size: 12px;
            transform: translateY(-160%);
            transition: transform 0.2s ease;
        }

        .skip-link:focus {
            transform: translateY(0);
            outline: 3px solid var(--neko-pink);
            outline-offset: 3px;
        }

        :focus-visible {
            outline: 3px solid var(--neko-cyan);
            outline-offset: 4px;
        }

        .center-hub {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: min(390px, calc(100vw - 40px));
            min-height: 440px;
            overflow: visible;
            background: #fdfdfb;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between; /* Space out elements evenly */
            text-align: center;
            z-index: 10;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            padding: 34px 22px 28px;
            transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            animation: hub-breath 4s ease-in-out infinite;
        }

        @keyframes hub-breath {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -52%) scale(1.02); }
        }

        .hub-logo-wrapper {
            width: 150px;
            height: 150px;
            border-radius: 28px;
            padding: 0;
            background: white;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            margin-bottom: 15px;
            position: relative;
        }
        
        /* Feathering effect on the edges */
        .hub-logo-wrapper::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 28px;
            box-shadow: inset 0 0 20px white, 0 0 15px rgba(255, 183, 197, 0.4);
            pointer-events: none;
        }

        .hub-logo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
            filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
        }

        .hub-kicker {
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #008a98;
            margin: 0 0 8px;
        }

        .hub-title-new {
            font-family: 'Times New Roman', serif;
            color: #4a4542;
            font-size: 1.8rem;
            margin: 0 0 10px 0;
            font-weight: 600;
        }

        .hub-desc {
            font-family: var(--font-main);
            font-size: 14px;
            color: #8c8582;
            line-height: 1.8;
            margin-bottom: 25px;
            padding: 0 15px;
        }

        .value-strip {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin: -8px 0 8px;
        }

        .value-pill {
            border: 1px solid rgba(45, 41, 38, 0.12);
            border-radius: 999px;
            padding: 5px 8px;
            font-family: var(--font-mono);
            font-size: 8px;
            color: rgba(45, 41, 38, 0.72);
            background: rgba(255, 255, 255, 0.7);
        }

        .hub-buttons {
            display: flex;
            gap: 15px;
        }

        .member-faq {
            width: 100%;
            margin-top: 12px;
            display: grid;
            gap: 7px;
        }

        .member-faq details {
            border: 1px solid rgba(45, 41, 38, 0.1);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.72);
            text-align: left;
            overflow: hidden;
        }

        .member-faq summary {
            list-style: none;
            cursor: pointer;
            padding: 9px 12px;
            font-family: var(--font-mono);
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: rgba(45, 41, 38, 0.82);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .member-faq summary::-webkit-details-marker {
            display: none;
        }

        .member-faq summary::after {
            content: "+";
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: rgba(255, 183, 197, 0.38);
            color: var(--neko-dark);
            flex: 0 0 auto;
        }

        .member-faq details[open] summary::after {
            content: "-";
        }

        .member-faq p {
            margin: 0;
            padding: 0 12px 10px;
            font-size: 12px;
            line-height: 1.55;
            color: rgba(45, 41, 38, 0.72);
        }

        .trust-strip {
            width: 100%;
            margin-top: 14px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }

        .trust-item {
            min-height: 82px;
            padding: 10px 8px;
            border: 1px solid rgba(0, 138, 152, 0.18);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.58);
            text-align: left;
        }

        .trust-item span {
            display: block;
            margin-bottom: 5px;
            font-family: var(--font-mono);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #008a98;
        }

        .trust-item p {
            margin: 0;
            font-size: 10.5px;
            line-height: 1.45;
            color: rgba(45, 41, 38, 0.68);
        }

        .hub-btn {
            padding: 10px 18px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
            font-family: var(--font-heading);
            cursor: pointer;
            border: none;
            transition: 0.3s ease;
        }

        .pink-btn {
            background: linear-gradient(135deg, #ffb3c6, #d9b3ff);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 179, 198, 0.4);
        }
        
        /* PURE GLOSSY GLASS BUTTON */
        .rgb-btn-frame {
            position: relative;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            color: #4a4542;
            z-index: 2;
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 15px 44px;
            font-size: 15px;
            font-family: var(--font-heading);
            font-weight: 800;
            border-radius: 40px;
            cursor: pointer;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05),
                inset 0 2px 5px rgba(255,255,255,1),
                inset 0 -2px 5px rgba(0,0,0,0.02);
            transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
        }



        /* GLASS GLOSS REFLECTION */
        .rgb-btn-frame::after {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 50%;
            background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.8) 0%,
                rgba(255, 255, 255, 0) 100%
            );
            border-radius: 40px 40px 0 0;
            pointer-events: none;
            z-index: 3;
            opacity: 0.6;
        }

        /* Removed old ::before frame to avoid conflicts */
        .rgb-btn-frame::before { display: none; }

        @keyframes rgb-glow {
            0% { background-position: 0 0; }
            100% { background-position: 300% 0; }
        }

        /* PREMIUM BUTTON SHINE SWEEP */
        .btn-shine-sweep {
            position: absolute;
            top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-25deg);
            pointer-events: none;
            z-index: 4;
        }

        .rgb-btn-frame:hover .btn-shine-sweep {
            animation: shine 0.8s ease;
        }

        @keyframes shine {
            100% { left: 200%; }
        }

        .rgb-btn-frame:hover {
            transform: scale(1.05) translateY(-2px);
            color: #FFB7C5;
            box-shadow: 0 10px 25px rgba(255, 183, 197, 0.3);
        }

        .outline-btn {
            background: white;
            border: 1px solid #e0e0e0;
            color: #4a4542;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }
        
        .outline-btn:hover {
            border-color: #a8e6cf;
            background: #fdfdfd;
            transform: translateY(-2px);
        }

        /* NODES (MAPPORNA) */
        .node {
            position: absolute;
            z-index: 20;
            transform: translate(-50%, -50%);
            text-decoration: none;
        }

        .node-card {
            width: 110px;
            height: 110px;
            background: white;
            border: 1px dashed rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
        }

        .node:hover .node-card {
            border-style: solid;
            border-color: var(--neko-pink);
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(255, 183, 197, 0.3);
        }

        .node-coord {
            position: absolute;
            top: -12px;
            right: -12px;
            font-family: var(--font-mono);
            font-size: 8px;
            color: rgba(45, 41, 38, 0.3);
            background: var(--neko-bg);
            padding: 0 4px;
        }

        .node-icon { font-size: 32px; margin-bottom: 10px; opacity: 0.4; transition: 0.5s; }
        .node:hover .node-icon { opacity: 1; transform: scale(1.1); }

        .node-label {
            font-family: var(--font-heading);
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            color: var(--neko-dark);
            opacity: 0.6;
        }

        .node-title {
            font-family: var(--font-heading);
            font-size: 10px;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--neko-dark);
            opacity: 0.72;
        }

        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

        /* SIGNAL TILE BROADCAST MAP */
        .signal-map {
            position: absolute;
            inset: 0;
            z-index: 12;
            display: grid;
            grid-template-columns: minmax(220px, 1fr) minmax(360px, 430px) minmax(220px, 1fr);
            gap: 24px;
            padding: 46px 54px 42px;
            pointer-events: none;
        }

        .signal-rail {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
            width: min(260px, 100%);
            pointer-events: none;
        }

        .signal-rail--left {
            grid-column: 1;
            justify-self: start;
            align-items: flex-start;
        }

        .signal-rail--right {
            grid-column: 3;
            justify-self: end;
            align-items: flex-end;
        }

        .signal-rail-label,
        .signal-band,
        .signal-tile-caption small {
            font-family: var(--font-mono);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .signal-rail-label {
            width: fit-content;
            padding: 5px 9px;
            border: 1px solid rgba(0, 245, 255, 0.32);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.68);
            color: #008a98;
            font-size: 9px;
            box-shadow: 0 0 18px rgba(157, 255, 229, 0.22);
        }

        .signal-map .node {
            position: relative;
            left: auto;
            top: auto;
            transform: none;
        }

        .signal-tile {
            --signal-width: 246px;
            --signal-ratio: 1 / 1;
            display: block;
            width: min(var(--signal-width), 100%);
            padding: 8px;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 16px;
            background: rgba(253, 253, 251, 0.72);
            color: var(--neko-dark);
            pointer-events: auto;
            text-decoration: none;
            backdrop-filter: blur(10px);
            box-shadow: 0 16px 32px rgba(45, 41, 38, 0.08);
        }

        .signal-tile--solar {
            --signal-width: 258px;
        }

        .signal-tile--civic {
            --signal-width: 258px;
            --signal-ratio: 16 / 10;
        }

        .signal-tile--wide-relay .creative-frame-wrap {
            border: 2px solid rgba(0, 245, 255, 0.42);
            border-radius: 10px;
            background: #06131d;
            box-shadow:
                0 0 10px rgba(0, 245, 255, 0.55),
                0 0 26px rgba(157, 255, 229, 0.5);
        }

        .signal-tile--wide-relay .tv-screen-image {
            inset: -10%;
            background-size: cover;
            background-position: 68% 54%;
            transform: scale(1.08);
            animation: tv-pan-wide 24s ease-in-out infinite alternate;
            filter: contrast(1.14) brightness(0.96) saturate(1.08);
        }

        .signal-tile--wide-relay .tv-scanlines {
            background-size: 100% 3px;
            background-image: linear-gradient(
                rgba(18, 16, 16, 0) 50%,
                rgba(0, 0, 0, 0.1) 50%
            );
            box-shadow: inset 0 0 30px rgba(0, 60, 68, 0.55);
        }

        .signal-tile--broadcast {
            --signal-width: 248px;
            --signal-ratio: 5 / 4;
        }

        .signal-tile--tool {
            --signal-width: 236px;
        }

        .signal-tile--swag {
            --signal-width: 192px;
            --signal-ratio: 1 / 1;
        }

        .signal-tile--swag .creative-frame-wrap {
            border: 2px solid rgba(212,175,55,0.45);
            border-radius: 20px;
            background: #121212;
            box-shadow:
                0 0 10px rgba(212,175,55,0.5),
                0 0 26px rgba(255,187,95,0.25);
        }

        .signal-tile--swag .tv-screen-image {
            inset: -10%;
            background-size: cover;
            background-position: center;
            transform: scale(1.3);
            animation: tv-pan-pulse 9s ease-in-out infinite alternate;
            filter: contrast(1.05) brightness(0.95) saturate(1.16);
        }

        .signal-tile--swag .tv-scanlines {
            background-size: 100% 2px;
            background-image: linear-gradient(
                rgba(18, 16, 16, 0) 50%,
                rgba(0, 0, 0, 0.13) 50%
            );
            box-shadow: inset 0 0 28px rgba(18,18,6,0.65);
        }

        .gengo-room-strip {
            position: absolute;
            left: 50%;
            bottom: 142px;
            transform: translateX(-50%);
            display: grid;
            gap: 10px;
            justify-items: center;
            width: min(720px, calc(100vw - 620px));
            pointer-events: none;
        }

        .gengo-room-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
            width: 100%;
            pointer-events: auto;
        }

        .signal-tile--gengo {
            --signal-width: 100%;
            --signal-ratio: 4 / 3;
            min-width: 0;
            padding: 6px;
            border-radius: 12px;
            background:
                radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.86), transparent 42%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(247, 244, 238, 0.64));
            box-shadow: 0 12px 24px rgba(45, 41, 38, 0.08);
        }

        .signal-tile--gengo .signal-band {
            margin-bottom: 5px;
            font-size: 7px;
        }

        .signal-tile--gengo .creative-frame-wrap {
            border: 1px solid rgba(0, 166, 184, 0.28);
            border-radius: 10px;
            background:
                radial-gradient(circle at 50% 70%, rgba(157, 255, 229, 0.34), transparent 44%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 234, 210, 0.28));
            box-shadow: inset 0 0 22px rgba(0, 166, 184, 0.14);
        }

        .signal-tile--gengo .tv-screen-image {
            inset: -4%;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            transform: scale(1.02);
            animation: tv-pan-pulse 14s ease-in-out infinite alternate;
            filter: contrast(1.02) saturate(1.04);
        }

        .signal-tile--gengo .tv-scanlines {
            background-size: 100% 4px;
            opacity: 0.34;
        }

        .signal-tile--gengo .signal-tile-caption {
            gap: 2px;
        }

        .signal-tile--gengo .signal-tile-caption strong {
            font-size: 10px;
            line-height: 1.15;
        }

        .signal-tile--gengo .signal-tile-caption small {
            font-size: 7px;
        }

        .signal-tile--fuku .creative-frame-wrap {
            background:
                radial-gradient(circle at 50% 78%, rgba(244, 201, 93, 0.34), transparent 44%),
                linear-gradient(180deg, rgba(255, 249, 230, 0.78), rgba(244, 201, 93, 0.14));
        }

        .signal-tile--marina .creative-frame-wrap {
            background:
                radial-gradient(circle at 48% 76%, rgba(255, 183, 197, 0.38), transparent 44%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 183, 197, 0.16));
        }

        .signal-tile--trio .creative-frame-wrap {
            background:
                radial-gradient(circle at 50% 76%, rgba(177, 156, 217, 0.3), transparent 44%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(157, 255, 229, 0.16));
        }

        .signal-band {
            display: block;
            margin: 0 2px 7px;
            color: #008a98;
            font-size: 8px;
        }

        .signal-tile .creative-frame-wrap {
            aspect-ratio: var(--signal-ratio);
            margin-bottom: 8px;
        }

        .signal-tile-caption {
            display: grid;
            gap: 3px;
            padding: 0 2px 2px;
        }

        .signal-tile-caption strong {
            font-size: 14px;
            line-height: 1.2;
        }

        .signal-tile-caption small {
            color: rgba(45, 41, 38, 0.58);
            font-size: 8px;
            line-height: 1.35;
        }

        .signal-map .signal-directory {
            position: absolute;
            left: 50%;
            right: auto;
            bottom: 34px;
            transform: translateX(-50%);
            pointer-events: auto;
        }

        .signal-directory .node-card {
            width: 132px;
            height: 94px;
            border-radius: 14px;
            border-style: solid;
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(8px);
            box-shadow: 0 12px 24px rgba(45, 41, 38, 0.06);
        }

        .legacy-tv-grid[hidden] {
            display: none !important;
        }

        /* PATH STYLING */
        .path {
            stroke: var(--neko-dark);
            stroke-width: 1.5;
            stroke-dasharray: 4 4;
            opacity: 0.1;
            fill: none;
            transition: 0.5s;
        }
        .node:hover ~ .connections .path {
            stroke: var(--neko-pink);
            opacity: 1;
            stroke-dasharray: 0;
        }

        /* CHARACTER SELECTOR */
        .character-selector {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 100;
            display: flex;
            gap: 10px;
            font-family: var(--font-mono);
            background: rgba(255, 255, 255, 0.8);
            padding: 10px;
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }

        .char-btn {
            background: var(--neko-bg);
            border: 1px solid var(--neko-pink);
            color: var(--neko-dark);
            padding: 5px 10px;
            font-size: 10px;
            cursor: pointer;
            border-radius: 4px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .char-btn:hover, .char-btn.active {
            background: var(--neko-pink);
            color: white;
            box-shadow: 0 0 10px rgba(255, 183, 197, 0.5);
        }

        /* ASCII PROJECT MODAL */
        #project-modal {
            position: fixed;
            inset: 0;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(15px);
            z-index: 9600;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        #project-modal.active {
            display: flex;
            opacity: 1;
        }

        .portal-modal {
            position: fixed;
            inset: 0;
            background: rgba(250, 249, 246, 0.86);
            backdrop-filter: blur(24px);
            z-index: 9600;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .portal-modal.active {
            display: flex;
            opacity: 1;
        }

        .portal-panel {
            width: min(1080px, 100%);
            max-height: min(760px, calc(100vh - 60px));
            overflow: auto;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(45, 41, 38, 0.12);
            border-radius: 24px;
            box-shadow: 0 36px 90px rgba(45, 41, 38, 0.16);
            padding: clamp(24px, 4vw, 44px);
        }

        .portal-panel-header {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 28px;
        }

        .portal-eyebrow {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #008a98;
            margin-bottom: 10px;
        }

        .portal-panel h2 {
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(34px, 5vw, 64px);
            line-height: 0.98;
            letter-spacing: 0;
            margin: 0;
            color: var(--neko-dark);
        }

        .portal-lead {
            max-width: 720px;
            font-size: 17px;
            line-height: 1.65;
            color: rgba(45, 41, 38, 0.72);
            margin: 16px 0 0;
        }

        .portal-close {
            flex: 0 0 auto;
            border: 1px solid rgba(45, 41, 38, 0.18);
            background: white;
            color: var(--neko-dark);
            border-radius: 999px;
            min-width: 42px;
            min-height: 42px;
            cursor: pointer;
            font-size: 22px;
            line-height: 1;
        }

        .toolchain-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .toolchain-card {
            border: 1px solid rgba(45, 41, 38, 0.12);
            border-radius: 8px;
            background: #fff;
            padding: 18px;
            min-height: 170px;
        }

        .toolchain-card h3 {
            margin: 0 0 10px;
            font-size: 18px;
            line-height: 1.25;
            color: var(--neko-dark);
        }

        .toolchain-card p {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
            color: rgba(45, 41, 38, 0.68);
        }

        /* Make the whole card a clickable anchor */
        a.toolchain-card {
            display: block;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        a.toolchain-card:hover {
            border-color: var(--neko-pink);
            box-shadow: 0 8px 30px rgba(255, 183, 197, 0.2);
        }

        a.toolchain-card h3,
        a.toolchain-card p {
            color: inherit;
        }

        .creative-frame-wrap {
            display: block;
            position: relative;
            width: 100%;
            margin-bottom: 12px;
            overflow: hidden;
            border-radius: 12px;
            /* Pastel Glow: Pink, Blue, Green, Yellow */
            box-shadow: 
                0 0 10px rgba(255, 183, 197, 0.6),   /* Sakura Pink */
                0 0 20px rgba(157, 255, 229, 0.4),   /* Mint Green */
                0 0 30px rgba(255, 230, 168, 0.4),   /* Soft Yellow */
                0 0 40px rgba(0, 245, 255, 0.3);     /* Cyan Blue */
            background: #111;
            aspect-ratio: 1 / 1;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .tv-screen-image {
            position: absolute;
            inset: -10%;
            background-size: cover;
            background-position: 80% center;
            background-repeat: no-repeat;
            /* Slight scale up to allow panning */
            transform: scale(1.15);
            animation: tv-pan-bob 18s ease-in-out infinite alternate;
            filter: contrast(1.1) brightness(0.95);
        }

        .tv-scanlines {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(
                rgba(18, 16, 16, 0) 50%, 
                rgba(0, 0, 0, 0.15) 50%
            );
            background-size: 100% 4px;
            z-index: 2;
            box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
            border-radius: 10px;
        }

        @keyframes tv-pan-bob {
            0% {
                transform: scale(1.15) translate(2%, 2%);
            }
            33% {
                transform: scale(1.15) translate(-1%, -2%);
            }
            66% {
                transform: scale(1.15) translate(-2%, 1%);
            }
            100% {
                transform: scale(1.15) translate(1%, -1%);
            }
        }

        @keyframes tv-pan-wide {
            0% {
                transform: scale(1.08) translate(-1.5%, 0);
            }

            100% {
                transform: scale(1.08) translate(1.5%, -1%);
            }
        }

        .tv-node {
            display: block;
            text-decoration: none;
            transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        }

        .tv-node:hover {
            transform: scale(1.05) !important;
        }

        .tv-node .creative-frame-wrap {
            margin-bottom: 0;
            box-shadow: 
                0 0 15px rgba(255, 183, 197, 0.8),   /* Sakura Pink */
                0 0 25px rgba(157, 255, 229, 0.6),   /* Mint Green */
                0 0 35px rgba(255, 230, 168, 0.6),   /* Soft Yellow */
                0 0 50px rgba(0, 245, 255, 0.5);     /* Cyan Blue */
        }

        /* Hover overlay hint */
        .frame-overlay {
            position: absolute;
            inset: 0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: white;
            background: rgba(45, 41, 38, 0.55);
            backdrop-filter: blur(4px);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        a.toolchain-card:hover .frame-overlay,
        .tv-node:hover .frame-overlay {
            opacity: 1;
        }

        .ascii-container {
            width: 90%;
            max-width: 980px;
            max-height: min(86vh, 860px);
            background: #0d0d0d;
            border: 1px solid var(--neko-cyan);
            padding: 42px;
            border-radius: 28px;
            font-family: var(--font-mono);
            color: var(--neko-cyan);
            box-shadow: 0 0 40px rgba(0, 245, 255, 0.1);
            position: relative;
            overflow: auto;
        }

        .ascii-container.wide {
            max-width: 1050px;
        }

        /* Retro scanline overlay for the ASCII modal */
        .ascii-container::before {
            content: "";
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 1px,
                rgba(0, 245, 255, 0.05) 2px
            );
            pointer-events: none;
        }

        .ascii-header {
            margin-bottom: 30px;
            border-bottom: 1px dashed var(--neko-cyan);
            padding-bottom: 15px;
        }

        .ascii-logo {
            font-size: 8px;
            line-height: 1.2;
            white-space: pre;
            margin-bottom: 20px;
            color: var(--neko-pink);
        }

        .ascii-title {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .ascii-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .ascii-item {
            padding: 12px 20px;
            border: 1px solid rgba(0, 245, 255, 0.2);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ascii-item:hover {
            background: rgba(0, 245, 255, 0.1);
            border-color: var(--neko-cyan);
            padding-left: 30px;
        }

        .ascii-item.locked {
            opacity: 0.3;
            cursor: not-allowed;
            border-color: rgba(255, 255, 255, 0.1);
            color: #555;
        }

        .ascii-item.locked:hover {
            padding-left: 20px;
            background: transparent;
        }

        .ascii-tag {
            font-size: 10px;
            background: rgba(0, 245, 255, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }

        .firis-ascii-feature {
            display: block;
        }

        .firis-braille-shell {
            max-width: min(1180px, calc(100vw - 48px));
            padding: 34px 24px 24px;
            background: #090b0d;
            border-color: rgba(0, 245, 255, 0.55);
        }

        .firis-braille-art {
            display: block;
            margin: 0;
            color: var(--neko-cyan);
            font-family: "DejaVu Sans Mono", "Noto Sans Mono", "Cascadia Mono", "Consolas", monospace;
            font-size: clamp(7px, 0.72vw, 10px);
            line-height: 1;
            letter-spacing: 0;
            white-space: pre;
            text-shadow: 0 0 9px rgba(0, 245, 255, 0.42);
            overflow: auto;
        }

        .firis-ascii-intro {
            display: grid;
            gap: 6px;
            margin-bottom: 22px;
            padding: 14px 16px;
            border: 1px solid rgba(255, 183, 197, 0.32);
            background: linear-gradient(135deg, rgba(255, 183, 197, 0.12), rgba(0, 245, 255, 0.07));
        }

        .firis-ascii-intro span,
        .firis-pose figcaption {
            font-size: 10px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .firis-ascii-intro strong {
            color: #fff;
            font-size: clamp(15px, 2vw, 22px);
            letter-spacing: 0.04em;
        }

        .firis-pose-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .firis-pose {
            margin: 0;
            padding: 16px;
            border: 1px solid rgba(0, 245, 255, 0.22);
            background: rgba(0, 0, 0, 0.34);
            box-shadow: inset 0 0 18px rgba(0, 245, 255, 0.05);
        }

        .firis-pose figcaption {
            margin-bottom: 10px;
            color: var(--neko-pink);
        }

        .firis-pose pre {
            margin: 0;
            color: #dffcff;
            font-family: var(--font-mono);
            font-size: clamp(10px, 1.3vw, 14px);
            line-height: 1.08;
            white-space: pre;
            text-shadow: 0 0 10px rgba(0, 245, 255, 0.18);
        }

        .ascii-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: 1px solid var(--neko-cyan);
            color: var(--neko-cyan);
            font-family: var(--font-mono);
            cursor: pointer;
            padding: 5px 10px;
            font-size: 12px;
            transition: 0.3s;
        }

        .ascii-close-btn:hover {
            background: var(--neko-cyan);
            color: #000;
        }

        /* MASCOT BENCH */
        .mascot-bench {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 180px;
            height: 15px;
            background: rgba(45, 41, 38, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            z-index: 9000;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }


        .bench-label {
            position: absolute;
            top: -18px; /* Moved up to sit just above the bench */
            right: 10px;
            font-family: var(--font-mono);
            font-size: 8px;
            color: rgba(45, 41, 38, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            z-index: -1; /* Placed exactly between the background and the mascot */
            background: rgba(255,255,255,0.4);
            padding: 2px 6px;
            border-radius: 4px;
            backdrop-filter: blur(2px);
        }

        .v2-btn {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(0, 245, 255, 0.35);
            border-radius: 999px;
            color: var(--neko-cyan);
            cursor: pointer;
            font-family: var(--font-mono);
            font-size: 16px;
            padding: 9px 12px;
            transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .v2-btn:hover,
        .v2-btn:focus-visible {
            opacity: 1;
            color: var(--neko-pink);
            transform: scale(1.06);
        }

        /* ANIMATED STARS */
        .star-container {
            position: absolute;
            inset: -40px;
            pointer-events: none;
            z-index: 0;
        }
        
        .floating-star {
            position: absolute;
            pointer-events: none;
            user-select: none;
            font-size: 14px;
            filter: drop-shadow(0 0 5px currentColor);
            animation: star-float-fade var(--duration) ease-out infinite;
            opacity: 0;
        }

        @keyframes star-float-fade {
            0% {
                transform: translate(0, 0) scale(0) rotate(0deg);
                opacity: 0;
            }
            20% {
                opacity: 1;
                transform: translate(var(--tx-mid), var(--ty-mid)) scale(1.2) rotate(45deg);
            }
            100% {
                transform: translate(var(--tx), var(--ty)) scale(0) rotate(180deg);
                opacity: 0;
            }
        }

            /* MASCOT SPEECH BUBBLE REFINEMENT */
        #mascot-speech-bubble {
            position: absolute;
            bottom: 155px;
            right: 10px;
            background: white;
            color: var(--neko-dark);
            padding: 16px 22px;
            border-radius: 24px 24px 4px 24px;
            font-family: 'Outfit', sans-serif;
            font-size: 13.5px;
            font-weight: 500;
            box-shadow: 
                0 15px 35px rgba(255, 183, 197, 0.3),
                0 5px 15px rgba(0,0,0,0.05);
            border: 2px solid var(--neko-pink);
            opacity: 0;
            transform: translateY(10px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
            width: max-content;
            max-width: 260px;
            line-height: 1.5;
            z-index: 9500;
            text-align: right;
        }

        #mascot-speech-bubble.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* The Bubble Tail */
        #mascot-speech-bubble::after {
            content: "";
            position: absolute;
            bottom: -11px;
            right: 25px;
            width: 18px;
            height: 18px;
            background: white;
            border-right: 2px solid var(--neko-pink);
            border-bottom: 2px solid var(--neko-pink);
            transform: rotate(45deg);
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }
        }

        @media (max-width: 1120px) and (min-width: 821px) {
            .signal-map {
                grid-template-columns: minmax(190px, 1fr) minmax(340px, 390px) minmax(190px, 1fr);
                padding: 42px 30px 34px;
            }

            .signal-rail {
                width: min(226px, 100%);
                gap: 16px;
            }

            .signal-tile,
            .signal-tile--solar,
            .signal-tile--broadcast,
            .signal-tile--tool,
            .signal-tile--civic,
            .signal-tile--swag {
                --signal-width: 216px;
            }

            .gengo-room-strip {
                bottom: 122px;
                width: min(440px, calc(100vw - 520px));
            }

            .gengo-room-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 820px) {
            body {
                min-height: 100vh;
                height: auto;
                overflow: auto;
                padding: 22px;
            }

            .terminal-frame,
            .connections {
                display: none;
            }

            .center-hub {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                width: 100%;
                max-height: none;
                margin: 0 auto 22px;
                animation: none;
            }

            .node {
                position: relative;
                left: auto !important;
                top: auto !important;
                transform: none;
                display: inline-flex;
                margin: 6px;
            }

            .node-card {
                width: calc(50vw - 40px);
                min-width: 130px;
                height: 118px;
            }

            .signal-map {
                position: relative;
                inset: auto;
                z-index: 20;
                display: grid;
                grid-template-columns: 1fr;
                gap: 18px;
                padding: 0;
                pointer-events: auto;
            }

            .signal-rail,
            .signal-rail--left,
            .signal-rail--right {
                grid-column: auto;
                width: 100%;
                align-items: stretch;
                justify-self: stretch;
            }

            .signal-map .node {
                margin: 0;
            }

            .signal-tile,
            .signal-tile--solar,
            .signal-tile--broadcast,
            .signal-tile--tool,
            .signal-tile--civic,
            .signal-tile--swag,
            .signal-tile--gengo {
                --signal-width: 100%;
                display: block;
                max-width: 360px;
                margin: 0 auto;
            }

            .gengo-room-strip {
                position: relative;
                left: auto;
                bottom: auto;
                transform: none;
                width: 100%;
                pointer-events: auto;
            }

            .gengo-room-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }

            .signal-map .signal-directory {
                grid-column: auto;
                position: relative;
                left: auto;
                bottom: auto;
                transform: none;
                justify-self: center;
                margin: 0 auto 20px;
            }

            .signal-directory .node-card {
                width: min(260px, calc(100vw - 44px));
            }

            #mascot-corner {
                position: relative !important;
                right: auto !important;
                bottom: auto !important;
                display: flex;
                justify-content: flex-end;
                margin-top: 18px;
            }

            .program-grid,
            .toolchain-grid {
                grid-template-columns: 1fr;
            }

            .ascii-container {
                width: min(100%, calc(100vw - 28px));
                padding: 34px 16px 20px;
                border-radius: 18px;
            }

            .firis-braille-shell {
                max-width: calc(100vw - 28px);
                padding: 42px 10px 14px;
            }

            .firis-braille-art {
                font-size: 7px;
            }

            .firis-pose-grid {
                grid-template-columns: 1fr;
            }

            .firis-pose {
                overflow-x: auto;
            }

            .program-card.featured {
                grid-column: auto;
            }

            .portal-panel-header {
                align-items: flex-start;
            }
        }

        @media (max-height: 860px) and (min-width: 821px) {
            .center-hub {
                width: min(360px, calc(100vw - 40px));
                min-height: 0;
                padding: 24px 20px 22px;
            }

            .hub-logo-wrapper {
                width: 124px;
                height: 124px;
                margin-bottom: 10px;
            }

            .hub-desc {
                font-size: 13px;
                line-height: 1.55;
                margin-bottom: 16px;
                padding: 0 8px;
            }

            .hub-buttons {
                margin-top: 18px !important;
            }

            .member-faq {
                margin-top: 10px;
            }
        }


/* Language Toggle Switch */
.lang-toggle-wrapper {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10000;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    padding: 3px;
    backdrop-filter: blur(5px);
}

.lang-toggle-btn {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-toggle-btn.active {
    background: var(--neko-cyan, #00F5FF);
    color: #000;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.lang-toggle-btn:hover:not(.active) {
    color: white;
}

/* Cyber-Couture Modules */

/* Hover-Holograms (Deco-Tooltips) */
.deco-tooltip {
    position: relative;
    cursor: help;
    color: var(--neko-cyan, #00F5FF);
    text-decoration: underline dotted rgba(0, 245, 255, 0.5);
    transition: color 0.3s, text-shadow 0.3s;
}

.deco-tooltip:hover {
    color: #FF1493;
    text-shadow: 0 0 8px #FF1493;
}

.deco-tooltip::after {
    content: attr(data-kanji) " | " attr(data-desc) "\A " attr(data-udhr);
    white-space: pre-wrap;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    pointer-events: none;
    background: rgba(10, 10, 10, 0.85);
    color: #00F5FF;
    padding: 10px 15px;
    border: 1px solid #FF1493;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 12px;
    text-align: center;
    width: max-content;
    max-width: 250px;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.5), inset 0 0 10px rgba(0, 245, 255, 0.2);
    mix-blend-mode: screen;
    backdrop-filter: blur(4px);
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-image: linear-gradient(0deg, transparent 50%, rgba(255,20,147,0.1) 50%);
    background-size: 100% 4px;
    animation: hologram-scan 2s linear infinite;
}

.deco-tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@keyframes hologram-scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* Gacha Sign-Up Form */
.gacha-container {
    text-align: center;
    padding: 40px;
    transition: opacity 0.5s;
    background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
}

.gacha-slot {
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 20px;
    padding: 15px 25px;
    color: white;
    font-family: var(--font-mono);
    width: 80%;
    max-width: 280px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    transition: border-color 0.3s;
}

.gacha-slot:focus {
    outline: none;
    border-color: #FF1493;
    box-shadow: inset 0 0 10px rgba(255,20,147,0.5);
}

.vibe-coin-btn {
    background: linear-gradient(45deg, #FF1493, #00F5FF);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vibe-coin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
}

.gacha-bursting {
    animation: gacha-shake 0.3s ease-in-out infinite, glitch-colors 0.3s linear infinite;
}

@keyframes gacha-shake {
    0%, 100% { transform: translateX(0) scale(1); }
    25% { transform: translateX(-5px) scale(1.02); }
    75% { transform: translateX(5px) scale(1.02); }
}

@keyframes glitch-colors {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Glitter Terminal */
.glitter-terminal {
    background: #F0E6D2; /* Hazelnut Cream */
    color: #FF1493; /* Neon Pink */
    padding: 50px 40px;
    font-family: var(--font-mono);
    text-align: left;
    box-shadow: inset 0 0 30px rgba(255,20,147,0.1);
    height: 100%;
    min-height: 300px;
}

.glitter-terminal h3 {
    font-family: var(--font-display);
    border-bottom: 2px dashed #FF1493;
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: #FF1493;
    text-shadow: none;
}

.glitter-terminal p {
    color: #FF1493;
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* --- EXTRACTED INLINE STYLES --- */
.lang-toggle-wrapper { text-decoration: none; cursor: pointer; }
.hub-buttons { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 15px; margin-top: 35px; }
.hub-btn { text-decoration: none; width: 100%; max-width: 250px; text-align: center; display: inline-block; box-sizing: border-box; }
.social-cta-strip { display: flex; gap: 10px; width: 100%; max-width: 250px; }
.social-outline-btn { flex: 1; text-decoration: none; text-align: center; padding: 10px; border-radius: 20px; font-family: var(--font-mono); font-size: 11px; font-weight: bold; letter-spacing: 0.05em; transition: 0.3s ease; }
.member-faq { margin-top: 25px; }
#mascot-corner { position: fixed; bottom: 20px; right: 30px; z-index: 9000; }
#momotamu-main { width: 98px; height: 98px; background-image: url('../_assets/sensei_3x3_goth_GOLDEN_STANDARD.png'); background-size: 300% 300%; background-position: 0% 50%; image-rendering: pixelated; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15)); transition: background-position 0.1s steps(1); cursor: pointer; clip-path: inset(8px 0 0 0); margin-top: -6px; }
.privacy-footer { text-align: center; margin-top: 20px; padding-bottom: 20px; font-size: 12px; position: relative; z-index: 100; }
.privacy-footer a { color: var(--neko-cyan, #00F5FF); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.privacy-footer a:hover { opacity: 1; text-decoration: underline; }
















/* --- SOCIAL BUTTONS --- */
.social-ping-grid {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
}

.social-ping-title {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--neko-cyan);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: #FFF;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--neko-cyan);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
    transform: translateY(-2px);
}

.social-btn small {
    opacity: 0.5;
    font-size: 9px;
}

.social-icon {
    font-size: 14px;
}
/* --- KAWAII CHECKBOXES --- */
.newsletter-preferences {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
    padding: 0 10px;
}

.kawaii-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    position: relative;
    user-select: none;
}

.kawaii-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-box {
    height: 16px;
    width: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #B19CD9; /* Pastel purple */
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.kawaii-checkbox:hover input ~ .checkbox-box {
    border-color: var(--neko-cyan);
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
}

.kawaii-checkbox input:checked ~ .checkbox-box {
    background-color: var(--neko-cyan);
    border-color: var(--neko-cyan);
    box-shadow: 0 0 10px var(--neko-cyan);
}

.checkbox-box:after {
    content: "";
    position: absolute;
    display: none;
}

.kawaii-checkbox input:checked ~ .checkbox-box:after {
    display: block;
}

.kawaii-checkbox .checkbox-box:after {
    left: 4px;
    top: 1px;
    width: 3px;
    height: 7px;
    border: solid #111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* =========================================================
   THE SAKURA BLUEPRINT (SAKURA-PORTAL V2.0)
   ========================================================= */

.sakura-blueprint {
    background-color: #fcfcfc;
    background-image: 
        repeating-linear-gradient(transparent, transparent 15px, rgba(0,0,0,0.03) 15px, rgba(0,0,0,0.03) 16px),
        radial-gradient(rgba(0,0,0,0.15) 1px, transparent 1px);
    background-size: 100% 16px, 64px 64px;
    background-position: 0 0, 10px 10px;
    color: #7a8288;
    font-family: "Inter", "Segoe UI", sans-serif;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

.blueprint-system-label {
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    letter-spacing: 3px;
    color: #a0a8af;
    text-transform: uppercase;
    z-index: 10;
}

/* Rounded framing lines behind everything */
.blueprint-frame-line {
    position: fixed;
    top: 60px; left: 20px; right: 0; bottom: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-left: 1px solid rgba(0,0,0,0.05);
    border-top-left-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.blueprint-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
    position: relative;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
}

.blueprint-node {
    background: white;
    border: 1px dashed #d1d5db;
    width: 240px; 
    height: 240px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.blueprint-node:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #adb5bd;
}

.blueprint-coord {
    position: absolute;
    top: -12px; 
    right: 20px;
    background: #fdfdfd;
    border: 1px dashed #e5e7eb;
    padding: 4px 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: #b0b8bf;
    letter-spacing: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.blueprint-node:hover .blueprint-coord {
    color: #8A2BE2; /* Subtle purple highlight */
    border-color: rgba(138, 43, 226, 0.3);
}

.blueprint-icon {
    font-size: 72px;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(180, 200, 255, 0.4));
    transition: transform 0.3s ease;
}

.blueprint-node:hover .blueprint-icon {
    transform: scale(1.1);
}

.blueprint-title {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    color: #64748b;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.blueprint-node:hover .blueprint-title {
    color: #334155;
}
