
    @import url('https://fonts.googleapis.com/css2?family=Pretendard:wght@100;400;600;800&family=Montserrat:wght@200;800&display=swap');

    /* 전체 컨테이너 및 레이아웃 */
    .nb-white-widget {
        --nb-camp-progress: 0%;
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: 560px;
        background: transparent;
        border-radius: 0;
        position: relative;
        overflow: visible;
        padding: 24px 0 18px;
        box-sizing: border-box;
        font-family: 'Pretendard', sans-serif;
        color: #1a1e23;
        box-shadow: none;
        border: 0;
        display: flex;
        flex-direction: column;
    }

    .nb-camp-widget * {
        letter-spacing: 0 !important;
    }

    @supports selector(body:has(.nb-white-widget.nb-camp-widget)) {
        body:has(.nb-white-widget.nb-camp-widget) {
            overflow-x: hidden;
        }
    }

    .nb-camp-widget::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background:
            linear-gradient(90deg, rgba(37, 99, 235, 0.92), rgba(6, 182, 212, 0.82), rgba(244, 114, 182, 0.74)) 0 0 / var(--nb-camp-progress) 100% no-repeat,
            rgba(148, 163, 184, 0.28);
        pointer-events: none;
        transition: background-size 0.62s ease;
    }

    .nb-content-inner {
        position: relative;
        z-index: 5;
        display: flex;
        gap: 50px;
        flex: 1;
        align-items: flex-start;
    }

    .nb-camp-stage {
        display: block;
        min-height: 486px;
        isolation: isolate;
    }

    .nb-camp-slide {
        display: flex;
        align-items: flex-start;
        gap: 50px;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(18px, 0, 0) scale(0.986);
        filter: blur(10px);
        transition:
            opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
            filter 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nb-camp-slide:not(.is-active) {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .nb-camp-slide.is-active {
        position: relative;
        z-index: 2;
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }

    .nb-camp-slide.is-leaving {
        z-index: 1;
        opacity: 0;
        transform: translate3d(-22px, 0, 0) scale(0.982);
        filter: blur(12px);
    }

    .nb-camp-widget.is-switching .nb-camp-slide.is-active .nb-text-frame {
        animation: nbCampTextReveal 0.72s cubic-bezier(0.2, 0.9, 0.25, 1) both;
    }

    .nb-camp-widget.is-switching .nb-camp-slide.is-active .nb-image-frame {
        animation: nbCampMediaReveal 0.82s cubic-bezier(0.2, 0.9, 0.25, 1) both;
    }

    /* 텍스트 영역 */
    .nb-text-frame { flex: 1.8; }

    /* 우측 비디오 프레임 (디자인 최적화) */
    .nb-image-frame {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        margin-top: 28px;
        position: relative; /* 사운드 버튼 배치용 */
    }

    .nb-video-container {
        width: 100%;
        max-width: 340px;
        aspect-ratio: 9 / 16;
        --nb-camp-embed-crop-width: 316%;
        position: relative;
        background: #000;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
        border: 0;
        transition: none;
    }

    .nb-image-frame:hover .nb-video-container {
        transform: none;
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    }

    .nb-video-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    video.nb-video-content {
        object-fit: cover; /* 영상을 영역에 꽉 채움 */
    }

    .nb-youtube-content,
    .nb-story-embed {
        left: 50%;
        width: var(--nb-camp-embed-crop-width);
        height: 100%;
        max-width: none;
        transform: translateX(-50%);
        pointer-events: none;
        opacity: 1;
        filter: none;
        transition: none;
        will-change: auto;
    }

    .nb-story-media {
        display: block;
        color: inherit;
        text-decoration: none;
        cursor: pointer;
    }

    .nb-story-media::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        background:
            linear-gradient(180deg, rgba(2, 6, 23, 0.12), transparent 28%, rgba(2, 6, 23, 0.32)),
            radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.22), transparent 36%);
        opacity: 0.88;
    }

    .nb-story-image,
    .nb-story-video,
    .nb-story-poster {
        object-fit: cover;
        object-position: center;
        background: #020617;
    }

    .nb-story-embed {
        z-index: 2;
        background: #020617;
    }

    .nb-story-poster {
        position: absolute;
        inset: 0;
        z-index: 3;
        width: 100%;
        height: 100%;
        transition: opacity 0.45s ease;
    }

    .nb-story-media.is-media-ready .nb-story-poster {
        opacity: 0;
    }

    .nb-media-loader {
        position: absolute;
        inset: 0;
        z-index: 12;
        display: grid;
        place-items: center;
        background:
            linear-gradient(90deg, rgba(15, 23, 42, 0.78), rgba(30, 41, 59, 0.42), rgba(15, 23, 42, 0.78)),
            radial-gradient(circle at 50% 42%, rgba(125, 211, 252, 0.36), transparent 38%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
    }

    .nb-media-loader::before {
        content: "LOADING STREAM";
        color: #e0f2fe;
        font-size: 10px;
        font-weight: 900;
        text-shadow: 0 0 18px rgba(125, 211, 252, 0.9);
    }

    .nb-media-loader span {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(105deg, transparent 0 28%, rgba(255, 255, 255, 0.82) 48%, rgba(56, 189, 248, 0.54) 52%, transparent 72% 100%);
        transform: translateX(-72%) skewX(-14deg);
        animation: nbMediaLoaderSweep 1.08s linear infinite;
        mix-blend-mode: screen;
    }

    .nb-story-media.is-loading .nb-media-loader,
    .nb-video-container.is-loading .nb-media-loader,
    .nb-video-container.is-live-warming .nb-media-loader {
        opacity: 1;
    }

    .nb-video-container.is-live-error .nb-media-loader {
        opacity: 0.82;
        background:
            linear-gradient(90deg, rgba(127, 29, 29, 0.76), rgba(15, 23, 42, 0.48), rgba(127, 29, 29, 0.76)),
            radial-gradient(circle at 50% 42%, rgba(251, 113, 133, 0.3), transparent 38%);
    }

    .nb-video-container.is-live-error .nb-media-loader::before {
        content: "RETRYING STREAM";
    }

    .nb-media-play {
        position: absolute;
        left: 18px;
        bottom: 18px;
        z-index: 13;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        color: #ffffff;
        background: rgba(15, 23, 42, 0.56);
        border: 1px solid rgba(226, 232, 240, 0.42);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 0 28px rgba(56, 189, 248, 0.38);
    }

    .nb-video-container.is-playing .nb-youtube-content {
        opacity: 1;
    }

    .nb-video-container.is-looping .nb-youtube-content {
        opacity: 1;
        filter: none;
    }

    /* 비디오 위 오버레이 (디자인 터치) */
    .nb-video-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
        mix-blend-mode: overlay;
        z-index: 2;
        pointer-events: none; /* 오버레이는 클릭 방해 안 함 */
    }

    .nb-video-aura,
    .nb-video-prism,
    .nb-video-scanline,
    .nb-video-rings,
    .nb-video-signal {
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0;
    }

    .nb-video-aura {
        inset: -18%;
        z-index: 1;
        background:
            conic-gradient(from 220deg at 50% 50%, rgba(59,130,246,0), rgba(96,165,250,.42), rgba(236,72,153,.28), rgba(250,204,21,.24), rgba(59,130,246,0)),
            radial-gradient(circle at 50% 42%, rgba(255,255,255,.28), transparent 42%);
        filter: blur(18px) saturate(1.3);
        mix-blend-mode: screen;
        transform: scale(.94) rotate(0deg);
    }

    .nb-video-prism {
        z-index: 6;
        background:
            linear-gradient(118deg, transparent 0 18%, rgba(255,255,255,.78) 23%, rgba(96,165,250,.42) 28%, transparent 36% 100%),
            linear-gradient(62deg, transparent 0 56%, rgba(244,114,182,.42) 62%, rgba(255,255,255,.42) 66%, transparent 74%);
        mix-blend-mode: screen;
        transform: translateX(-54%) skewX(-12deg);
        filter: blur(.4px);
    }

    .nb-video-scanline {
        z-index: 8;
        background:
            repeating-linear-gradient(180deg, rgba(255,255,255,.18) 0 1px, transparent 1px 7px),
            linear-gradient(180deg, transparent 0 46%, rgba(125,211,252,.38) 50%, transparent 54%);
        mix-blend-mode: overlay;
        transform: translateY(-24%);
    }

    .nb-video-rings {
        z-index: 7;
        display: grid;
        place-items: center;
    }

    .nb-video-rings span {
        grid-area: 1 / 1;
        width: 36%;
        aspect-ratio: 1;
        border: 1px solid rgba(255,255,255,.72);
        border-radius: 50%;
        box-shadow:
            0 0 16px rgba(255,255,255,.62),
            0 0 34px rgba(96,165,250,.48),
            inset 0 0 18px rgba(255,255,255,.2);
        opacity: 0;
    }

    .nb-video-rings span:nth-child(2) {
        width: 54%;
        border-color: rgba(125,211,252,.7);
    }

    .nb-video-rings span:nth-child(3) {
        width: 72%;
        border-color: rgba(244,114,182,.52);
    }

    .nb-video-signal {
        right: 14px;
        bottom: 14px;
        left: auto;
        top: auto;
        inset: auto 14px 14px auto;
        z-index: 9;
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        padding: 0 8px;
        border: 1px solid rgba(255,255,255,.48);
        background: rgba(15,23,42,.48);
        color: #e0f2fe;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .08em;
        text-shadow: 0 0 10px rgba(125,211,252,.8);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .nb-video-center-mask {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 4;
        width: 118px;
        height: 86px;
        transform: translate(-50%, -50%);
        border-radius: 999px;
        pointer-events: none;
        opacity: 0;
        background:
            radial-gradient(circle, rgba(15, 23, 42, 0.28) 0%, rgba(15, 23, 42, 0.12) 38%, transparent 72%);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }

    .nb-video-container.is-playing .nb-video-center-mask {
        opacity: 1;
    }

    .nb-video-flash-layer,
    .nb-video-flare,
    .nb-video-sparks {
        position: absolute;
        inset: 0;
        z-index: 5;
        pointer-events: none;
        opacity: 0;
    }

    .nb-video-flash-layer {
        background:
            radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 1), transparent 15%),
            radial-gradient(circle at 62% 58%, rgba(125, 211, 252, 0.7), transparent 29%),
            radial-gradient(circle at 18% 74%, rgba(244, 114, 182, 0.36), transparent 24%),
            linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.9) 42%, rgba(96, 165, 250, 0.58) 50%, transparent 74%);
        mix-blend-mode: screen;
        transform: translateX(-24%) rotate(4deg);
    }

    .nb-video-flare {
        z-index: 6;
        background:
            linear-gradient(90deg, transparent 0 19%, rgba(255, 255, 255, 0.86) 21%, transparent 23% 48%, rgba(147, 197, 253, 0.72) 51%, transparent 54% 100%),
            linear-gradient(0deg, transparent 0 26%, rgba(255, 255, 255, 0.45) 29%, transparent 32% 64%, rgba(255, 255, 255, 0.32) 67%, transparent 70%);
        mix-blend-mode: screen;
        filter: blur(0.3px);
    }

    .nb-video-sparks {
        z-index: 7;
    }

    .nb-video-sparks span {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: #fff;
        box-shadow:
            0 0 10px rgba(255, 255, 255, 0.95),
            0 0 22px rgba(96, 165, 250, 0.72);
        opacity: 0;
    }

    .nb-video-sparks span:nth-child(1) { left: 18%; top: 22%; }
    .nb-video-sparks span:nth-child(2) { left: 72%; top: 18%; }
    .nb-video-sparks span:nth-child(3) { left: 64%; top: 74%; }
    .nb-video-sparks span:nth-child(4) { left: 28%; top: 68%; }
    .nb-video-sparks span:nth-child(5) { left: 52%; top: 38%; }
    .nb-video-sparks span:nth-child(6) { left: 42%; top: 84%; }
    .nb-video-sparks span:nth-child(7) { left: 12%; top: 48%; }
    .nb-video-sparks span:nth-child(8) { left: 84%; top: 44%; }
    .nb-video-sparks span:nth-child(9) { left: 58%; top: 12%; }
    .nb-video-sparks span:nth-child(10) { left: 22%; top: 86%; }
    .nb-video-sparks span:nth-child(11) { left: 76%; top: 82%; }
    .nb-video-sparks span:nth-child(12) { left: 48%; top: 58%; }

    .nb-video-container.is-playing::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 4;
        pointer-events: none;
        border: 1px solid rgba(147, 197, 253, 0.42);
        box-shadow:
            inset 0 0 32px rgba(96, 165, 250, 0.22),
            0 0 32px rgba(59, 130, 246, 0.16);
        opacity: 0.76;
        animation: nbVideoEdgePulse 2.6s ease-in-out infinite;
    }

    .nb-video-container.is-playing .nb-video-aura {
        opacity: .72;
        animation: nbVideoAuraSpin 6.5s linear infinite;
    }

    .nb-video-container.is-playing .nb-video-scanline {
        opacity: .2;
        animation: nbVideoScanMove 3.4s linear infinite;
    }

    .nb-video-container.is-playing .nb-video-signal {
        opacity: .78;
        animation: nbVideoSignalBlink 2.2s steps(2, end) infinite;
    }

    .nb-video-container.is-playing .nb-video-flare {
        animation: nbVideoSoftStrobe 5.8s ease-in-out infinite;
    }

    .nb-video-container.is-flash-hit .nb-video-flash-layer {
        animation: nbVideoFlashHit 0.82s cubic-bezier(0.18, 0.86, 0.32, 1);
    }

    .nb-video-container.is-flash-hit .nb-video-flare {
        animation: nbVideoFlareHit 0.82s cubic-bezier(0.18, 0.86, 0.32, 1);
    }

    .nb-video-container.is-flash-hit .nb-video-prism {
        animation: nbVideoPrismSweep 0.95s cubic-bezier(0.18, 0.86, 0.32, 1);
    }

    .nb-video-container.is-flash-hit .nb-video-rings {
        opacity: 1;
    }

    .nb-video-container.is-flash-hit .nb-video-rings span {
        animation: nbVideoRingBurst 0.92s ease-out both;
    }

    .nb-video-container.is-flash-hit .nb-video-rings span:nth-child(2) {
        animation-delay: .08s;
    }

    .nb-video-container.is-flash-hit .nb-video-rings span:nth-child(3) {
        animation-delay: .16s;
    }

    .nb-video-container.is-flash-mega .nb-video-flash-layer {
        animation-duration: 1.12s;
    }

    .nb-video-container.is-flash-mega .nb-video-prism {
        animation-duration: 1.18s;
    }

    .nb-video-container.is-flash-mega {
        animation: nbVideoMegaFrame 1.05s ease-out;
    }

    .nb-video-container.is-flash-hit .nb-video-sparks {
        opacity: 1;
    }

    .nb-video-container.is-flash-hit .nb-video-sparks span {
        animation: nbVideoSparkBurst 0.82s ease-out both;
    }

    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(2) { animation-delay: 0.04s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(3) { animation-delay: 0.08s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(4) { animation-delay: 0.12s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(5) { animation-delay: 0.06s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(6) { animation-delay: 0.1s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(7) { animation-delay: 0.03s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(8) { animation-delay: 0.07s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(9) { animation-delay: 0.11s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(10) { animation-delay: 0.15s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(11) { animation-delay: 0.05s; }
    .nb-video-container.is-flash-hit .nb-video-sparks span:nth-child(12) { animation-delay: 0.13s; }

    /* [추가] 사운드 제어 버튼 스타일 */
    .nb-sound-control {
        position: absolute;
        bottom: 20px;
        right: calc(50% - 150px); /* 비디오 컨테이너 내 오른쪽 하단 배치 */
        z-index: 10;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .nb-sound-control:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
        color: #ffffff;
    }

    /* 다이나믹 배경 빛 효과 */
    .nb-light-sphere {
        display: none;
    }

    @keyframes floating {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(-30px, 30px); }
    }

    /* 상단 메타 정보 */
    .nb-top-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }

    .nb-sys-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #f8fafc;
        padding: 6px 14px;
        border-radius: 30px;
        border: 1px solid #e2e8f0;
    }

    .nb-sys-badge .dot {
        width: 6px; height: 6px; background: #ef4444; border-radius: 50%;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
        animation: blink 1.5s infinite;
    }

    .nb-sys-badge .text { font-size: 10px; font-weight: 800; color: #64748b; letter-spacing: 0.5px; }
    .nb-version-tag { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 200; color: #94a3b8; }

    /* 메인 타이틀 */
    .nb-hero-section { margin-bottom: 60px; }
    .nb-main-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 52px;
        line-height: 1.1;
        margin: 0;
        letter-spacing: 0;
        color: #0f172a;
    }
    .nb-thin { font-weight: 200; color: #94a3b8; }
    .nb-bold { font-weight: 800; background: linear-gradient(to right, #2563eb, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

    .nb-divider { width: 60px; height: 4px; background: #2563eb; margin: 25px 0; border-radius: 2px; }
    .nb-lead-text { font-size: 18px; line-height: 1.7; color: #475569; }

    .nb-story-frame {
        padding-top: 2px;
    }

    .nb-story-section {
        margin-bottom: 34px;
    }

    .nb-story-eyebrow {
        display: inline-flex;
        align-items: center;
        min-height: 24px;
        padding: 0 10px;
        margin-bottom: 16px;
        border-radius: 999px;
        background: #e0f2fe;
        color: #0369a1;
        font-size: 11px;
        font-weight: 900;
    }

    .nb-story-title {
        max-width: 680px;
        font-size: 42px;
        word-break: keep-all;
    }

    .nb-story-title a {
        color: inherit;
        text-decoration: none;
    }

    .nb-story-title a:hover {
        color: #2563eb;
    }

    .nb-story-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px;
        margin: -10px 0 36px;
        color: #94a3b8;
        font-size: 12px;
        font-weight: 800;
    }

    .nb-story-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 36px;
        padding: 0 14px;
        border-radius: 999px;
        background: #0f172a;
        color: #ffffff;
        text-decoration: none;
        font-size: 11px;
        font-weight: 900;
    }

    .nb-story-link:hover {
        background: #2563eb;
        color: #ffffff;
    }

    .nb-story-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px 22px;
    }

    /* 가치 그리드 */
    .nb-value-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 25px;
        margin-bottom: 30px;
    }
    .nb-value-item { position: relative; }
    .nb-value-no { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 800; color: #f1f5f9; position: absolute; top: -18px; left: -5px; z-index: -1; }
    .nb-value-item h3 { font-size: 15px; font-weight: 800; color: #1e293b; margin: 0 0 12px 0; letter-spacing: 1.5px; }
    .nb-value-item p { font-size: 13.5px; line-height: 1.6; color: #64748b; margin: 0; word-break: keep-all; }

    /* 푸터 정보 */
    .nb-info-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 1px solid #f1f5f9;
        margin-top: auto;
    }
    .nb-stats { display: flex; gap: 30px; }
    .stat-node { display: flex; flex-direction: column; }
    .stat-label { font-size: 9px; font-weight: 800; color: #94a3b8; }
    .stat-val { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800; color: #2563eb; }
    .nb-copyright { font-size: 11px; color: #cbd5e1; }

    .nb-camp-controls {
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .nb-camp-nav,
    .nb-camp-play-toggle,
    .nb-camp-dots button {
        border: 0;
        padding: 0;
        font: inherit;
        cursor: pointer;
    }

    .nb-camp-nav,
    .nb-camp-play-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: #eff6ff;
        color: #2563eb;
        transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
    }

    .nb-camp-nav:hover,
    .nb-camp-nav:focus-visible,
    .nb-camp-play-toggle:hover,
    .nb-camp-play-toggle:focus-visible {
        background: #2563eb;
        color: #ffffff;
        transform: translateY(-1px);
        outline: none;
    }

    .nb-camp-play-toggle {
        background: #0f172a;
        color: #ffffff;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
    }

    .nb-camp-play-toggle.is-paused {
        background: #ecfeff;
        color: #0f766e;
        box-shadow: 0 10px 22px rgba(15, 118, 110, 0.12);
    }

    .nb-camp-dots {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .nb-camp-dots button {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #cbd5e1;
        transition: width 0.28s ease, background 0.28s ease;
    }

    .nb-camp-dots button.is-active {
        width: 28px;
        background: #2563eb;
    }

    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

    @keyframes nbVideoEdgePulse {
        0%, 100% { opacity: 0.42; transform: scale(1); }
        50% { opacity: 0.96; transform: scale(0.992); }
    }

    @keyframes nbVideoSoftStrobe {
        0%, 72%, 100% { opacity: 0; transform: translateX(-8%) skewX(-8deg); }
        78% { opacity: 0.34; transform: translateX(5%) skewX(-8deg); }
        84% { opacity: 0; transform: translateX(18%) skewX(-8deg); }
    }

    @keyframes nbVideoAuraSpin {
        0% { transform: scale(.95) rotate(0deg); filter: blur(18px) saturate(1.18); }
        50% { transform: scale(1.04) rotate(180deg); filter: blur(14px) saturate(1.48); }
        100% { transform: scale(.95) rotate(360deg); filter: blur(18px) saturate(1.18); }
    }

    @keyframes nbVideoScanMove {
        0% { transform: translateY(-42%); opacity: .12; }
        45% { opacity: .32; }
        100% { transform: translateY(42%); opacity: .12; }
    }

    @keyframes nbVideoSignalBlink {
        50% { opacity: .46; color: #ffffff; }
    }

    @keyframes nbVideoPrismSweep {
        0% { opacity: 0; transform: translateX(-64%) skewX(-12deg); }
        18% { opacity: .86; }
        62% { opacity: .42; }
        100% { opacity: 0; transform: translateX(74%) skewX(-12deg); }
    }

    @keyframes nbVideoRingBurst {
        0% { opacity: 0; transform: scale(.38); filter: blur(1px); }
        14% { opacity: .92; }
        100% { opacity: 0; transform: scale(1.42); filter: blur(3px); }
    }

    @keyframes nbVideoMegaFrame {
        0% { transform: translateY(0) scale(1); box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15); }
        16% { transform: translateY(-4px) scale(1.018); box-shadow: 0 0 0 3px rgba(255,255,255,.48), 0 0 48px rgba(96,165,250,.58), 0 28px 80px rgba(59,130,246,.34); }
        42% { transform: translateY(-2px) scale(1.006); }
        100% { transform: translateY(0) scale(1); }
    }

    @keyframes nbVideoFlashHit {
        0% { opacity: 0; transform: translateX(-34%) rotate(4deg) scale(1); }
        10% { opacity: 1; }
        34% { opacity: 0.52; transform: translateX(6%) rotate(4deg) scale(1.05); }
        100% { opacity: 0; transform: translateX(36%) rotate(4deg) scale(1.08); }
    }

    @keyframes nbVideoFlareHit {
        0% { opacity: 0; transform: scale(0.96); filter: blur(0.5px); }
        14% { opacity: 0.9; filter: blur(0); }
        42% { opacity: 0.28; transform: scale(1.04); }
        100% { opacity: 0; transform: scale(1.12); filter: blur(1.8px); }
    }

    @keyframes nbVideoSparkBurst {
        0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.3); }
        18% { opacity: 1; transform: translate3d(0, 0, 0) scale(1.1); }
        100% { opacity: 0; transform: translate3d(var(--spark-x, 18px), var(--spark-y, -22px), 0) scale(0.2); }
    }

    @keyframes nbCampTextReveal {
        0% { opacity: 0; transform: translateX(-16px); filter: blur(8px); }
        100% { opacity: 1; transform: translateX(0); filter: blur(0); }
    }

    @keyframes nbCampMediaReveal {
        0% { opacity: 0; transform: translateX(18px) scale(0.97); filter: blur(10px) saturate(1.4); }
        100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0) saturate(1); }
    }

    @keyframes nbMediaLoaderSweep {
        0% { transform: translateX(-72%) skewX(-14deg); }
        100% { transform: translateX(72%) skewX(-14deg); }
    }

    .nb-video-sparks span:nth-child(1) { --spark-x: -24px; --spark-y: -34px; }
    .nb-video-sparks span:nth-child(2) { --spark-x: 26px; --spark-y: -28px; }
    .nb-video-sparks span:nth-child(3) { --spark-x: 34px; --spark-y: 24px; }
    .nb-video-sparks span:nth-child(4) { --spark-x: -30px; --spark-y: 22px; }
    .nb-video-sparks span:nth-child(5) { --spark-x: 18px; --spark-y: -12px; }
    .nb-video-sparks span:nth-child(6) { --spark-x: -14px; --spark-y: 30px; }
    .nb-video-sparks span:nth-child(7) { --spark-x: -38px; --spark-y: -6px; }
    .nb-video-sparks span:nth-child(8) { --spark-x: 42px; --spark-y: -4px; }
    .nb-video-sparks span:nth-child(9) { --spark-x: 8px; --spark-y: -42px; }
    .nb-video-sparks span:nth-child(10) { --spark-x: -36px; --spark-y: 36px; }
    .nb-video-sparks span:nth-child(11) { --spark-x: 38px; --spark-y: 34px; }
    .nb-video-sparks span:nth-child(12) { --spark-x: 4px; --spark-y: 44px; }

    @media (prefers-reduced-motion: reduce) {
        .nb-video-container.is-playing::before,
        .nb-video-container.is-playing .nb-video-aura,
        .nb-video-container.is-playing .nb-video-scanline,
        .nb-video-container.is-playing .nb-video-signal,
        .nb-video-container.is-playing .nb-video-flare,
        .nb-camp-widget.is-switching .nb-camp-slide.is-active .nb-text-frame,
        .nb-camp-widget.is-switching .nb-camp-slide.is-active .nb-image-frame,
        .nb-media-loader span,
        .nb-video-container.is-flash-hit .nb-video-flash-layer,
        .nb-video-container.is-flash-hit .nb-video-prism,
        .nb-video-container.is-flash-hit .nb-video-rings span,
        .nb-video-container.is-flash-hit .nb-video-flare,
        .nb-video-container.is-flash-hit .nb-video-sparks span {
            animation: none !important;
        }
    }

    /* 반응형 */
    @media (max-width: 992px) {
        .nb-content-inner { flex-direction: column; }
        .nb-camp-stage { min-height: 840px; }
        .nb-camp-slide { flex-direction: column; gap: 32px; }
        .nb-image-frame { width: 100%; max-width: 100%; margin-top: 0; }
        .nb-video-container { max-width: 340px; margin: 0 auto; aspect-ratio: 9 / 16; } /* 반응형에서도 비율 유지 */
        .nb-sound-control { right: calc(50% - 150px); } /* 버튼 위치 조정 */
        .nb-value-grid { grid-template-columns: 1fr 1fr; }
        .nb-main-title { font-size: 42px; }
        .nb-story-title { font-size: 34px; }
        .nb-info-footer { align-items: flex-start; gap: 20px; flex-direction: column; }
    }

    @media (max-width: 480px) {
        .nb-white-widget { padding: 22px 0 34px; border-radius: 0; }
        .nb-camp-widget::after { left: 0; right: 0; }
        .nb-camp-stage { min-height: 920px; }
        .nb-value-grid { grid-template-columns: 1fr; }
        .nb-story-meta-grid { grid-template-columns: 1fr; }
        .nb-top-meta { align-items: flex-start; gap: 12px; flex-direction: column; margin-bottom: 34px; }
        .nb-main-title { font-size: 34px; }
        .nb-story-title { font-size: 28px; }
        .nb-lead-text { font-size: 16px; }
        .nb-stats { gap: 16px; flex-wrap: wrap; }
        .nb-sound-control { right: 20px; bottom: 20px; } /* 모바일에서 버튼 위치 고정 */
    }

/* 2026-05-22 compact speed visual refinement */
.nb-white-widget.nb-camp-widget {
    --nb-camp-ink: #17212b;
    --nb-camp-muted: #5f6d78;
    --nb-camp-line: rgba(148, 163, 184, 0.34);
    --nb-camp-panel: rgba(255, 255, 255, 0.78);
    --nb-camp-blue: #2563eb;
    --nb-camp-cyan: #0891b2;
    --nb-camp-amber: #c47f16;
    min-height: 0;
    padding: 28px 0 26px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(241, 245, 249, 0.24)),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04), rgba(8, 145, 178, 0.04) 46%, rgba(196, 127, 22, 0.035));
    contain: layout paint style;
    content-visibility: auto;
    contain-intrinsic-size: 660px;
}


/* 2026-05-22 full-width center widget background */
.nb-white-widget.nb-camp-widget {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.nb-camp-widget .nb-camp-preloader {
    position: absolute;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    min-height: 360px;
    padding: 28px 40px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.34s ease,
        visibility 0.34s ease;
}

.nb-camp-widget.is-preloading .nb-camp-preloader {
    opacity: 1;
    visibility: visible;
}

.nb-camp-widget.is-preloading > .nb-content-inner,
.nb-camp-widget.is-preloading > .nb-info-footer {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    filter: blur(6px);
}

.nb-camp-widget > .nb-content-inner,
.nb-camp-widget > .nb-info-footer {
    transition:
        opacity 0.42s ease,
        transform 0.42s ease,
        filter 0.42s ease;
}

.nb-camp-widget.is-preload-complete .nb-camp-preloader {
    opacity: 0;
    visibility: hidden;
}

.nb-camp-widget .nb-camp-preload-panel {
    position: relative;
    width: min(520px, calc(100vw - 48px));
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    padding: clamp(20px, 4vw, 30px);
    background: transparent;
    box-shadow: none;
}

.nb-camp-widget .nb-camp-preload-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(20, 184, 166, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.18;
    pointer-events: none;
}

.nb-camp-widget .nb-camp-preload-panel > * {
    position: relative;
    z-index: 1;
}

.nb-camp-widget .nb-camp-preload-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 26px;
    padding: 0 10px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    color: #1d4ed8;
    font-family: 'Montserrat', 'Pretendard', sans-serif;
    font-size: 10px;
    font-weight: 900;
}

.nb-camp-widget .nb-camp-preload-kicker span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12), 0 0 18px rgba(34, 197, 94, 0.5);
}

.nb-camp-widget .nb-camp-preload-title {
    margin-top: 16px;
    color: #0f172a;
    font-family: 'Montserrat', 'Pretendard', sans-serif;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 900;
    line-height: 0.98;
}

.nb-camp-widget .nb-camp-preload-copy {
    min-height: 22px;
    margin-top: 12px;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
}

.nb-camp-widget .nb-camp-preload-track {
    width: 100%;
    height: 10px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.22);
}

.nb-camp-widget .nb-camp-preload-track span {
    display: block;
    width: var(--nb-camp-preload-progress, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb, #06b6d4, #22c55e);
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.3);
    transition: width 0.2s ease;
}

.nb-camp-widget .nb-camp-preload-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: #64748b;
    font-family: 'Montserrat', 'Pretendard', sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.nb-camp-widget .nb-camp-preload-meta [data-nb-camp-preload-percent] {
    color: #1d4ed8;
}

@media (scripting: none) {
    .nb-camp-widget.is-preloading .nb-camp-preloader {
        display: none;
    }

    .nb-camp-widget.is-preloading > .nb-content-inner,
    .nb-camp-widget.is-preloading > .nb-info-footer {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        filter: none;
    }
}

.nb-white-widget.nb-camp-widget > .nb-content-inner,
.nb-white-widget.nb-camp-widget > .nb-info-footer {
    width: calc(100% - 80px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .nb-white-widget.nb-camp-widget > .nb-content-inner,
    .nb-white-widget.nb-camp-widget > .nb-info-footer {
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .nb-white-widget.nb-camp-widget > .nb-content-inner,
    .nb-white-widget.nb-camp-widget > .nb-info-footer {
        width: calc(100% - 32px);
    }
}
.nb-white-widget.nb-camp-widget::after {
    height: 1px;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(8, 145, 178, 0.86), rgba(196, 127, 22, 0.74)) 0 0 / var(--nb-camp-progress) 100% no-repeat,
        rgba(148, 163, 184, 0.22);
    transition: background-size 0.36s ease;
}

.nb-camp-widget .nb-camp-stage {
    min-height: 0;
}

.nb-camp-widget .nb-camp-slide {
    align-items: stretch;
    gap: clamp(18px, 3vw, 34px);
    filter: none;
    transform: translate3d(8px, 0, 0);
    transition:
        opacity 0.34s ease,
        transform 0.34s ease;
}

.nb-camp-widget .nb-camp-slide.is-active {
    filter: none;
    transform: translate3d(0, 0, 0);
}

.nb-camp-widget .nb-camp-slide.is-leaving {
    filter: none;
    transform: translate3d(-8px, 0, 0);
}

.nb-camp-widget .nb-text-frame {
    flex: 1 1 0;
    min-width: 0;
}

.nb-camp-widget .nb-image-frame {
    flex: 0 0 clamp(230px, 25vw, 302px);
    align-items: stretch;
    margin-top: 0;
}

.nb-camp-widget .nb-video-container {
    width: 100%;
    max-width: 292px;
    border-radius: 8px;
    border: 1px solid transparent;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
    contain: paint;
}

.nb-camp-widget .nb-video-container::before {
    animation: none !important;
    box-shadow: none;
    opacity: 0;
}

.nb-camp-widget [data-nb-live-screen] {
    backface-visibility: hidden;
    will-change: opacity;
}

.nb-camp-widget .nb-video-aura,
.nb-camp-widget .nb-video-prism,
.nb-camp-widget .nb-video-rings,
.nb-camp-widget .nb-video-flash-layer,
.nb-camp-widget .nb-video-flare,
.nb-camp-widget .nb-video-sparks {
    display: none !important;
}

.nb-camp-widget .nb-video-scanline {
    opacity: 0.16 !important;
    animation: none !important;
}

.nb-camp-widget .nb-video-signal {
    min-height: 20px;
    padding: 0 7px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.58);
    font-size: 8px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none !important;
}

.nb-camp-widget .nb-media-play,
.nb-camp-widget .nb-sound-control {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
}

.nb-camp-widget .nb-media-loader span {
    animation-duration: 1.4s;
}

.nb-camp-widget .nb-top-meta {
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.nb-camp-widget .nb-sys-badge {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--nb-camp-line);
}

.nb-camp-widget .nb-sys-badge .dot {
    animation-duration: 2.2s;
}

.nb-camp-widget .nb-sys-badge .text,
.nb-camp-widget .nb-version-tag {
    color: var(--nb-camp-muted);
    font-size: 9px;
    font-weight: 800;
}

.nb-camp-widget .nb-hero-section {
    margin-bottom: 22px;
}

.nb-camp-widget .nb-main-title {
    max-width: 780px;
    color: var(--nb-camp-ink);
    font-size: clamp(34px, 4.3vw, 48px);
    line-height: 1.04;
}

.nb-camp-widget .nb-story-title {
    max-width: 740px;
    font-size: clamp(28px, 3.3vw, 38px);
    line-height: 1.16;
}

.nb-camp-widget .nb-divider {
    width: 46px;
    height: 2px;
    margin: 14px 0;
    background: linear-gradient(90deg, var(--nb-camp-blue), var(--nb-camp-cyan));
}

.nb-camp-widget .nb-lead-text {
    max-width: 760px;
    margin: 0;
    color: #475569;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
    word-break: keep-all;
}

.nb-camp-widget .nb-story-section {
    margin-bottom: 18px;
}

.nb-camp-widget .nb-story-eyebrow {
    min-height: 22px;
    margin-bottom: 10px;
    padding: 0 8px;
    border-radius: 8px;
    background: rgba(224, 242, 254, 0.78);
    color: #075985;
    font-size: 10px;
}

.nb-camp-widget .nb-story-actions {
    gap: 10px;
    margin: -4px 0 18px;
    font-size: 11px;
}

.nb-camp-widget .nb-story-link {
    min-height: 32px;
    padding: 0 11px;
    border-radius: 8px;
    background: #17212b;
    font-size: 10px;
}

.nb-camp-widget .nb-value-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.nb-camp-widget .nb-mission-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nb-camp-widget .nb-story-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nb-camp-widget .nb-value-item {
    min-height: 112px;
    padding: 12px 11px 11px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.7));
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.nb-camp-widget .nb-value-link {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    align-content: start;
    color: inherit;
    text-decoration: none;
    transition: border-color .18s ease, transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.nb-camp-widget .nb-value-link:hover,
.nb-camp-widget .nb-value-link:focus-visible {
    border-color: rgba(225, 29, 72, 0.32);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 242, 0.78));
    box-shadow: 0 14px 28px rgba(225, 29, 72, 0.11);
    transform: translateY(-2px);
    outline: none;
}

.nb-camp-widget .nb-mission-link-icon,
.nb-camp-widget .nb-mission-link-arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nb-camp-widget .nb-mission-link-icon {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(219, 234, 254, 0.78)),
        #ffffff;
    color: #2563eb;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
    font-size: 14px;
}

.nb-camp-widget .nb-mission-link-arrow {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 10px;
    opacity: 0.9;
    transform: translate3d(0, 0, 0);
    transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.nb-camp-widget .nb-value-link:hover .nb-mission-link-arrow,
.nb-camp-widget .nb-value-link:focus-visible .nb-mission-link-arrow {
    background: #e11d48;
    opacity: 1;
    transform: translate3d(2px, -2px, 0);
}

.nb-camp-widget .nb-value-no {
    top: 5px;
    right: 8px;
    left: auto;
    z-index: 0;
    color: rgba(37, 99, 235, 0.08);
    font-size: 30px;
    line-height: 1;
}

.nb-camp-widget .nb-value-item h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 7px;
    color: #1f2937;
    font-size: 13px;
    line-height: 1.2;
}

.nb-camp-widget .nb-value-link h3,
.nb-camp-widget .nb-value-link p {
    grid-column: 2;
    padding-right: 18px;
}

.nb-camp-widget .nb-value-item p {
    position: relative;
    z-index: 1;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.48;
}

.nb-camp-widget .nb-info-footer {
    gap: 12px;
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.66);
}

.nb-camp-widget .nb-stats {
    flex-wrap: wrap;
    gap: 7px;
}

.nb-camp-widget .stat-node {
    min-height: 32px;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.72);
}

.nb-camp-widget .stat-label {
    font-size: 8px;
}

.nb-camp-widget .stat-val {
    color: var(--nb-camp-blue);
    font-size: 12px;
}

.nb-camp-widget .nb-camp-controls {
    gap: 8px;
}

.nb-camp-widget .nb-camp-nav {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.nb-camp-widget .nb-camp-play-toggle {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.nb-camp-widget .nb-camp-dots {
    gap: 5px;
}

.nb-camp-widget .nb-camp-dots button {
    width: 7px;
    height: 7px;
}

.nb-camp-widget .nb-camp-dots button.is-active {
    width: 22px;
    background: linear-gradient(90deg, var(--nb-camp-blue), var(--nb-camp-cyan));
}


/* 2026-05-22 android webcam second scene */
.nb-camp-widget .nb-android-slide {
    --nb-android-ink: #102027;
    --nb-android-teal: #0f766e;
    --nb-android-cyan: #0284c7;
    --nb-android-warm: #b45309;
}

.nb-camp-widget .nb-android-frame {
    position: relative;
    padding: clamp(14px, 2vw, 20px);
    border: 1px solid rgba(20, 184, 166, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(236, 253, 245, 0.72), rgba(239, 246, 255, 0.9) 48%, rgba(255, 247, 237, 0.62)),
        linear-gradient(90deg, rgba(14, 165, 233, 0.08), rgba(20, 184, 166, 0.1));
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nb-camp-widget .nb-android-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px) 0 0 / 46px 46px,
        linear-gradient(180deg, rgba(2, 132, 199, 0.08) 1px, transparent 1px) 0 0 / 46px 46px,
        radial-gradient(circle at 84% 16%, rgba(20, 184, 166, 0.18), transparent 32%);
    pointer-events: none;
}

.nb-camp-widget .nb-android-frame > * {
    position: relative;
    z-index: 1;
}

.nb-camp-widget .nb-android-badge .dot {
    background: #14b8a6;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.13), 0 0 18px rgba(20, 184, 166, 0.48);
}

.nb-camp-widget .nb-android-origin {
    color: var(--nb-android-teal);
    text-decoration: none;
}

.nb-camp-widget .nb-android-eyebrow {
    background: rgba(204, 251, 241, 0.86);
    color: #115e59;
}

.nb-camp-widget .nb-android-title {
    color: var(--nb-android-ink);
}

.nb-camp-widget .nb-android-title span {
    color: var(--nb-android-teal);
}

.nb-camp-widget .nb-android-section,
.nb-camp-widget .nb-android-title,
.nb-camp-widget .nb-android-title span {
    background: transparent !important;
    box-shadow: none !important;
}

.nb-camp-widget .nb-android-actions .nb-story-link {
    background: linear-gradient(135deg, #0f766e, #0369a1);
}

.nb-camp-widget .nb-android-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nb-camp-widget .nb-android-meta-grid .nb-value-item {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(240, 253, 250, 0.74));
    border-color: rgba(20, 184, 166, 0.2);
}

.nb-camp-widget .nb-android-meta-grid .nb-value-no {
    color: rgba(15, 118, 110, 0.11);
}

.nb-camp-widget .nb-android-image-frame {
    flex-basis: clamp(245px, 26vw, 320px);
}

.nb-camp-widget .nb-android-screen {
    max-width: 304px;
    background: linear-gradient(180deg, #07111f, #020617);
    border: 1px solid rgba(20, 184, 166, 0.38);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.16),
        0 0 0 6px rgba(20, 184, 166, 0.06);
}

.nb-camp-widget .nb-android-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #020617 var(--nb-phone-screen-url, var(--nb-android-screen-url)) top center / cover no-repeat;
    filter: brightness(1.08) contrast(1.04);
    transform: translateZ(0);
}

.nb-camp-widget .nb-webcam-live-screen::after {
    display: none;
}

.nb-camp-widget .nb-webcam-live-screen .nb-android-screen-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(1.08) contrast(1.24) saturate(1.12) drop-shadow(0 0 0 rgba(0, 0, 0, 0.01));
    transform: none;
    transform-origin: center center;
}

.nb-camp-widget .nb-webcam-live-screen .nb-android-glass {
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.12), transparent 24% 74%, rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 50% 50%, transparent 44%, rgba(2, 6, 23, 0.18));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.16),
        inset 0 0 0 999px rgba(255, 255, 255, 0.015);
    mix-blend-mode: soft-light;
    opacity: 0.66;
}

.nb-camp-widget .nb-android-screen-image {
    z-index: 2;
    object-fit: cover;
    object-position: top center;
    background: #020617;
    opacity: 1 !important;
    visibility: visible !important;
    filter: brightness(1.08) contrast(1.04);
    transform: translateZ(0);
}

.nb-camp-widget .nb-android-glass {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.28), transparent 28% 70%, rgba(255, 255, 255, 0.08)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), transparent 26%, rgba(2, 6, 23, 0.28));
    mix-blend-mode: screen;
}

.nb-camp-widget .nb-android-topbar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    border-radius: 8px;
    color: #ecfeff;
    background: rgba(2, 6, 23, 0.52);
    font-size: 10px;
    font-weight: 850;
}

.nb-camp-widget .nb-android-topbar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.86);
}

.nb-camp-widget .nb-android-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 9;
    min-height: 24px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    color: #e0f2fe;
    background: rgba(15, 118, 110, 0.68);
    font-size: 9px;
    font-weight: 900;
}

.nb-camp-widget .nb-android-screen .nb-video-signal {
    background: rgba(2, 6, 23, 0.62);
    color: #ccfbf1;
}

@media (max-width: 1080px) {
    .nb-camp-widget .nb-android-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-android-frame {
        padding: 14px;
    }

    .nb-camp-widget .nb-android-meta-grid {
        grid-template-columns: 1fr;
    }

    .nb-camp-widget .nb-android-image-frame {
        flex-basis: auto;
    }

    .nb-camp-widget .nb-android-screen {
        max-width: min(284px, 84vw);
    }
}

/* 2026-05-25 camp widget visual upgrade scene */
.nb-camp-widget .nb-design-slide {
    --nb-design-ink: #102033;
    --nb-design-cyan: #0891b2;
    --nb-design-teal: #0f766e;
    --nb-design-amber: #d97706;
}

.nb-camp-widget .nb-design-frame {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.nb-camp-widget .nb-design-frame::before {
    display: none;
}

.nb-camp-widget .nb-design-frame > * {
    position: relative;
    z-index: 1;
}

.nb-camp-widget .nb-design-badge .dot {
    background: var(--nb-design-amber);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.14), 0 0 18px rgba(217, 119, 6, 0.45);
}

.nb-camp-widget .nb-design-badge {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.nb-camp-widget .nb-design-origin {
    color: var(--nb-design-teal);
}

.nb-camp-widget .nb-design-eyebrow {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--nb-design-cyan);
}

.nb-camp-widget .nb-design-title {
    color: var(--nb-design-ink);
}

.nb-camp-widget .nb-design-title span {
    color: var(--nb-design-teal);
}

.nb-camp-widget .nb-design-actions .nb-story-link {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #102033;
    box-shadow: none;
}

.nb-camp-widget .nb-design-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nb-camp-widget .nb-design-meta-grid .nb-value-item {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nb-camp-widget .nb-design-meta-grid .nb-value-no {
    color: rgba(8, 145, 178, 0.88);
}

.nb-camp-widget .nb-design-image-frame {
    flex: 0 0 clamp(360px, 35vw, 560px);
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    perspective: 1100px;
}

.nb-camp-widget .nb-design-screen {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 558 / 400;
    min-height: 330px;
    border-radius: 0;
    overflow: visible;
    isolation: isolate;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: translateZ(0);
}

.nb-camp-widget .nb-design-screen::before {
    content: "";
    position: absolute;
    inset: -28%;
    z-index: 1;
    background:
        conic-gradient(from 0deg at 50% 50%, transparent 0 12%, rgba(34, 211, 238, 0.34) 20%, transparent 30% 54%, rgba(245, 158, 11, 0.26) 64%, transparent 76% 100%);
    opacity: 0.76;
    mix-blend-mode: screen;
    animation: nbDesignOrbit 13s linear infinite;
    pointer-events: none;
}

.nb-camp-widget .nb-design-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    background:
        linear-gradient(90deg, rgba(8, 145, 178, 0.16) 1px, transparent 1px) 0 0 / 44px 100%,
        linear-gradient(180deg, rgba(15, 23, 42, 0.1) 1px, transparent 1px) 0 0 / 100% 36px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 22%, rgba(15, 23, 42, 0.14));
    opacity: 0.58;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.nb-camp-widget .nb-design-ghost {
    position: absolute;
    display: block;
    width: 72%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
    filter: grayscale(1) contrast(0.95) blur(1px);
    opacity: 0.24;
    box-shadow: none;
    pointer-events: none;
}

.nb-camp-widget .nb-design-ghost--back {
    left: -10%;
    top: 12%;
    z-index: 2;
    transform: rotate(-7deg) scale(1.02);
    animation: nbDesignGhostBack 9s ease-in-out infinite;
}

.nb-camp-widget .nb-design-ghost--front {
    right: -12%;
    bottom: 12%;
    z-index: 2;
    transform: rotate(7deg) scale(0.94);
    opacity: 0.18;
    animation: nbDesignGhostFront 10.5s ease-in-out infinite;
}

.nb-camp-widget .nb-design-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(8, 145, 178, 0.22);
    box-shadow:
        0 0 0 22px rgba(8, 145, 178, 0.04),
        inset 0 0 36px rgba(34, 211, 238, 0.12);
    opacity: 0.72;
    pointer-events: none;
}

.nb-camp-widget .nb-design-shot-panel {
    position: absolute;
    inset: 38px 28px 58px;
    z-index: 5;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: rotateX(4deg) rotateY(-5deg) translateZ(42px);
    animation: nbDesignPanelFloat 5.8s ease-in-out infinite;
}

.nb-camp-widget .nb-design-topbar {
    display: none;
}

.nb-camp-widget .nb-design-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.05) brightness(1.08) saturate(1.02);
}

.nb-camp-widget .nb-design-grid {
    position: absolute;
    inset: 0;
    z-index: 4;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.17) 1px, transparent 1px) 0 0 / 56px 100%,
        linear-gradient(180deg, rgba(8, 145, 178, 0.16) 1px, transparent 1px) 0 0 / 100% 42px;
    mix-blend-mode: screen;
    pointer-events: none;
}

.nb-camp-widget .nb-design-scan {
    position: absolute;
    left: -34%;
    top: 0;
    z-index: 6;
    width: 26%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), rgba(34, 211, 238, 0.38), transparent);
    transform: skewX(-14deg);
    mix-blend-mode: screen;
    animation: nbDesignScan 2.8s ease-in-out infinite;
    pointer-events: none;
}

.nb-camp-widget .nb-design-metrics {
    display: none;
}

.nb-camp-widget .nb-design-metrics span {
    display: none;
}

.nb-camp-widget .nb-design-caption {
    display: none;
}

@keyframes nbDesignOrbit {
    to { transform: rotate(360deg); }
}

@keyframes nbDesignPanelFloat {
    0%, 100% { transform: rotateX(4deg) rotateY(-5deg) translate3d(0, 0, 42px); }
    50% { transform: rotateX(2deg) rotateY(-2deg) translate3d(0, -8px, 52px); }
}

@keyframes nbDesignScan {
    0% { transform: translateX(0) skewX(-14deg); opacity: 0; }
    18% { opacity: 0.84; }
    100% { transform: translateX(560%) skewX(-14deg); opacity: 0; }
}

@keyframes nbDesignGhostBack {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg) scale(1.02); }
    50% { transform: translate3d(12px, -8px, 0) rotate(-4deg) scale(1.06); }
}

@keyframes nbDesignGhostFront {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg) scale(0.94); }
    50% { transform: translate3d(-14px, 8px, 0) rotate(4deg) scale(0.98); }
}

@media (max-width: 1080px) {
    .nb-camp-widget .nb-design-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-design-image-frame {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 8px;
    }

    .nb-camp-widget .nb-design-screen {
        width: min(100%, 620px);
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-design-frame {
        padding: 0;
        overflow: visible;
    }

    .nb-camp-widget .nb-design-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        margin: 14px 0 16px;
    }

    .nb-camp-widget .nb-design-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 30px;
        line-height: 1.06;
    }

    .nb-camp-widget .nb-design-actions {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 14px;
    }

    .nb-camp-widget .nb-design-meta-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .nb-camp-widget .nb-design-meta-grid .nb-value-item {
        min-height: 92px;
    }

    .nb-camp-widget .nb-design-screen {
        min-height: 292px;
        border-radius: 0;
    }

    .nb-camp-widget .nb-design-shot-panel {
        inset: 34px 14px 54px;
        transform: none;
    }

    .nb-camp-widget .nb-design-topbar {
        min-height: 26px;
        font-size: 7px;
    }

    .nb-camp-widget .nb-design-metrics {
        left: 12px;
        right: 12px;
        bottom: 14px;
        gap: 5px;
    }

    .nb-camp-widget .nb-design-metrics span {
        min-height: 21px;
        padding: 0 6px;
        font-size: 7px;
    }

    .nb-camp-widget .nb-design-caption {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nb-camp-widget .nb-design-screen::before,
    .nb-camp-widget .nb-design-shot-panel,
    .nb-camp-widget .nb-design-scan,
    .nb-camp-widget .nb-design-ghost {
        animation: none !important;
    }
}

/* 2026-05-22 LG-T540 webcam third scene */
.nb-camp-widget .nb-lg-slide {
    --nb-lg-ink: #111827;
    --nb-lg-blue: #2563eb;
    --nb-lg-cyan: #0e7490;
    --nb-lg-green: #15803d;
}

.nb-camp-widget .nb-lg-frame {
    position: relative;
    padding: clamp(14px, 2vw, 20px);
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(239, 246, 255, 0.86), rgba(236, 253, 245, 0.74) 46%, rgba(248, 250, 252, 0.9)),
        linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(14, 116, 144, 0.08));
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.nb-camp-widget .nb-lg-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.075) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(180deg, rgba(14, 116, 144, 0.075) 1px, transparent 1px) 0 0 / 42px 42px,
        radial-gradient(circle at 82% 18%, rgba(59, 130, 246, 0.18), transparent 30%);
    pointer-events: none;
}

.nb-camp-widget .nb-lg-frame > * {
    position: relative;
    z-index: 1;
}

.nb-camp-widget .nb-lg-badge .dot {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13), 0 0 18px rgba(34, 197, 94, 0.54);
}

.nb-camp-widget .nb-lg-origin {
    color: var(--nb-lg-blue);
    text-decoration: none;
}

.nb-camp-widget .nb-lg-eyebrow {
    background: rgba(219, 234, 254, 0.9);
    color: #1d4ed8;
}

.nb-camp-widget .nb-lg-title {
    color: var(--nb-lg-ink);
}

.nb-camp-widget .nb-lg-title span {
    color: var(--nb-lg-blue);
}

.nb-camp-widget .nb-lg-actions .nb-story-link {
    background: linear-gradient(135deg, #1d4ed8, #0e7490);
}

.nb-camp-widget .nb-lg-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nb-camp-widget .nb-lg-meta-grid .nb-value-item {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.74));
    border-color: rgba(37, 99, 235, 0.18);
}

.nb-camp-widget .nb-lg-meta-grid .nb-value-no {
    color: rgba(37, 99, 235, 0.1);
}

.nb-camp-widget .nb-lg-image-frame {
    flex-basis: clamp(245px, 26vw, 320px);
}

.nb-camp-widget .nb-lg-screen {
    max-width: 304px;
    background: linear-gradient(180deg, #0f172a, #020617);
    border: 1px solid rgba(59, 130, 246, 0.38);
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.16),
        0 0 0 6px rgba(37, 99, 235, 0.06);
}

.nb-camp-widget .nb-lg-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: #020617 var(--nb-phone-screen-url) top center / cover no-repeat;
    filter: brightness(1.08) contrast(1.04);
    transform: translateZ(0);
}

.nb-camp-widget .nb-lg-live-screen::after {
    display: none;
}

.nb-camp-widget .nb-lg-screen-image {
    z-index: 2;
    object-fit: cover;
    object-position: top center;
    background: #020617;
    opacity: 1 !important;
    visibility: visible !important;
    filter: brightness(1.08) contrast(1.04);
    transform: translateZ(0);
}

.nb-camp-widget .nb-lg-live-screen .nb-lg-screen-image {
    filter: brightness(1.08) contrast(1.18) saturate(1.08);
}

.nb-camp-widget .nb-lg-glass {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.24), transparent 28% 72%, rgba(125, 211, 252, 0.1)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), transparent 26%, rgba(2, 6, 23, 0.3));
    mix-blend-mode: screen;
}

.nb-camp-widget .nb-lg-topbar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    border-radius: 8px;
    color: #eff6ff;
    background: rgba(15, 23, 42, 0.58);
    font-size: 10px;
    font-weight: 850;
}

.nb-camp-widget .nb-lg-topbar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.86);
}

.nb-camp-widget .nb-lg-caption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 9;
    min-height: 24px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    color: #dbeafe;
    background: rgba(29, 78, 216, 0.72);
    font-size: 9px;
    font-weight: 900;
}

.nb-camp-widget .nb-lg-screen .nb-video-signal {
    background: rgba(2, 6, 23, 0.64);
    color: #dbeafe;
}

@media (max-width: 1080px) {
    .nb-camp-widget .nb-lg-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-lg-frame {
        padding: 14px;
    }

    .nb-camp-widget .nb-lg-meta-grid {
        grid-template-columns: 1fr;
    }

    .nb-camp-widget .nb-lg-image-frame {
        flex-basis: auto;
    }

    .nb-camp-widget .nb-lg-screen {
        max-width: min(284px, 84vw);
    }
}
@media (max-width: 1080px) {
    .nb-camp-widget .nb-camp-slide {
        gap: 22px;
    }

    .nb-camp-widget .nb-value-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-camp-stage {
        min-height: 0;
    }

    .nb-camp-widget .nb-camp-slide {
        gap: 18px;
    }

    .nb-camp-widget .nb-image-frame {
        flex: 0 0 auto;
        width: 100%;
    }

    .nb-camp-widget .nb-video-container {
        max-width: 286px;
    }

    .nb-camp-widget .nb-sound-control {
        right: calc(50% - 132px);
    }
}

@media (max-width: 640px) {
    .nb-white-widget.nb-camp-widget {
        padding: 22px 0 20px;
        contain-intrinsic-size: 980px;
    }

    .nb-camp-widget .nb-top-meta,
    .nb-camp-widget .nb-info-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .nb-camp-widget .nb-main-title {
        font-size: 31px;
    }

    .nb-camp-widget .nb-story-title {
        font-size: 26px;
    }

    .nb-camp-widget .nb-lead-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .nb-camp-widget .nb-value-grid,
    .nb-camp-widget .nb-story-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .nb-camp-widget .nb-value-item {
        min-height: 104px;
        padding: 10px;
    }

    .nb-camp-widget .nb-video-container {
        max-width: min(280px, 82vw);
    }

    .nb-camp-widget .nb-sound-control {
        right: calc(50% - min(122px, 36vw));
        bottom: 16px;
    }
}

@media (max-width: 360px) {
    .nb-camp-widget .nb-value-grid,
    .nb-camp-widget .nb-story-meta-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026-05-22 remove boxed panels from smartphone webcam scenes */
.nb-camp-widget .nb-android-frame,
.nb-camp-widget .nb-lg-frame {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.nb-camp-widget .nb-android-frame::before,
.nb-camp-widget .nb-lg-frame::before {
    display: none !important;
}

.nb-camp-widget .nb-android-meta-grid,
.nb-camp-widget .nb-lg-meta-grid {
    gap: 14px;
    margin-top: 20px;
}

.nb-camp-widget .nb-android-meta-grid .nb-value-item,
.nb-camp-widget .nb-lg-meta-grid .nb-value-item {
    min-height: 0 !important;
    padding: 12px 10px 0 0 !important;
    border: 0 !important;
    border-top: 2px solid rgba(14, 116, 144, 0.28) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.nb-camp-widget .nb-lg-meta-grid .nb-value-item {
    border-top-color: rgba(37, 99, 235, 0.28) !important;
}

.nb-camp-widget .nb-android-meta-grid .nb-value-no,
.nb-camp-widget .nb-lg-meta-grid .nb-value-no {
    display: none !important;
}

/* 2026-05-23 GD-C100 Ubuntu camera second scene */
.nb-camp-widget .nb-gd-slide {
    --nb-gd-ink: #082f49;
    --nb-gd-cyan: #0891b2;
    --nb-gd-teal: #0f766e;
    --nb-gd-yellow: #ca8a04;
}

.nb-camp-widget .nb-gd-frame {
    padding: 0;
    border: 0;
    background: transparent;
}

.nb-camp-widget .nb-gd-badge .dot {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14), 0 0 18px rgba(34, 197, 94, 0.58);
}

.nb-camp-widget .nb-gd-origin {
    color: var(--nb-gd-teal);
    text-decoration: none;
}

.nb-camp-widget .nb-gd-code-label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(15, 118, 110, 0.22);
    border-radius: 7px;
    background: rgba(240, 253, 250, 0.78);
}

.nb-camp-widget .nb-gd-code-label code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 9px;
    font-weight: 800;
    color: #0f766e;
    white-space: nowrap;
}

.nb-camp-widget .nb-gd-eyebrow {
    background: rgba(207, 250, 254, 0.92);
    color: #0e7490;
}

.nb-camp-widget .nb-gd-title {
    color: var(--nb-gd-ink);
    max-width: 620px;
    font-size: clamp(32px, 3.8vw, 44px);
    line-height: 1.08;
}

.nb-camp-widget .nb-gd-title span {
    color: var(--nb-gd-teal);
}

.nb-camp-widget .nb-gd-title-live-line {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nb-camp-widget .nb-gd-title-live-text {
    color: var(--nb-gd-teal);
}

.nb-camp-widget .nb-mobile-break {
    display: inline;
}

.nb-camp-widget .nb-gd-onair-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(20, 184, 166, 0.34);
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.34), transparent 32%),
        linear-gradient(135deg, #ef4444, #f97316 48%, #0f766e);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(127, 29, 29, 0.38);
    box-shadow:
        0 10px 22px rgba(239, 68, 68, 0.24),
        0 0 18px rgba(20, 184, 166, 0.18);
    transform: translateY(-3px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nb-camp-widget .nb-gd-onair-button::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22), 0 0 14px rgba(255, 255, 255, 0.9);
    animation: nbGdOnAirPulse 1.45s ease-in-out infinite;
}

.nb-camp-widget .nb-gd-onair-button:hover,
.nb-camp-widget .nb-gd-onair-button:focus-visible {
    color: #ffffff !important;
    filter: saturate(1.08) brightness(1.04);
    transform: translateY(-5px);
    box-shadow:
        0 14px 28px rgba(239, 68, 68, 0.3),
        0 0 24px rgba(20, 184, 166, 0.22);
}

.nb-camp-widget .nb-gd-actions .nb-story-link {
    background: linear-gradient(135deg, #0f766e, #0891b2);
}

.nb-camp-widget .nb-gd-actions .nb-story-link--obs {
    background: linear-gradient(135deg, #4f46e5, #0e7490);
}

.nb-camp-widget .nb-gd-slide .nb-hero-section {
    margin-bottom: 18px;
}

.nb-camp-widget .nb-gd-slide .nb-lead-text {
    max-width: 650px;
}

.nb-camp-widget .nb-live-mode-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 18px;
}

.nb-camp-widget .nb-live-mode-option {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    min-height: 78px;
    padding: 11px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.035);
}

.nb-camp-widget .nb-live-mode-option i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
}

.nb-camp-widget .nb-live-mode-option--obs i {
    background: linear-gradient(135deg, #4f46e5, #0e7490);
}

.nb-camp-widget .nb-live-mode-option--direct i {
    background: linear-gradient(135deg, #0f766e, #f97316);
}

.nb-camp-widget .nb-live-mode-option strong {
    display: block;
    margin-bottom: 5px;
    color: #111827;
    font-size: 12px;
    font-weight: 950;
    line-height: 1.2;
}

.nb-camp-widget .nb-live-mode-option span {
    display: block;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.45;
}

.nb-camp-widget .nb-gd-workroom-slide.is-obs-live .nb-live-mode-option--obs,
.nb-camp-widget .nb-gd-workroom-slide.is-direct-live .nb-live-mode-option--direct {
    border-color: rgba(20, 184, 166, 0.42);
    background:
        linear-gradient(180deg, rgba(240, 253, 250, 0.94), rgba(255, 247, 237, 0.74));
    box-shadow:
        0 10px 24px rgba(15, 118, 110, 0.11),
        inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.nb-camp-widget .nb-gd-workroom-slide.is-obs-live .nb-live-mode-option--direct,
.nb-camp-widget .nb-gd-workroom-slide.is-direct-live .nb-live-mode-option--obs {
    opacity: 0.74;
}

.nb-camp-widget .nb-gd-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.nb-camp-widget .nb-gd-meta-grid .nb-value-item {
    min-height: 0;
    padding: 10px 10px 0 0;
    border: 0;
    border-top: 2px solid rgba(8, 145, 178, 0.28);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nb-camp-widget .nb-gd-meta-grid .nb-value-no {
    display: none;
}

.nb-camp-widget .nb-gd-image-frame {
    flex: 0 0 clamp(330px, 36vw, 480px);
}

.nb-camp-widget .nb-gd-webcam-frame {
    flex: 0 0 clamp(420px, 38vw, 520px);
    justify-content: center;
    align-items: center;
}

.nb-camp-widget .nb-gd-webcam-screen {
    width: 100%;
    max-width: 500px !important;
    aspect-ratio: 5 / 4;
    min-height: 0;
    border-radius: 8px;
    border: 1px solid rgba(8, 145, 178, 0.28);
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(8, 47, 73, 0.92)),
        #020617;
    box-shadow:
        0 20px 48px rgba(15, 23, 42, 0.18),
        0 0 28px rgba(20, 184, 166, 0.12);
    text-decoration: none;
}

.nb-camp-widget .nb-gd-console {
    position: relative;
    isolation: isolate;
    display: block;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border: 1px solid rgba(8, 145, 178, 0.38);
    border-radius: 8px;
    background:
        linear-gradient(115deg, rgba(8, 145, 178, 0.08) 0 1px, transparent 1px 42px),
        linear-gradient(25deg, rgba(15, 118, 110, 0.055) 0 1px, transparent 1px 34px),
        linear-gradient(180deg, rgba(240, 253, 250, 0.92), rgba(224, 242, 254, 0.78) 44%, rgba(2, 6, 23, 0.96) 44%);
    box-shadow:
        0 22px 54px rgba(15, 23, 42, 0.22),
        0 0 34px rgba(8, 145, 178, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    color: #d1fae5;
    text-decoration: none;
}

.nb-camp-widget .nb-gd-console::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 18%, rgba(2, 6, 23, 0.22)),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 6px);
    mix-blend-mode: screen;
}

.nb-camp-widget .nb-gd-console::after {
    content: "";
    position: absolute;
    left: -36%;
    top: 0;
    z-index: 7;
    width: 42%;
    height: 112%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.22), rgba(250, 204, 21, 0.16), transparent);
    filter: blur(12px);
    opacity: 0;
    transform: skewX(-18deg);
    animation: nbGdSweep 8s ease-in-out infinite;
}

.nb-camp-widget .nb-gd-terminal-bar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.92);
    color: #e2e8f0;
    font-family: Consolas, Monaco, "Courier New", monospace;
    font-size: 11px;
    text-shadow: 0 0 12px rgba(125, 211, 252, 0.32);
}

.nb-camp-widget .nb-gd-visual-card {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 52px;
    z-index: 4;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.26);
    border-radius: 8px;
    background: #ecfeff;
    box-shadow: 0 12px 28px rgba(8, 47, 73, 0.16);
}

.nb-camp-widget .nb-gd-visual-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nb-camp-widget .nb-gd-live-card {
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.94), rgba(8, 47, 73, 0.88)),
        #020617;
}

.nb-camp-widget .nb-gd-live-image {
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.08) contrast(1.18) saturate(1.08);
    transform: translateZ(0);
}

.nb-camp-widget .nb-gd-youtube-live-embed {
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #000000;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-youtube-live-embed {
    left: -8px;
    width: calc(100% + 16px);
    max-width: none;
}

.nb-camp-widget .nb-gd-workroom-slide[hidden],
.nb-camp-widget .nb-gd-workroom-slide.is-live-hidden {
    display: none !important;
}

.nb-camp-widget .nb-camp-dots button[hidden] {
    display: none !important;
}

.nb-camp-widget .nb-gd-workroom-screen .nb-gd-video-flash {
    position: absolute;
    inset: -16%;
    z-index: 6;
    pointer-events: none;
    background:
        linear-gradient(108deg, transparent 0 30%, rgba(255, 255, 255, 0.86) 45%, rgba(34, 211, 238, 0.52) 50%, transparent 68% 100%),
        radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.44), transparent 24%);
    filter: blur(7px);
    mix-blend-mode: screen;
    opacity: 0;
    transform: translateX(-68%) skewX(-14deg);
    animation: nbGdWorkroomFlash 5.8s ease-in-out infinite;
}

.nb-camp-widget .nb-gd-workroom-screen .nb-gd-video-flash--burst {
    inset: 0;
    z-index: 7;
    background:
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.58), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%);
    filter: none;
    transform: none;
    animation: nbGdWorkroomBurst 5.8s ease-in-out infinite;
}

.nb-camp-widget .nb-gd-webcam-screen .nb-gd-live-image {
    object-fit: cover;
    object-position: center;
}

.nb-camp-widget .nb-gd-webcam-glass {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.16), transparent 26% 74%, rgba(125, 211, 252, 0.08)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.02), transparent 28%, rgba(2, 6, 23, 0.24));
    mix-blend-mode: screen;
}

.nb-camp-widget .nb-gd-webcam-topbar {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(204, 251, 241, 0.28);
    border-radius: 8px;
    color: #ecfeff;
    background: rgba(2, 6, 23, 0.56);
    font-size: 10px;
    font-weight: 900;
}

.nb-camp-widget .nb-gd-webcam-topbar strong {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nb-camp-widget .nb-gd-webcam-topbar span {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.86);
}

.nb-camp-widget .nb-gd-webcam-topbar em {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.66);
    color: #f8fafc;
    font-size: 8px;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.nb-camp-widget .nb-gd-workroom-slide.is-direct-live .nb-gd-webcam-topbar em {
    background: rgba(20, 184, 166, 0.84);
    color: #ecfeff;
}

.nb-camp-widget .nb-gd-workroom-slide.is-obs-live .nb-gd-webcam-topbar em {
    background: rgba(79, 70, 229, 0.82);
    color: #eef2ff;
}

.nb-camp-widget .nb-gd-webcam-caption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 9;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: calc(100% - 132px);
    min-height: 32px;
    padding: 4px 10px;
    border-radius: 8px;
    color: #ccfbf1;
    background: rgba(15, 118, 110, 0.72);
    font-size: 9px;
    font-weight: 900;
    line-height: 1.15;
    text-align: left;
}

.nb-camp-widget .nb-gd-webcam-caption span,
.nb-camp-widget .nb-gd-webcam-caption small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nb-camp-widget .nb-gd-webcam-caption small {
    margin-top: 2px;
    color: rgba(236, 254, 255, 0.76);
    font-size: 8px;
    font-weight: 850;
}

.nb-camp-widget .nb-gd-subtitle-strip {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 50px;
    z-index: 11;
    min-height: 34px;
    overflow: hidden;
    border: 1px solid rgba(204, 251, 241, 0.38);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.72);
    box-shadow:
        0 10px 28px rgba(2, 6, 23, 0.26),
        0 0 18px rgba(34, 211, 238, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nb-camp-widget .nb-gd-subtitle-strip::before,
.nb-camp-widget .nb-gd-subtitle-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 34px;
    pointer-events: none;
}

.nb-camp-widget .nb-gd-subtitle-strip::before {
    left: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), transparent);
}

.nb-camp-widget .nb-gd-subtitle-strip::after {
    right: 0;
    background: linear-gradient(270deg, rgba(2, 6, 23, 0.96), transparent);
}

.nb-camp-widget .nb-gd-subtitle-track {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    min-width: max-content;
    height: 34px;
    padding-left: 100%;
    color: #f8fafc;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
    text-shadow:
        0 1px 2px rgba(2, 6, 23, 0.96),
        0 0 12px rgba(34, 211, 238, 0.72);
    animation: nbGdSubtitleFlow 28s linear infinite;
    will-change: transform;
}

.nb-camp-widget .nb-gd-subtitle-track span {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nb-camp-widget .nb-gd-subtitle-track span + span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 26px;
    border-radius: 999px;
    background: #22d3ee;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.9);
}

.nb-camp-widget .nb-gd-webcam-screen .nb-video-signal {
    right: 12px;
    bottom: 12px;
    color: #ecfeff;
    background: rgba(2, 6, 23, 0.66);
}

.nb-camp-widget .nb-gd-live-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 18%, rgba(34, 211, 238, 0.18) 50%, transparent 82%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 20%, rgba(2, 6, 23, 0.28)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.26) 0, rgba(255, 255, 255, 0.26) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(90deg, rgba(103, 232, 249, 0.14) 0, rgba(103, 232, 249, 0.14) 1px, transparent 1px, transparent 34px),
        repeating-linear-gradient(115deg, rgba(125, 211, 252, 0.18) 0, rgba(125, 211, 252, 0.18) 1px, transparent 1px, transparent 11px);
    mix-blend-mode: overlay;
    opacity: 0.58;
    filter: contrast(1.12) saturate(1.08);
}

.nb-camp-widget .nb-gd-workroom-screen .nb-video-scanline {
    inset: 0 !important;
    z-index: 8;
    width: 100%;
    height: 100%;
    opacity: 0.52 !important;
    background:
        linear-gradient(180deg, transparent 0 45%, rgba(6, 182, 212, 0.78) 49%, rgba(236, 254, 255, 0.92) 50%, rgba(20, 184, 166, 0.74) 51%, transparent 55%),
        repeating-linear-gradient(180deg, rgba(236, 254, 255, 0.34) 0, rgba(236, 254, 255, 0.34) 1px, rgba(2, 6, 23, 0.12) 1px, transparent 5px),
        repeating-linear-gradient(90deg, rgba(103, 232, 249, 0.24) 0, rgba(103, 232, 249, 0.24) 1px, transparent 1px, transparent 42px);
    background-size: 100% 100%, 100% 6px, 42px 100%;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.68));
    mix-blend-mode: normal;
    transform: none !important;
}

.nb-camp-widget .nb-gd-live-chip {
    position: absolute;
    left: 12px;
    top: 50px;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid rgba(204, 251, 241, 0.32);
    border-radius: 6px;
    background: rgba(2, 6, 23, 0.66);
    color: #ecfeff;
    font-size: 9px;
    font-weight: 900;
}

.nb-camp-widget .nb-gd-live-chip i {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.86);
}

.nb-camp-widget .nb-gd-terminal-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: grid;
    gap: 7px;
    height: 42%;
    padding: 18px 16px 48px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.25), transparent 42%, rgba(2, 6, 23, 0.2)),
        #020617;
    font-family: Consolas, Monaco, "Courier New", monospace;
}

.nb-camp-widget .nb-gd-terminal-body p {
    display: flex;
    gap: 9px;
    min-height: 16px;
    margin: 0;
    color: #cffafe;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.48);
}

.nb-camp-widget .nb-gd-terminal-body p:nth-child(2n) {
    color: #bbf7d0;
}

.nb-camp-widget .nb-gd-terminal-body p span {
    flex: 0 0 auto;
    min-width: 38px;
    color: #facc15;
    font-weight: 900;
    text-transform: uppercase;
}

.nb-camp-widget .nb-gd-status {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(204, 251, 241, 0.3);
    border-radius: 6px;
    background: rgba(15, 118, 110, 0.82);
    color: #ecfdf5;
    font-size: 9px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes nbGdSweep {
    0%, 20% {
        left: -44%;
        opacity: 0;
    }
    27% {
        opacity: 0.72;
    }
    36% {
        left: 112%;
        opacity: 0;
    }
    100% {
        left: 112%;
        opacity: 0;
    }
}

@keyframes nbGdWorkroomFlash {
    0%, 54%, 100% {
        opacity: 0;
        transform: translateX(-72%) skewX(-14deg);
    }
    60% {
        opacity: 0.78;
    }
    70% {
        opacity: 0;
        transform: translateX(72%) skewX(-14deg);
    }
}

@keyframes nbGdSubtitleFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes nbGdOnAirPulse {
    0%, 100% {
        opacity: 0.78;
        transform: scale(0.84);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes nbGdWorkroomBurst {
    0%, 57%, 100% {
        opacity: 0;
    }
    61% {
        opacity: 0.48;
    }
    64% {
        opacity: 0.08;
    }
    67% {
        opacity: 0.32;
    }
    72% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nb-camp-widget .nb-gd-console::after,
    .nb-camp-widget .nb-gd-workroom-screen .nb-gd-video-flash,
    .nb-camp-widget .nb-gd-onair-button::before {
        animation: none;
    }
}

@media (max-width: 1080px) {
    .nb-camp-widget .nb-gd-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-gd-webcam-frame {
        flex-basis: auto;
        width: 100%;
    }

    .nb-camp-widget .nb-gd-webcam-screen {
        width: min(100%, 480px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-live-mode-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 12px 0 16px;
    }

    .nb-camp-widget .nb-live-mode-option {
        min-height: 70px;
        padding: 10px;
    }

    .nb-camp-widget .nb-gd-meta-grid {
        grid-template-columns: 1fr;
    }

    .nb-camp-widget .nb-gd-title-live-line {
        gap: 7px;
    }

    .nb-camp-widget .nb-gd-onair-button {
        min-height: 26px;
        padding: 0 9px;
        font-size: 10px;
        transform: translateY(-2px);
    }

    .nb-camp-widget .nb-gd-image-frame,
    .nb-camp-widget .nb-gd-webcam-frame {
        flex-basis: auto;
    }

    .nb-camp-widget .nb-gd-webcam-screen {
        width: min(100%, 340px);
        aspect-ratio: 9 / 13;
    }

    .nb-camp-widget .nb-gd-webcam-caption {
        max-width: calc(100% - 104px);
        min-height: 30px;
        padding: 4px 8px;
    }

    .nb-camp-widget .nb-gd-console {
        max-width: min(430px, 88vw);
        aspect-ratio: 9 / 10;
    }

    .nb-camp-widget .nb-gd-visual-card {
        left: 12px;
        right: 12px;
        top: 48px;
    }

    .nb-camp-widget .nb-gd-terminal-body {
        height: 43%;
        padding: 16px 12px 46px;
    }

    .nb-camp-widget .nb-gd-terminal-body p {
        font-size: 10px;
    }
}

/* 2026-05-26 relay server 2 shared light scene */
.nb-camp-widget .nb-gd-workroom-slide {
    align-items: center;
    gap: clamp(22px, 3vw, 38px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--nb-camp-ink);
    overflow: visible;
}

.nb-camp-widget .nb-gd-workroom-slide::before {
    display: none;
}

.nb-camp-widget .nb-gd-workroom-slide > * {
    position: relative;
    z-index: 1;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-webcam-frame {
    order: 1;
    flex: 0 0 clamp(430px, 42vw, 580px);
    margin-top: 0;
    justify-content: flex-start;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-frame {
    order: 2;
    flex: 1 1 0;
    min-width: 0;
    padding: 0;
    color: var(--nb-camp-ink);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-top-meta {
    margin-bottom: 16px;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-sys-badge {
    border-color: rgba(15, 118, 110, 0.18);
    background: rgba(255, 255, 255, 0.82);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-sys-badge .text,
.nb-camp-widget .nb-gd-workroom-slide .nb-story-actions > span {
    color: var(--nb-camp-muted);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-origin {
    color: var(--nb-gd-teal);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-eyebrow {
    border: 1px solid rgba(8, 145, 178, 0.18);
    background: rgba(207, 250, 254, 0.92);
    color: #0e7490;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-title {
    max-width: none;
    color: var(--nb-gd-ink);
    text-shadow: none;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-title-live-text {
    color: var(--nb-gd-teal);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-divider {
    background: linear-gradient(90deg, var(--nb-camp-blue), var(--nb-camp-cyan));
}

.nb-camp-widget .nb-gd-workroom-slide .nb-lead-text {
    max-width: 720px;
    color: #475569;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-actions .nb-story-link {
    border: 1px solid rgba(15, 118, 110, 0.18);
    background: linear-gradient(135deg, #0f766e, #0891b2);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.14);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-actions .nb-story-link--sub {
    background: linear-gradient(135deg, #1d4ed8, #0e7490);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-meta-grid {
    gap: 10px;
    margin-top: 18px;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-meta-grid .nb-value-item {
    min-height: 108px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.7));
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-meta-grid .nb-value-no {
    display: block;
    color: rgba(37, 99, 235, 0.08);
}

.nb-camp-widget .nb-gd-workroom-slide .nb-value-item h3 {
    color: #1f2937;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-value-item p {
    color: #64748b;
}

.nb-camp-widget .nb-gd-workroom-slide .nb-gd-webcam-screen {
    width: 100%;
    max-width: 580px !important;
    aspect-ratio: 16 / 11;
    border-color: rgba(103, 232, 249, 0.34);
    box-shadow:
        0 28px 70px rgba(2, 6, 23, 0.34),
        0 0 34px rgba(34, 211, 238, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-gd-workroom-slide {
        padding: 18px;
    }

    .nb-camp-widget .nb-gd-workroom-slide .nb-gd-webcam-frame,
    .nb-camp-widget .nb-gd-workroom-slide .nb-gd-frame {
        order: initial;
        flex: 0 0 auto;
        width: 100%;
    }

    .nb-camp-widget .nb-gd-workroom-slide .nb-gd-webcam-frame {
        order: 1;
        justify-content: center;
    }

    .nb-camp-widget .nb-gd-workroom-slide .nb-gd-frame {
        order: 2;
    }

    .nb-camp-widget .nb-gd-workroom-slide .nb-gd-webcam-screen {
        width: min(100%, 560px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-gd-workroom-slide {
        padding: 0;
        gap: 16px;
    }

    .nb-camp-widget .nb-gd-workroom-slide .nb-gd-title {
        font-size: 29px;
    }

    .nb-camp-widget .nb-mobile-break {
        display: block;
    }

    .nb-camp-widget .nb-gd-workroom-slide .nb-gd-webcam-screen {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .nb-camp-widget .nb-gd-workroom-slide .nb-gd-meta-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026-05-22 CODEX / Termux command terminal fourth scene */
.nb-camp-widget .nb-ops-slide {
    --nb-ops-ink: #111827;
    --nb-ops-green: #16a34a;
    --nb-ops-cyan: #0891b2;
    --nb-ops-amber: #d97706;
}

.nb-camp-widget .nb-ops-frame {
    padding: 0;
    border: 0;
    background: transparent;
}

.nb-camp-widget .nb-ops-badge .dot {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14), 0 0 18px rgba(34, 197, 94, 0.6);
}

.nb-camp-widget .nb-ops-origin {
    color: var(--nb-ops-cyan);
}

.nb-camp-widget .nb-ops-eyebrow {
    background: rgba(220, 252, 231, 0.88);
    color: #166534;
}

.nb-camp-widget .nb-ops-title {
    color: var(--nb-ops-ink);
}

.nb-camp-widget .nb-ops-title span {
    color: var(--nb-ops-green);
}

.nb-camp-widget .nb-ops-actions .nb-story-link {
    background: linear-gradient(135deg, #166534, #0e7490);
}

.nb-camp-widget .nb-ops-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.nb-camp-widget .nb-ops-meta-grid .nb-value-item {
    min-height: 0;
    padding: 12px 10px 0 0;
    border: 0;
    border-top: 2px solid rgba(22, 163, 74, 0.28);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nb-camp-widget .nb-ops-meta-grid .nb-value-no {
    display: none;
}

.nb-camp-widget .nb-ops-image-frame {
    flex: 0 0 clamp(330px, 36vw, 480px);
}

.nb-camp-widget .nb-ops-terminal {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border: 1px solid rgba(74, 222, 128, 0.42);
    border-radius: 8px;
    background:
        linear-gradient(115deg, rgba(34, 197, 94, 0.07) 0 1px, transparent 1px 42px),
        linear-gradient(25deg, rgba(14, 165, 233, 0.055) 0 1px, transparent 1px 34px),
        radial-gradient(circle at 18% 20%, rgba(34, 197, 94, 0.2), transparent 33%),
        radial-gradient(circle at 82% 76%, rgba(8, 145, 178, 0.18), transparent 34%),
        radial-gradient(circle at 50% 110%, rgba(250, 204, 21, 0.09), transparent 38%),
        #020617;
    box-shadow:
        0 22px 54px rgba(15, 23, 42, 0.28),
        0 0 38px rgba(34, 197, 94, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 0 42px rgba(34, 197, 94, 0.08);
    color: #d1fae5;
    font-family: Consolas, Monaco, "Courier New", monospace;
}

.nb-camp-widget .nb-ops-terminal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(2, 6, 23, 0.36) 78%, rgba(2, 6, 23, 0.64)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 18%, rgba(2, 6, 23, 0.28)),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 5px);
    mix-blend-mode: screen;
}

.nb-camp-widget .nb-ops-terminal::after {
    content: "";
    position: absolute;
    left: -34%;
    top: 4%;
    z-index: 7;
    width: 46%;
    height: 118%;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.22), rgba(103, 232, 249, 0.26), transparent);
    filter: blur(12px);
    opacity: 0;
    transform: skewX(-18deg);
    animation: nbOpsGlitchSweep 7.5s ease-in-out infinite;
}

.nb-camp-widget .nb-ops-terminal-bar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78)),
        rgba(15, 23, 42, 0.86);
    color: #e2e8f0;
    font-size: 11px;
    text-shadow: 0 0 12px rgba(125, 211, 252, 0.32);
}

.nb-camp-widget .nb-ops-dots {
    display: inline-flex;
    gap: 5px;
}

.nb-camp-widget .nb-ops-dots i {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ef4444;
}

.nb-camp-widget .nb-ops-dots i:nth-child(2) {
    background: #f59e0b;
}

.nb-camp-widget .nb-ops-dots i:nth-child(3) {
    background: #22c55e;
}

.nb-camp-widget .nb-ops-signal-field {
    position: absolute;
    inset: 36px 0 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.48;
}

.nb-camp-widget .nb-ops-signal-field span {
    position: absolute;
    top: -46%;
    display: block;
    width: 18px;
    color: rgba(134, 239, 172, 0.5);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.25;
    text-orientation: mixed;
    text-shadow: 0 0 14px rgba(34, 197, 94, 0.58);
    writing-mode: vertical-rl;
    animation: nbOpsDataRain 12s linear infinite;
}

.nb-camp-widget .nb-ops-signal-field span:nth-child(1) {
    left: 8%;
    animation-duration: 12.5s;
}

.nb-camp-widget .nb-ops-signal-field span:nth-child(2) {
    left: 24%;
    animation-delay: -4s;
    animation-duration: 14s;
    color: rgba(103, 232, 249, 0.44);
}

.nb-camp-widget .nb-ops-signal-field span:nth-child(3) {
    left: 41%;
    animation-delay: -8s;
    animation-duration: 11.2s;
}

.nb-camp-widget .nb-ops-signal-field span:nth-child(4) {
    left: 60%;
    animation-delay: -2s;
    animation-duration: 15s;
    color: rgba(253, 224, 71, 0.32);
}

.nb-camp-widget .nb-ops-signal-field span:nth-child(5) {
    left: 76%;
    animation-delay: -6.5s;
    animation-duration: 13.2s;
}

.nb-camp-widget .nb-ops-signal-field span:nth-child(6) {
    left: 91%;
    animation-delay: -10s;
    animation-duration: 16s;
    color: rgba(103, 232, 249, 0.4);
}

.nb-camp-widget .nb-ops-hud {
    position: absolute;
    top: 48px;
    right: 12px;
    z-index: 9;
    display: grid;
    gap: 6px;
    pointer-events: none;
}

.nb-camp-widget .nb-ops-hud span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 8px;
    border: 1px solid rgba(103, 232, 249, 0.28);
    border-radius: 4px;
    background: rgba(2, 6, 23, 0.56);
    color: #a7f3d0;
    font-size: 9px;
    font-weight: 900;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.58);
    box-shadow: inset 0 0 16px rgba(34, 197, 94, 0.08);
    animation: nbOpsHudPulse 2.8s ease-in-out infinite;
}

.nb-camp-widget .nb-ops-hud span:nth-child(2) {
    animation-delay: 0.5s;
}

.nb-camp-widget .nb-ops-hud span:nth-child(3) {
    animation-delay: 1s;
}

.nb-camp-widget .nb-ops-crosshair {
    position: absolute;
    left: 48%;
    top: 54%;
    z-index: 2;
    width: 210px;
    height: 210px;
    pointer-events: none;
    border: 1px solid rgba(34, 197, 94, 0.14);
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(103, 232, 249, 0.22) 50%, transparent calc(50% + 1px)),
        linear-gradient(0deg, transparent calc(50% - 1px), rgba(103, 232, 249, 0.22) 50%, transparent calc(50% + 1px)),
        radial-gradient(circle, rgba(34, 197, 94, 0.16) 0 2px, transparent 3px 100%);
    opacity: 0.55;
    transform: translate(-50%, -50%);
    animation: nbOpsGridDrift 11s ease-in-out infinite;
}

.nb-camp-widget .nb-ops-crosshair::before,
.nb-camp-widget .nb-ops-crosshair::after {
    content: "";
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(103, 232, 249, 0.14);
    border-radius: inherit;
}

.nb-camp-widget .nb-ops-crosshair::after {
    inset: 70px;
    border-color: rgba(250, 204, 21, 0.16);
}

.nb-camp-widget .nb-ops-pulse-map {
    position: absolute;
    left: 20px;
    bottom: 44px;
    z-index: 3;
    width: 86px;
    height: 46px;
    pointer-events: none;
    border-left: 1px solid rgba(103, 232, 249, 0.2);
    border-bottom: 1px solid rgba(103, 232, 249, 0.2);
    opacity: 0.72;
}

.nb-camp-widget .nb-ops-pulse-map i {
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0), rgba(34, 197, 94, 0.82), rgba(103, 232, 249, 0));
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
    transform-origin: left center;
    animation: nbOpsPulseLine 2.4s ease-in-out infinite;
}

.nb-camp-widget .nb-ops-pulse-map i:nth-child(2) {
    bottom: 22px;
    animation-delay: 0.42s;
    transform: scaleX(0.72);
}

.nb-camp-widget .nb-ops-pulse-map i:nth-child(3) {
    bottom: 35px;
    animation-delay: 0.9s;
    transform: scaleX(0.54);
}

.nb-camp-widget .nb-ops-terminal-body {
    position: absolute;
    inset: 36px 0 0;
    z-index: 5;
    overflow: hidden;
    padding: 50px 16px 50px;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.22), transparent 38%, rgba(2, 6, 23, 0.24)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.38), transparent 34%, rgba(2, 6, 23, 0.42));
}

.nb-camp-widget .nb-ops-stream {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 8px;
    animation: nbOpsTerminalScroll 24s linear infinite;
}

.nb-camp-widget .nb-ops-stream p {
    position: relative;
    display: flex;
    gap: 9px;
    min-height: 17px;
    margin: 0;
    color: #bbf7d0;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.54);
    filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.2));
}

.nb-camp-widget .nb-ops-stream p:nth-child(4n) {
    color: #cffafe;
}

.nb-camp-widget .nb-ops-stream p:nth-child(7n) {
    color: #fde68a;
    transform: translateX(8px);
}

.nb-camp-widget .nb-ops-stream p:nth-child(6n)::after {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 14px;
    margin-top: 1px;
    background: rgba(187, 247, 208, 0.84);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.72);
    animation: nbOpsCursorBlink 0.9s steps(2, end) infinite;
}

.nb-camp-widget .nb-ops-stream p span {
    flex: 0 0 auto;
    min-width: 34px;
    color: #67e8f9;
    font-weight: 900;
    text-transform: uppercase;
}

.nb-camp-widget .nb-ops-stream p:nth-child(4n) span {
    color: #facc15;
}

.nb-camp-widget .nb-ops-bootline {
    position: absolute;
    left: 16px;
    right: 140px;
    bottom: 14px;
    z-index: 9;
    display: flex;
    align-items: center;
    min-height: 22px;
    color: rgba(209, 250, 229, 0.82);
    font-size: 9px;
    font-weight: 900;
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 0 14px rgba(34, 197, 94, 0.62);
}

.nb-camp-widget .nb-ops-bootline::before {
    content: "";
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.9);
    animation: nbOpsHudPulse 1.4s ease-in-out infinite;
}

.nb-camp-widget .nb-ops-terminal-status {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(187, 247, 208, 0.28);
    border-radius: 6px;
    background: rgba(22, 163, 74, 0.78);
    color: #ecfdf5;
    font-size: 9px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes nbOpsTerminalScroll {
    0%, 7% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes nbOpsDataRain {
    0% {
        transform: translateY(-18%);
        opacity: 0;
    }
    12% {
        opacity: 0.72;
    }
    88% {
        opacity: 0.42;
    }
    100% {
        transform: translateY(180%);
        opacity: 0;
    }
}

@keyframes nbOpsGlitchSweep {
    0%, 18% {
        left: -42%;
        opacity: 0;
    }
    24% {
        opacity: 0.84;
    }
    32% {
        left: 112%;
        opacity: 0;
    }
    64% {
        left: -38%;
        opacity: 0;
    }
    68% {
        opacity: 0.55;
    }
    73% {
        left: 92%;
        opacity: 0;
    }
    100% {
        left: 92%;
        opacity: 0;
    }
}

@keyframes nbOpsHudPulse {
    0%, 100% {
        opacity: 0.72;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-2px);
    }
}

@keyframes nbOpsGridDrift {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(0.92);
    }
    50% {
        transform: translate(-48%, -52%) rotate(8deg) scale(1.03);
    }
}

@keyframes nbOpsPulseLine {
    0%, 100% {
        opacity: 0.25;
        transform: scaleX(0.18);
    }
    50% {
        opacity: 0.95;
        transform: scaleX(1);
    }
}

@keyframes nbOpsCursorBlink {
    0%, 45% {
        opacity: 0;
    }
    46%, 100% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nb-camp-widget .nb-ops-terminal::after,
    .nb-camp-widget .nb-ops-stream,
    .nb-camp-widget .nb-ops-signal-field span,
    .nb-camp-widget .nb-ops-hud span,
    .nb-camp-widget .nb-ops-crosshair,
    .nb-camp-widget .nb-ops-pulse-map i,
    .nb-camp-widget .nb-ops-bootline::before {
        animation: none;
    }
}

@media (max-width: 1080px) {
    .nb-camp-widget .nb-ops-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-ops-meta-grid {
        grid-template-columns: 1fr;
    }

    .nb-camp-widget .nb-ops-image-frame {
        flex-basis: auto;
    }

    .nb-camp-widget .nb-ops-terminal {
        max-width: min(430px, 88vw);
        aspect-ratio: 9 / 10;
    }

    .nb-camp-widget .nb-ops-hud {
        top: 44px;
        right: 10px;
        gap: 4px;
    }

    .nb-camp-widget .nb-ops-hud span {
        min-height: 18px;
        padding: 0 6px;
        font-size: 8px;
    }

    .nb-camp-widget .nb-ops-terminal-body {
        padding: 84px 13px 50px;
    }

    .nb-camp-widget .nb-ops-stream p {
        font-size: 10.5px;
    }

    .nb-camp-widget .nb-ops-bootline {
        right: 118px;
        font-size: 8px;
    }
}

/* 2026-05-23 Ubuntu reboot / document log simulation fifth scene */
.nb-camp-widget .nb-boot-slide {
    --nb-boot-ink: #111827;
    --nb-boot-orange: #ea580c;
    --nb-boot-cyan: #06b6d4;
    --nb-boot-green: #22c55e;
}

.nb-camp-widget .nb-boot-frame {
    padding: 0;
    border: 0;
    background: transparent;
}

.nb-camp-widget .nb-boot-badge .dot {
    background: var(--nb-boot-orange);
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.14), 0 0 22px rgba(234, 88, 12, 0.64);
}

.nb-camp-widget .nb-boot-origin {
    color: var(--nb-boot-orange);
}

.nb-camp-widget .nb-boot-eyebrow {
    background: rgba(255, 237, 213, 0.9);
    color: #9a3412;
}

.nb-camp-widget .nb-boot-title {
    color: var(--nb-boot-ink);
}

.nb-camp-widget .nb-boot-title span {
    color: var(--nb-boot-orange);
}

.nb-camp-widget .nb-boot-actions .nb-story-link {
    background: linear-gradient(135deg, #c2410c, #0e7490);
}

.nb-camp-widget .nb-boot-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.nb-camp-widget .nb-boot-meta-grid .nb-value-item {
    min-height: 0;
    padding: 12px 10px 0 0;
    border: 0;
    border-top: 2px solid rgba(234, 88, 12, 0.28);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nb-camp-widget .nb-boot-meta-grid .nb-value-no {
    display: none;
}

.nb-camp-widget .nb-boot-image-frame {
    flex: 0 0 clamp(340px, 38vw, 520px);
}

.nb-camp-widget .nb-boot-terminal {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border: 1px solid rgba(251, 146, 60, 0.46);
    border-radius: 8px;
    background:
        radial-gradient(circle at 18% 14%, rgba(234, 88, 12, 0.18), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(6, 182, 212, 0.18), transparent 34%),
        linear-gradient(120deg, rgba(251, 146, 60, 0.08) 0 1px, transparent 1px 36px),
        linear-gradient(24deg, rgba(6, 182, 212, 0.06) 0 1px, transparent 1px 42px),
        #030712;
    box-shadow:
        0 24px 58px rgba(15, 23, 42, 0.3),
        0 0 34px rgba(234, 88, 12, 0.14),
        inset 0 0 0 1px rgba(255, 255, 255, 0.045),
        inset 0 0 46px rgba(6, 182, 212, 0.08);
    color: #f8fafc;
    font-family: Consolas, Monaco, "Courier New", monospace;
}

.nb-camp-widget .nb-boot-terminal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 52%, transparent 0 42%, rgba(3, 7, 18, 0.34) 76%, rgba(3, 7, 18, 0.68)),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 5px);
    mix-blend-mode: screen;
}

.nb-camp-widget .nb-boot-terminal::after {
    content: "";
    position: absolute;
    left: -40%;
    top: 0;
    z-index: 7;
    width: 52%;
    height: 120%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.28), rgba(103, 232, 249, 0.2), transparent);
    filter: blur(14px);
    opacity: 0;
    transform: skewX(-16deg);
    animation: nbBootSweep 6.8s ease-in-out infinite;
}

.nb-camp-widget .nb-boot-terminal-bar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(251, 146, 60, 0.26);
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.76));
    color: #fed7aa;
    font-size: 11px;
    text-shadow: 0 0 12px rgba(251, 146, 60, 0.34);
}

.nb-camp-widget .nb-boot-grid {
    position: absolute;
    inset: 36px 0 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(6, 182, 212, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(251, 146, 60, 0.08) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.42;
    animation: nbBootGridMove 10s linear infinite;
}

.nb-camp-widget .nb-boot-hud {
    position: absolute;
    top: 48px;
    right: 12px;
    z-index: 9;
    display: grid;
    gap: 6px;
    pointer-events: none;
}

.nb-camp-widget .nb-boot-hud span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 8px;
    border: 1px solid rgba(251, 146, 60, 0.34);
    border-radius: 4px;
    background: rgba(3, 7, 18, 0.62);
    color: #fed7aa;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: inset 0 0 18px rgba(234, 88, 12, 0.1);
    animation: nbBootHudBlink 2.2s ease-in-out infinite;
}

.nb-camp-widget .nb-boot-hud span:nth-child(2) {
    animation-delay: 0.45s;
    color: #a5f3fc;
}

.nb-camp-widget .nb-boot-hud span:nth-child(3) {
    animation-delay: 0.9s;
}

.nb-camp-widget .nb-boot-terminal-body {
    position: absolute;
    inset: 36px 0 0;
    z-index: 5;
    overflow: hidden;
    padding: 48px 16px 44px;
    background:
        linear-gradient(90deg, rgba(3, 7, 18, 0.2), transparent 36%, rgba(3, 7, 18, 0.26)),
        linear-gradient(180deg, rgba(3, 7, 18, 0.28), transparent 32%, rgba(3, 7, 18, 0.46));
}

.nb-camp-widget .nb-boot-stream {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 7px;
    animation: nbBootTerminalScroll 20s linear infinite;
}

.nb-camp-widget .nb-boot-stream p {
    display: flex;
    gap: 9px;
    min-height: 17px;
    margin: 0;
    color: #e5e7eb;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.36);
}

.nb-camp-widget .nb-boot-stream p:nth-child(3n) {
    color: #a5f3fc;
}

.nb-camp-widget .nb-boot-stream p:nth-child(5n) {
    color: #fed7aa;
    transform: translateX(8px);
}

.nb-camp-widget .nb-boot-stream p:nth-child(9n) {
    color: #fecaca;
}

.nb-camp-widget .nb-boot-stream p:nth-child(8n)::after {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 14px;
    margin-top: 1px;
    background: rgba(251, 146, 60, 0.88);
    box-shadow: 0 0 14px rgba(251, 146, 60, 0.78);
    animation: nbOpsCursorBlink 0.82s steps(2, end) infinite;
}

.nb-camp-widget .nb-boot-stream p span {
    flex: 0 0 auto;
    min-width: 46px;
    color: #22c55e;
    font-weight: 900;
    text-transform: uppercase;
}

.nb-camp-widget .nb-boot-stream p:nth-child(2n) span {
    color: #67e8f9;
}

.nb-camp-widget .nb-boot-stream p:nth-child(5n) span,
.nb-camp-widget .nb-boot-stream p:nth-child(9n) span {
    color: #fb923c;
}

.nb-camp-widget .nb-boot-status {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 10;
    min-height: 24px;
    padding: 6px 10px;
    border: 1px solid rgba(251, 146, 60, 0.28);
    border-radius: 6px;
    background: rgba(3, 7, 18, 0.72);
    color: #ffedd5;
    font-size: 9px;
    font-weight: 900;
    text-align: right;
    text-shadow: 0 0 10px rgba(251, 146, 60, 0.42);
}

.nb-camp-widget .nb-boot-status::before {
    content: "LIVE";
    float: left;
    color: #67e8f9;
}

.nb-camp-widget .nb-boot-scan {
    position: absolute;
    left: 0;
    right: 0;
    top: -20%;
    z-index: 9;
    height: 22%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(251, 146, 60, 0.13), rgba(103, 232, 249, 0.12), transparent);
    filter: blur(2px);
    animation: nbBootScan 5.4s linear infinite;
}

@keyframes nbBootTerminalScroll {
    0%, 5% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes nbBootSweep {
    0%, 18% {
        left: -44%;
        opacity: 0;
    }
    24% {
        opacity: 0.82;
    }
    34% {
        left: 112%;
        opacity: 0;
    }
    100% {
        left: 112%;
        opacity: 0;
    }
}

@keyframes nbBootGridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 68px 34px, 34px 68px;
    }
}

@keyframes nbBootHudBlink {
    0%, 100% {
        opacity: 0.72;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-2px);
    }
}

@keyframes nbBootScan {
    0% {
        top: -24%;
        opacity: 0;
    }
    16% {
        opacity: 0.78;
    }
    82% {
        opacity: 0.26;
    }
    100% {
        top: 112%;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nb-camp-widget .nb-boot-terminal::after,
    .nb-camp-widget .nb-boot-grid,
    .nb-camp-widget .nb-boot-hud span,
    .nb-camp-widget .nb-boot-stream,
    .nb-camp-widget .nb-boot-scan {
        animation: none;
    }
}

@media (max-width: 1080px) {
    .nb-camp-widget .nb-boot-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-boot-meta-grid {
        grid-template-columns: 1fr;
    }

    .nb-camp-widget .nb-boot-image-frame {
        flex-basis: auto;
    }

    .nb-camp-widget .nb-boot-terminal {
        max-width: min(440px, 88vw);
        aspect-ratio: 9 / 10;
    }

    .nb-camp-widget .nb-boot-hud {
        top: 44px;
        right: 10px;
        gap: 4px;
    }

    .nb-camp-widget .nb-boot-hud span {
        min-height: 18px;
        padding: 0 6px;
        font-size: 8px;
    }

    .nb-camp-widget .nb-boot-terminal-body {
        padding: 82px 13px 44px;
    }

    .nb-camp-widget .nb-boot-stream p {
        font-size: 10.5px;
    }
}

/* 2026-05-23 match the first mission video to the terminal scene box size */
.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-image-frame {
    flex: 0 0 clamp(340px, 38vw, 520px);
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-video-container {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1376 / 928;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    box-shadow:
        0 24px 58px rgba(15, 23, 42, 0.24),
        0 0 34px rgba(37, 99, 235, 0.12);
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-intro-youtube-embed {
    left: 50%;
    top: 53%;
    width: 150%;
    height: 126.57%;
    max-width: none;
    background: transparent;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-intro-capture-image {
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #020617;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-intro-youtube-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.74) 45%, rgba(125, 211, 252, 0.36) 50%, transparent 62%) -180% 0 / 74% 100% no-repeat,
        radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 11px),
        linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.18));
    background-position: -180% 0, 0 0, 0 0, 0 0;
    mix-blend-mode: screen;
    opacity: 0.58;
    animation: nbIntroCaptureFlash 4.8s cubic-bezier(0.2, 0.85, 0.25, 1) infinite;
    will-change: background-position, opacity;
}

@keyframes nbIntroCaptureFlash {
    0%,
    54%,
    100% {
        background-position: -180% 0, 0 0, 0 0, 0 0;
        opacity: 0.56;
    }
    63% {
        opacity: 0.96;
    }
    78% {
        background-position: 260% 0, 0 0, 0 0, 0 0;
        opacity: 0.68;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-intro-youtube-screen::after {
        animation: none;
        background-position: 0 0, 0 0, 0 0, 0 0;
        opacity: 0.56;
    }
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-intro-sound-hook {
    display: none !important;
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-video-signal,
.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-video-scanline,
.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-media-loader::before {
    display: none !important;
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-media-loader {
    background: transparent;
    opacity: 0 !important;
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-video-container::before {
    opacity: 0 !important;
}

.nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-sound-control {
    display: none !important;
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-image-frame {
        flex-basis: auto;
    }

    .nb-camp-widget .nb-camp-slide[data-slide-index="0"] .nb-video-container {
        width: 100%;
        max-width: min(440px, 88vw);
        aspect-ratio: 1376 / 928;
    }
}

/* 2026-05-23 dual phone screen scene */
.nb-camp-widget .nb-dual-live-slide {
    --nb-dual-teal: #0f766e;
    --nb-dual-blue: #2563eb;
    --nb-dual-cyan: #06b6d4;
}

.nb-camp-widget .nb-dual-live-actions {
    flex-wrap: wrap;
}

.nb-camp-widget .nb-dual-live-actions .nb-story-link {
    flex: 0 0 auto;
}

.nb-camp-widget .nb-story-link--sub {
    background: linear-gradient(135deg, #1d4ed8, #0e7490) !important;
}

.nb-camp-widget .nb-story-link--galaxy {
    background: linear-gradient(135deg, #0f766e, #0891b2) !important;
}

.nb-camp-widget .nb-dual-title-row {
    display: flex;
    align-items: flex-end;
    gap: clamp(12px, 1.6vw, 20px);
    width: 100%;
}

.nb-camp-widget .nb-dual-title-row .nb-android-title {
    flex: 0 1 auto;
}

.nb-camp-widget .nb-title-gd-card {
    flex: 0 0 clamp(172px, 16vw, 244px);
    width: clamp(172px, 16vw, 244px);
    max-width: none !important;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin: 0 0 8px;
    border-radius: 8px;
    text-decoration: none;
    border-color: transparent;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.96), rgba(8, 47, 73, 0.9)),
        #020617;
    box-shadow:
        0 16px 34px rgba(15, 23, 42, 0.15),
        0 0 24px rgba(20, 184, 166, 0.14);
}

.nb-camp-widget .nb-title-gd-card .nb-gd-dual-image {
    object-fit: cover;
    object-position: center;
    background: #020617;
    filter: brightness(1.08) contrast(1.16) saturate(1.08);
}

.nb-camp-widget .nb-title-gd-card .nb-android-topbar {
    top: 7px;
    left: 7px;
    right: 7px;
    min-height: 22px;
    padding: 0 7px;
    font-size: 8px;
}

.nb-camp-widget .nb-title-gd-card .nb-video-signal {
    right: 8px;
    bottom: 8px;
}

.nb-camp-widget .nb-dual-live-frame {
    flex: 0 0 clamp(500px, 44vw, 610px);
    justify-content: flex-start;
    align-items: center;
}

.nb-camp-widget .nb-dual-live-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 590px;
    align-items: stretch;
    justify-content: start;
}

.nb-camp-widget .nb-dual-live-card {
    width: 100%;
    max-width: none !important;
    aspect-ratio: 9 / 16;
    min-height: 0;
    border-radius: 8px;
    text-decoration: none;
}

.nb-camp-widget .nb-dual-live-card--galaxy,
.nb-camp-widget .nb-dual-live-card--lg {
    justify-self: stretch;
    width: 100%;
    max-height: 448px;
}

.nb-camp-widget .nb-dual-live-card--galaxy {
    border-color: transparent;
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.16),
        0 0 26px rgba(20, 184, 166, 0.12);
}

.nb-camp-widget .nb-dual-live-card--lg {
    border-color: transparent;
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.16),
        0 0 26px rgba(37, 99, 235, 0.12);
}

.nb-camp-widget .nb-dual-live-card .nb-video-signal {
    right: 10px;
    bottom: 10px;
}

.nb-camp-widget .nb-dual-live-card .nb-android-caption,
.nb-camp-widget .nb-dual-live-card .nb-lg-caption {
    left: 10px;
    bottom: 10px;
    min-height: 22px;
    padding: 0 8px;
    font-size: 8px;
}

.nb-camp-widget .nb-dual-live-card .nb-android-topbar,
.nb-camp-widget .nb-dual-live-card .nb-lg-topbar {
    top: 8px;
    left: 8px;
    right: 8px;
    min-height: 26px;
    padding: 0 8px;
    font-size: 9px;
}

.nb-camp-widget .nb-dual-live-card--galaxy .nb-android-screen-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: none;
    transform-origin: center center;
    filter: brightness(1.08) contrast(1.2) saturate(1.08);
}

.nb-camp-widget .nb-gd-local-video {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #020617;
}

.nb-camp-widget .nb-gd-local-video[hidden] {
    display: none;
}

.nb-camp-widget .nb-dual-live-card--gd.is-local-camera .nb-gd-dual-image {
    opacity: 0;
}

.nb-camp-widget .nb-gd-local-cam-button {
    position: absolute;
    left: 10px;
    top: 42px;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid rgba(204, 251, 241, 0.38);
    border-radius: 6px;
    background: rgba(15, 118, 110, 0.74);
    color: #ecfeff;
    font-size: 8px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.22);
}

.nb-camp-widget .nb-dual-live-card--gd.is-server-standby .nb-gd-local-cam-button {
    left: 50%;
    top: 50%;
    min-height: 34px;
    padding: 0 12px;
    border-color: rgba(254, 240, 138, 0.48);
    background: rgba(15, 23, 42, 0.82);
    color: #fef9c3;
    font-size: 10px;
    transform: translate(-50%, -50%);
}

.nb-camp-widget .nb-dual-live-card--gd.is-server-standby .nb-video-signal {
    color: #fef9c3;
    background: rgba(113, 63, 18, 0.74);
}

.nb-camp-widget .nb-dual-live-card--gd.is-local-camera .nb-gd-local-cam-button {
    background: rgba(34, 197, 94, 0.74);
}

.nb-camp-widget .nb-dual-live-card--lg .nb-lg-screen-image {
    filter: brightness(1.08) contrast(1.16) saturate(1.06);
}

/* 2026-05-23 independent phone live scenes */
.nb-camp-widget .nb-lg-node-slide,
.nb-camp-widget .nb-galaxy-slide {
    --nb-phone-card-width: clamp(260px, 25vw, 360px);
}

.nb-camp-widget .nb-single-phone-frame {
    flex: 0 0 clamp(320px, 34vw, 430px);
    justify-content: center;
    align-items: center;
}

.nb-camp-widget .nb-single-phone-card {
    width: var(--nb-phone-card-width);
    max-width: min(100%, var(--nb-phone-card-width)) !important;
    aspect-ratio: 9 / 16;
    min-height: 0;
    border-radius: 8px;
    text-decoration: none;
}

.nb-camp-widget .nb-single-phone-card--galaxy {
    border-color: transparent;
    box-shadow:
        0 20px 48px rgba(15, 23, 42, 0.16),
        0 0 28px rgba(20, 184, 166, 0.13);
}

.nb-camp-widget .nb-single-phone-card--lg {
    border-color: transparent;
    box-shadow:
        0 20px 48px rgba(15, 23, 42, 0.14),
        0 0 26px rgba(37, 99, 235, 0.12);
}

.nb-camp-widget .nb-single-phone-card .nb-video-signal {
    right: 12px;
    bottom: 12px;
}

.nb-camp-widget .nb-single-phone-card .nb-android-caption,
.nb-camp-widget .nb-single-phone-card .nb-lg-caption {
    left: 12px;
    bottom: 12px;
}

.nb-camp-widget .nb-single-phone-card .nb-android-topbar,
.nb-camp-widget .nb-single-phone-card .nb-lg-topbar {
    top: 10px;
    left: 10px;
    right: 10px;
}

.nb-camp-widget .nb-single-phone-card .nb-android-screen-image,
.nb-camp-widget .nb-single-phone-card .nb-lg-screen-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: none;
    transform-origin: center center;
}

/* 2026-05-23 LG-T540 Termux light screen presentation */
.nb-camp-widget .nb-lg-termux-white-screen {
    background: #ffffff !important;
    border-color: transparent;
    box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.12);
}

.nb-camp-widget .nb-lg-termux-white-screen .nb-lg-screen-image {
    height: 126%;
    object-fit: cover;
    object-position: top center;
    background: #ffffff !important;
    filter: invert(1) hue-rotate(180deg) brightness(1.04) contrast(1.18) saturate(0.92) !important;
}

.nb-camp-widget .nb-lg-termux-white-screen .nb-lg-glass {
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.2), transparent 32% 72%, rgba(59, 130, 246, 0.08)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 30%, rgba(37, 99, 235, 0.08));
    mix-blend-mode: normal;
}

.nb-camp-widget .nb-lg-termux-white-screen .nb-lg-topbar {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.nb-camp-widget .nb-lg-termux-white-screen .nb-lg-caption {
    color: #1d4ed8;
    background: rgba(219, 234, 254, 0.88);
}

.nb-camp-widget .nb-lg-termux-white-screen .nb-video-signal {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(37, 99, 235, 0.16);
}

@media (max-width: 1180px) {
    .nb-camp-widget .nb-dual-live-frame {
        flex-basis: clamp(470px, 44vw, 570px);
    }

    .nb-camp-widget .nb-single-phone-frame {
        flex-basis: clamp(300px, 34vw, 390px);
    }
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-dual-title-row {
        align-items: flex-start;
    }

    .nb-camp-widget .nb-title-gd-card {
        flex-basis: clamp(170px, 30vw, 230px);
        width: clamp(170px, 30vw, 230px);
    }

    .nb-camp-widget .nb-dual-live-frame {
        flex-basis: auto;
        width: 100%;
    }

    .nb-camp-widget .nb-dual-live-grid {
        max-width: 560px;
        margin: 0 auto;
    }

    .nb-camp-widget .nb-single-phone-frame {
        flex-basis: auto;
        width: 100%;
    }

    .nb-camp-widget .nb-single-phone-card {
        width: min(100%, 340px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-dual-title-row {
        flex-wrap: wrap;
    }

    .nb-camp-widget .nb-title-gd-card {
        flex-basis: min(100%, 260px);
        width: min(100%, 260px);
        margin-bottom: 0;
    }

    .nb-camp-widget .nb-dual-live-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-width: min(100%, 430px);
    }

    .nb-camp-widget .nb-dual-live-card .nb-android-topbar,
    .nb-camp-widget .nb-dual-live-card .nb-lg-topbar,
    .nb-camp-widget .nb-title-gd-card .nb-android-topbar {
        min-height: 22px;
        font-size: 8px;
    }

    .nb-camp-widget .nb-dual-live-card .nb-android-caption,
    .nb-camp-widget .nb-dual-live-card .nb-lg-caption,
    .nb-camp-widget .nb-dual-live-card .nb-video-signal,
    .nb-camp-widget .nb-title-gd-card .nb-video-signal {
        display: none;
    }

    .nb-camp-widget .nb-single-phone-card {
        width: min(78vw, 300px);
    }

    .nb-camp-widget .nb-single-phone-card .nb-android-topbar,
    .nb-camp-widget .nb-single-phone-card .nb-lg-topbar {
        min-height: 24px;
        font-size: 8px;
    }
}

/* 2026-05-23 Termux scene monitor-sized right box */
.nb-camp-widget .nb-lg-node-slide .nb-single-phone-frame {
    flex: 0 0 clamp(420px, 38vw, 520px);
    justify-content: center;
    align-items: center;
}

.nb-camp-widget .nb-lg-node-slide .nb-single-phone-card--lg {
    width: 100%;
    max-width: 500px !important;
    aspect-ratio: 5 / 4;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background:
        linear-gradient(90deg, rgba(219, 234, 254, 0.44), rgba(255, 255, 255, 0.96) 24% 76%, rgba(219, 234, 254, 0.44)),
        #ffffff !important;
}

.nb-camp-widget .nb-lg-node-slide .nb-lg-termux-white-screen .nb-lg-screen-image {
    top: 0 !important;
    left: 50% !important;
    width: auto !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: contain !important;
    object-position: center top !important;
    transform: translateX(-50%) !important;
}

.nb-camp-widget .nb-lg-node-slide .nb-lg-termux-white-screen .nb-lg-glass {
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.26), transparent 30% 72%, rgba(59, 130, 246, 0.1)),
        linear-gradient(90deg, rgba(37, 99, 235, 0.06), transparent 24% 76%, rgba(37, 99, 235, 0.06));
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-lg-node-slide .nb-single-phone-frame {
        flex-basis: auto;
        width: 100%;
    }

    .nb-camp-widget .nb-lg-node-slide .nb-single-phone-card--lg {
        width: min(100%, 480px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-lg-node-slide .nb-single-phone-card--lg {
        width: min(100%, 340px);
        aspect-ratio: 9 / 13;
    }
}

/* 2026-05-24 LG-T540 static photo mode */
.nb-camp-widget .nb-lg-static-photo-screen {
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(255, 255, 255, 0.96) 22% 78%, rgba(15, 23, 42, 0.96)),
        #020617 !important;
}

.nb-camp-widget .nb-lg-node-slide .nb-lg-static-photo-screen .nb-lg-screen-image {
    top: 0 !important;
    left: 50% !important;
    width: auto !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    transform: translateX(-50%) !important;
    filter: brightness(1.04) contrast(1.05) saturate(1.02) !important;
    background: #020617 !important;
}

.nb-camp-widget .nb-lg-static-photo-screen .nb-lg-glass {
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.22), transparent 32% 72%, rgba(59, 130, 246, 0.1)),
        linear-gradient(180deg, rgba(2, 6, 23, 0.04), transparent 34%, rgba(2, 6, 23, 0.14));
    mix-blend-mode: screen;
}

.nb-camp-widget .nb-lg-static-photo-screen .nb-video-signal {
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.66);
}

/* 2026-05-24 LG-T540 Termux white system stream */
.nb-camp-widget .nb-termux-stream-frame {
    flex: 0 0 clamp(420px, 38vw, 520px);
    justify-content: center;
    align-items: center;
}

.nb-camp-widget .nb-lg-node-slide .nb-termux-white-terminal {
    position: relative;
    isolation: isolate;
    display: block;
    width: 100%;
    max-width: 520px !important;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 8px;
    background:
        radial-gradient(circle at 15% 14%, rgba(37, 99, 235, 0.13), transparent 34%),
        radial-gradient(circle at 86% 78%, rgba(20, 184, 166, 0.16), transparent 34%),
        linear-gradient(120deg, rgba(37, 99, 235, 0.06) 0 1px, transparent 1px 38px),
        linear-gradient(24deg, rgba(20, 184, 166, 0.05) 0 1px, transparent 1px 44px),
        #ffffff !important;
    box-shadow:
        0 24px 58px rgba(15, 23, 42, 0.18),
        0 0 34px rgba(37, 99, 235, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.92),
        inset 0 0 46px rgba(20, 184, 166, 0.08);
    color: #0f172a;
    font-family: Consolas, Monaco, "Courier New", monospace;
    text-decoration: none;
}

.nb-camp-widget .nb-termux-white-terminal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 52%, transparent 0 46%, rgba(255, 255, 255, 0.34) 72%, rgba(226, 232, 240, 0.52)),
        repeating-linear-gradient(180deg, rgba(15, 23, 42, 0.055) 0 1px, transparent 1px 5px);
    opacity: 0.62;
    mix-blend-mode: multiply;
}

.nb-camp-widget .nb-termux-white-terminal::after {
    content: "";
    position: absolute;
    left: -42%;
    top: 0;
    z-index: 7;
    width: 52%;
    height: 120%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.16), rgba(20, 184, 166, 0.2), transparent);
    filter: blur(14px);
    opacity: 0;
    transform: skewX(-16deg);
    animation: nbTermuxSweep 6.8s ease-in-out infinite;
}

.nb-camp-widget .nb-termux-terminal-bar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.18);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.88));
    color: #1d4ed8;
    font-size: 11px;
    text-shadow: none;
}

.nb-camp-widget .nb-termux-grid {
    position: absolute;
    inset: 36px 0 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(20, 184, 166, 0.08) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.48;
    animation: nbTermuxGridMove 10s linear infinite;
}

.nb-camp-widget .nb-termux-hud {
    position: absolute;
    top: 48px;
    right: 12px;
    z-index: 9;
    display: grid;
    gap: 6px;
    pointer-events: none;
}

.nb-camp-widget .nb-termux-hud span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 8px;
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.82);
    color: #1d4ed8;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: inset 0 0 18px rgba(37, 99, 235, 0.08);
    animation: nbTermuxHudBlink 2.2s ease-in-out infinite;
}

.nb-camp-widget .nb-termux-hud span:nth-child(2) {
    animation-delay: 0.45s;
    color: #0f766e;
}

.nb-camp-widget .nb-termux-hud span:nth-child(3) {
    animation-delay: 0.9s;
    color: #334155;
}

.nb-camp-widget .nb-termux-terminal-body {
    position: absolute;
    inset: 36px 0 0;
    z-index: 5;
    overflow: hidden;
    padding: 48px 16px 44px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.54), transparent 36%, rgba(219, 234, 254, 0.34)),
        linear-gradient(180deg, rgba(248, 250, 252, 0.58), transparent 32%, rgba(240, 253, 250, 0.72));
}

.nb-camp-widget .nb-termux-stream {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 7px;
    animation: nbTermuxTerminalScroll 20s linear infinite;
}

.nb-camp-widget .nb-termux-stream p {
    display: flex;
    gap: 9px;
    min-height: 17px;
    margin: 0;
    color: #1f2937;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.86);
}

.nb-camp-widget .nb-termux-stream p:nth-child(3n) {
    color: #0f766e;
}

.nb-camp-widget .nb-termux-stream p:nth-child(5n) {
    color: #1d4ed8;
    transform: translateX(8px);
}

.nb-camp-widget .nb-termux-stream p:nth-child(9n) {
    color: #7c3aed;
}

.nb-camp-widget .nb-termux-stream p:nth-child(8n)::after {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 14px;
    margin-top: 1px;
    background: rgba(37, 99, 235, 0.82);
    box-shadow: 0 0 14px rgba(37, 99, 235, 0.38);
    animation: nbOpsCursorBlink 0.82s steps(2, end) infinite;
}

.nb-camp-widget .nb-termux-stream p span {
    flex: 0 0 auto;
    min-width: 46px;
    color: #16a34a;
    font-weight: 900;
    text-transform: uppercase;
}

.nb-camp-widget .nb-termux-stream p:nth-child(2n) span {
    color: #0891b2;
}

.nb-camp-widget .nb-termux-stream p:nth-child(5n) span,
.nb-camp-widget .nb-termux-stream p:nth-child(9n) span {
    color: #2563eb;
}

.nb-camp-widget .nb-termux-status {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 10;
    min-height: 24px;
    padding: 6px 10px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.82);
    color: #1d4ed8;
    font-size: 9px;
    font-weight: 900;
    text-align: right;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.nb-camp-widget .nb-termux-status::before {
    content: "STATIC";
    float: left;
    color: #0f766e;
}

.nb-camp-widget .nb-termux-scan {
    position: absolute;
    left: 0;
    right: 0;
    top: -20%;
    z-index: 9;
    height: 22%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.14), transparent);
    filter: blur(2px);
    animation: nbTermuxScan 5.4s linear infinite;
}

.nb-camp-widget .nb-termux-white-terminal .nb-video-signal {
    color: #1d4ed8;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(37, 99, 235, 0.18);
}

@keyframes nbTermuxTerminalScroll {
    0%, 5% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes nbTermuxSweep {
    0%, 18% {
        left: -44%;
        opacity: 0;
    }
    24% {
        opacity: 0.76;
    }
    34% {
        left: 112%;
        opacity: 0;
    }
    100% {
        left: 112%;
        opacity: 0;
    }
}

@keyframes nbTermuxGridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 68px 34px, 34px 68px;
    }
}

@keyframes nbTermuxHudBlink {
    0%, 100% {
        opacity: 0.72;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-2px);
    }
}

@keyframes nbTermuxScan {
    0% {
        top: -24%;
        opacity: 0;
    }
    16% {
        opacity: 0.78;
    }
    82% {
        opacity: 0.26;
    }
    100% {
        top: 112%;
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nb-camp-widget .nb-termux-white-terminal::after,
    .nb-camp-widget .nb-termux-grid,
    .nb-camp-widget .nb-termux-hud span,
    .nb-camp-widget .nb-termux-stream,
    .nb-camp-widget .nb-termux-scan {
        animation: none;
    }
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-termux-stream-frame {
        flex-basis: auto;
        width: 100%;
    }

    .nb-camp-widget .nb-lg-node-slide .nb-termux-white-terminal {
        width: min(100%, 500px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-lg-node-slide .nb-termux-white-terminal {
        width: min(100%, 340px);
        aspect-ratio: 9 / 13;
    }

    .nb-camp-widget .nb-termux-hud {
        top: 44px;
        right: 10px;
        gap: 4px;
    }

    .nb-camp-widget .nb-termux-hud span {
        min-height: 18px;
        padding: 0 6px;
        font-size: 8px;
    }

    .nb-camp-widget .nb-termux-terminal-body {
        padding: 82px 13px 44px;
    }

    .nb-camp-widget .nb-termux-stream p {
        font-size: 10.5px;
    }
}

/* 2026-05-23 Galaxy Wide3 violet node matched to LG-T540 Termux card */
.nb-camp-widget .nb-galaxy-slide .nb-single-phone-frame {
    flex: 0 0 clamp(420px, 38vw, 520px);
    justify-content: center;
    align-items: center;
}

.nb-camp-widget .nb-galaxy-slide {
    --nb-android-ink: #221635;
    --nb-android-teal: #7c3aed;
    --nb-android-cyan: #a855f7;
    --nb-android-warm: #be185d;
    --nb-galaxy-screen-zoom: 100%;
}

.nb-camp-widget .nb-galaxy-slide .nb-android-frame {
    border-color: rgba(139, 92, 246, 0.22);
    background:
        linear-gradient(135deg, rgba(250, 245, 255, 0.84), rgba(245, 243, 255, 0.92) 48%, rgba(253, 242, 248, 0.68)),
        linear-gradient(90deg, rgba(124, 58, 237, 0.08), rgba(168, 85, 247, 0.09));
}

.nb-camp-widget .nb-galaxy-slide .nb-android-frame::before {
    background:
        linear-gradient(90deg, rgba(124, 58, 237, 0.07) 1px, transparent 1px) 0 0 / 46px 46px,
        linear-gradient(180deg, rgba(168, 85, 247, 0.06) 1px, transparent 1px) 0 0 / 46px 46px,
        radial-gradient(circle at 84% 16%, rgba(192, 132, 252, 0.2), transparent 32%);
}

.nb-camp-widget .nb-galaxy-slide .nb-android-badge .dot {
    background: #a855f7;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.13), 0 0 18px rgba(168, 85, 247, 0.44);
}

.nb-camp-widget .nb-galaxy-slide .nb-android-eyebrow {
    background: rgba(243, 232, 255, 0.86);
    color: #6d28d9;
}

.nb-camp-widget .nb-galaxy-slide .nb-android-actions .nb-story-link {
    background: linear-gradient(135deg, #7c3aed, #be185d);
}

.nb-camp-widget .nb-galaxy-slide .nb-lead-text {
    max-width: 62ch;
    font-size: clamp(14px, 1.06vw, 16px);
    line-height: 1.74;
}

.nb-camp-widget .nb-galaxy-text-stack {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.nb-camp-widget .nb-galaxy-text-stack div {
    display: grid;
    grid-template-columns: minmax(88px, 0.34fr) 1fr;
    gap: 10px;
    align-items: center;
    min-height: 38px;
    padding: 9px 11px;
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(250, 245, 255, 0.74)),
        rgba(245, 243, 255, 0.68);
}

.nb-camp-widget .nb-galaxy-text-stack span {
    font-size: 10px;
    font-weight: 900;
    line-height: 1.15;
    color: #7c3aed;
}

.nb-camp-widget .nb-galaxy-text-stack strong {
    font-size: clamp(12px, 0.94vw, 14px);
    line-height: 1.42;
    color: #2e1a47;
}

.nb-camp-widget .nb-galaxy-command-rotator {
    display: grid;
    gap: 9px;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid rgba(124, 58, 237, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(245, 243, 255, 0.8)),
        rgba(250, 245, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 28px rgba(91, 33, 182, 0.08);
}

.nb-camp-widget .nb-galaxy-command-head,
.nb-camp-widget .nb-galaxy-command-example {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.nb-camp-widget .nb-galaxy-command-head span,
.nb-camp-widget .nb-galaxy-command-head strong,
.nb-camp-widget .nb-galaxy-command-example span {
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    color: #7c3aed;
}

.nb-camp-widget .nb-galaxy-command-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
    flex-wrap: wrap;
}

.nb-camp-widget .nb-galaxy-command-main code {
    max-width: 100%;
    padding: 6px 9px;
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 7px;
    background: rgba(46, 26, 71, 0.94);
    color: #f5f3ff;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 900;
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
}

.nb-camp-widget .nb-galaxy-command-main strong {
    color: #2e1a47;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 900;
    line-height: 1.24;
}

.nb-camp-widget .nb-galaxy-command-rotator p {
    margin: 0;
    color: #4c1d95;
    font-size: clamp(12px, 0.94vw, 14px);
    font-weight: 700;
    line-height: 1.46;
}

.nb-camp-widget .nb-galaxy-command-example {
    min-width: 0;
    padding-top: 7px;
    border-top: 1px solid rgba(167, 139, 250, 0.22);
}

.nb-camp-widget .nb-galaxy-command-example code {
    min-width: 0;
    color: #312e81;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: clamp(11px, 0.84vw, 13px);
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nb-camp-widget .nb-galaxy-command-progress {
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(196, 181, 253, 0.42);
}

.nb-camp-widget .nb-galaxy-command-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7c3aed, #be185d);
    transform-origin: left center;
    animation: nbGalaxyCommandProgress 3.6s linear infinite;
}

.nb-camp-widget .nb-galaxy-command-rotator.is-command-flipping .nb-galaxy-command-main,
.nb-camp-widget .nb-galaxy-command-rotator.is-command-flipping p,
.nb-camp-widget .nb-galaxy-command-rotator.is-command-flipping .nb-galaxy-command-example {
    animation: nbGalaxyCommandFlip 360ms ease both;
}

@keyframes nbGalaxyCommandProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes nbGalaxyCommandFlip {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nb-camp-widget .nb-galaxy-slide .nb-single-phone-card--galaxy {
    width: 100%;
    max-width: 500px !important;
    aspect-ratio: 5 / 4;
    border: 1px solid rgba(196, 181, 253, 0.42);
    background:
        linear-gradient(115deg, rgba(250, 245, 255, 0.13), transparent 34% 72%, rgba(244, 114, 182, 0.1)),
        linear-gradient(90deg, rgba(49, 26, 76, 0.96), rgba(25, 14, 48, 0.98) 24% 76%, rgba(61, 36, 94, 0.95)),
        #1b1230 !important;
    box-shadow:
        0 18px 44px rgba(42, 24, 72, 0.3),
        0 0 30px rgba(168, 85, 247, 0.16);
}

.nb-camp-widget .nb-galaxy-slide .nb-webcam-live-screen .nb-android-screen-image {
    top: 0 !important;
    left: 0 !important;
    width: auto !important;
    height: var(--nb-galaxy-screen-zoom) !important;
    max-width: none;
    object-fit: contain !important;
    object-position: left top !important;
    transform: translateX(0) !important;
    transform-origin: left top !important;
    will-change: transform;
    background: #1b1230 !important;
    filter: brightness(1.08) contrast(1.16) saturate(1.08) hue-rotate(4deg) !important;
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-violet-screen {
    background:
        linear-gradient(120deg, rgba(91, 33, 182, 0.28), transparent 38% 72%, rgba(219, 39, 119, 0.18)),
        #1b1230 !important;
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-violet-screen .nb-android-screen-image {
    filter: brightness(1.08) contrast(1.16) saturate(1.08) hue-rotate(4deg) !important;
}

.nb-camp-widget .nb-galaxy-slide .nb-webcam-live-screen .nb-android-glass {
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.1), transparent 30% 72%, rgba(216, 180, 254, 0.09)),
        linear-gradient(90deg, rgba(124, 58, 237, 0.08), transparent 24% 76%, rgba(236, 72, 153, 0.06));
    mix-blend-mode: screen;
}

.nb-camp-widget .nb-galaxy-slide .nb-webcam-live-screen .nb-android-topbar {
    color: #f5f3ff;
    background: rgba(35, 21, 62, 0.84);
    border-color: rgba(216, 180, 254, 0.24);
    box-shadow: 0 8px 20px rgba(42, 24, 72, 0.24);
}

.nb-camp-widget .nb-galaxy-slide .nb-webcam-live-screen .nb-android-caption {
    color: #ede9fe;
    background: rgba(49, 26, 76, 0.78);
}

.nb-camp-widget .nb-galaxy-slide .nb-webcam-live-screen .nb-video-signal {
    color: #f5f3ff;
    background: rgba(35, 21, 62, 0.78);
    border-color: rgba(216, 180, 254, 0.22);
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 50px;
    z-index: 12;
    margin: 0;
    gap: 7px;
    padding: 11px;
    border-color: rgba(216, 180, 254, 0.34);
    background:
        linear-gradient(135deg, rgba(18, 10, 36, 0.94), rgba(49, 26, 76, 0.86)),
        rgba(15, 9, 30, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 14px 28px rgba(10, 6, 22, 0.38),
        0 0 0 1px rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-head span,
.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-head strong,
.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-example span {
    color: #d8b4fe;
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-main {
    align-items: center;
    gap: 8px;
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-main code {
    padding: 5px 8px;
    border-color: rgba(192, 132, 252, 0.34);
    background: #05030a;
    color: #c4b5fd;
    font-size: clamp(15px, 1.25vw, 21px);
    box-shadow: inset 0 0 0 1px rgba(216, 180, 254, 0.08);
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-main strong {
    color: #f5f3ff;
    font-size: clamp(12px, 0.9vw, 14px);
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen p {
    color: #ddd6fe;
    font-size: clamp(11px, 0.82vw, 13px);
    line-height: 1.38;
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-example {
    border-top-color: rgba(216, 180, 254, 0.2);
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-example code {
    color: #f5d0fe;
    white-space: normal;
    overflow-wrap: anywhere;
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-progress {
    background: rgba(216, 180, 254, 0.22);
}

.nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-progress span {
    background: linear-gradient(90deg, #a78bfa, #f472b6);
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-galaxy-slide .nb-single-phone-frame {
        flex-basis: auto;
        width: 100%;
    }

    .nb-camp-widget .nb-galaxy-slide .nb-single-phone-card--galaxy {
        width: min(100%, 480px);
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-galaxy-slide .nb-galaxy-text-stack div {
        grid-template-columns: 1fr;
        gap: 4px;
        align-items: start;
    }

    .nb-camp-widget .nb-galaxy-command-head,
    .nb-camp-widget .nb-galaxy-command-example {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .nb-camp-widget .nb-galaxy-command-example code {
        text-align: left;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .nb-camp-widget .nb-galaxy-slide .nb-single-phone-card--galaxy {
        width: min(100%, 340px);
        aspect-ratio: 9 / 13;
    }

    .nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen {
        left: 12px;
        right: 12px;
        bottom: 46px;
        padding: 9px;
        gap: 6px;
    }

    .nb-camp-widget .nb-galaxy-slide .nb-galaxy-command-rotator--screen .nb-galaxy-command-main code {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nb-camp-widget .nb-galaxy-command-progress span,
    .nb-camp-widget .nb-galaxy-command-rotator.is-command-flipping .nb-galaxy-command-main,
    .nb-camp-widget .nb-galaxy-command-rotator.is-command-flipping p,
    .nb-camp-widget .nb-galaxy-command-rotator.is-command-flipping .nb-galaxy-command-example {
        animation: none !important;
    }
}

/* 2026-05-24 NETCITY menu capture matrix scene */
.nb-camp-widget .nb-menu-capture-badge .dot {
    background: #22d3ee;
    box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.12), 0 0 18px rgba(34, 211, 238, 0.54);
}

.nb-camp-widget .nb-menu-capture-origin {
    display: none;
}

.nb-camp-widget .nb-menu-capture-title .nb-thin,
.nb-camp-widget .nb-menu-capture-title span {
    color: #0f766e;
}

.nb-camp-widget .nb-menu-capture-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nb-camp-widget .nb-menu-capture-meta-grid .nb-value-item {
    border-color: rgba(14, 165, 233, 0.2);
    background:
        linear-gradient(135deg, rgba(240, 253, 250, 0.86), rgba(239, 246, 255, 0.74)),
        rgba(255, 255, 255, 0.72);
}

.nb-camp-widget .nb-menu-capture-slide {
    align-items: stretch;
    gap: clamp(18px, 2.4vw, 30px);
}

.nb-camp-widget .nb-menu-capture-slide .nb-text-frame {
    flex: 1 1 0;
}

.nb-camp-widget .nb-menu-capture-image-frame {
    flex: 0 0 clamp(420px, 38vw, 600px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 28px;
}

.nb-camp-widget .nb-menu-capture-screen {
    position: relative;
    width: min(100%, 620px);
    height: clamp(390px, 32vw, 500px);
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(34, 211, 238, 0.28);
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.2) calc(100% - 58px), rgba(2, 6, 23, 0.72) calc(100% - 58px)),
        linear-gradient(135deg, rgba(224, 242, 254, 0.48), rgba(255, 255, 255, 0.18)),
        rgba(240, 253, 250, 0.16);
    box-shadow:
        0 28px 58px rgba(15, 23, 42, 0.18),
        0 0 34px rgba(34, 211, 238, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 0 0 1px rgba(255, 255, 255, 0.26),
        inset 0 -58px 0 rgba(2, 6, 23, 0.52);
    isolation: isolate;
    perspective: 980px;
}

.nb-camp-widget .nb-menu-capture-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(34, 211, 238, 0.18) 1px, transparent 1px),
        linear-gradient(0deg, rgba(15, 23, 42, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 18% 22%, rgba(34, 211, 238, 0.18), transparent 26%),
        radial-gradient(circle at 88% 76%, rgba(20, 184, 166, 0.14), transparent 30%);
    background-size: 42px 100%, 100% 38px, 100% 100%, 100% 100%;
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

.nb-camp-widget .nb-menu-capture-screen::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 57px;
    z-index: 7;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.8), rgba(20, 184, 166, 0.48), transparent);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.38);
    pointer-events: none;
}

.nb-camp-widget .nb-menu-capture-topbar,
.nb-camp-widget .nb-menu-capture-radar,
.nb-camp-widget .nb-menu-capture-hud,
.nb-camp-widget .nb-menu-capture-strip,
.nb-camp-widget .nb-menu-capture-scan,
.nb-camp-widget .nb-menu-capture-status {
    display: none;
}

.nb-camp-widget .nb-menu-capture-topbar {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 13px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(125, 211, 252, 0.24);
    border-radius: 8px;
    background: rgba(2, 6, 23, 0.62);
    color: #e0f2fe;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 900;
}

.nb-camp-widget .nb-menu-capture-backdrop {
    position: absolute;
    inset: 0 0 58px 0;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    opacity: 0.84;
    transform: none;
    transform-origin: center;
    transform-style: preserve-3d;
    mask-image: none;
    pointer-events: none;
}

.nb-camp-widget .nb-menu-capture-backdrop-track {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: calc(var(--capture-total, 15) * 100%);
    height: 100%;
    gap: 0;
    animation: nbMenuCaptureBackdropFlow 52s linear infinite;
    will-change: transform;
}

.nb-camp-widget .nb-menu-capture-backdrop-track:nth-child(2) {
    top: auto;
    bottom: 0;
    height: 48%;
    display: flex;
    opacity: 0.22;
    mix-blend-mode: multiply;
    animation-name: nbMenuCaptureBackdropFlowReverse;
    animation-duration: 38s;
}

.nb-camp-widget .nb-menu-capture-backdrop span {
    display: block;
    flex: 0 0 calc(100% / var(--capture-total, 15));
    height: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.56);
    opacity: 1;
    box-shadow: none;
}

.nb-camp-widget .nb-menu-capture-backdrop img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(1) contrast(0.94) brightness(0.96);
}

.nb-camp-widget .nb-menu-capture-backdrop-track:nth-child(2) img {
    filter: grayscale(1) contrast(1.1) brightness(1.04) blur(0.4px);
}

.nb-camp-widget .nb-menu-capture-radar {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background:
        conic-gradient(from 0deg, transparent 0 64%, rgba(34, 211, 238, 0.24) 72%, transparent 82% 100%),
        repeating-radial-gradient(circle, rgba(125, 211, 252, 0.16) 0 1px, transparent 1px 38px);
    display: block;
    opacity: 0.36;
    mix-blend-mode: screen;
    animation: nbMenuCaptureRadar 5.8s linear infinite;
}

.nb-camp-widget .nb-menu-capture-stage {
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: inherit;
    perspective: 1050px;
    transform-style: preserve-3d;
    pointer-events: none;
    display: none;
}

.nb-camp-widget .nb-menu-capture-card {
    position: absolute;
    left: 8%;
    top: 50%;
    width: 84%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
    border: 0;
    border-radius: inherit;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    opacity: 0;
    transform: translate3d(0, -14%, -240px) scale(0.82) rotateX(15deg);
    transform-origin: center;
    box-shadow:
        0 34px 72px rgba(15, 23, 42, 0.32),
        0 8px 20px rgba(15, 23, 42, 0.16);
    animation: nbMenuCaptureCard 14.4s cubic-bezier(0.34, 0, 0.18, 1) infinite;
    animation-delay: var(--capture-delay, 0s);
    backface-visibility: hidden;
    will-change: transform, opacity, filter;
    pointer-events: auto;
}

.nb-camp-widget .nb-menu-capture-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: none;
}

.nb-camp-widget .nb-menu-capture-card::before {
    content: none;
}

.nb-camp-widget .nb-menu-capture-card strong,
.nb-camp-widget .nb-menu-capture-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.76);
    color: #e0f2fe;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.nb-camp-widget .nb-menu-capture-card strong {
    left: 14px;
    bottom: 13px;
    padding: 0 11px;
    max-width: calc(100% - 28px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nb-camp-widget .nb-menu-capture-chip {
    right: 14px;
    top: 13px;
    padding: 0 10px;
    color: #67e8f9;
}

.nb-camp-widget .nb-menu-capture-hud {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 55px;
    z-index: 8;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.nb-camp-widget .nb-menu-capture-hud span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.58);
    color: #bae6fd;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 900;
}

.nb-camp-widget .nb-menu-capture-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 7;
    overflow: hidden;
    display: block;
    height: 58px;
    padding: 0 12px;
    border-top: 1px solid rgba(125, 211, 252, 0.25);
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.74), rgba(15, 23, 42, 0.44), rgba(2, 6, 23, 0.72)),
        rgba(2, 6, 23, 0.58);
    color: rgba(224, 242, 254, 0.88);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 900;
    line-height: 58px;
    white-space: nowrap;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.nb-camp-widget .nb-menu-capture-strip div {
    display: inline-flex;
    gap: 24px;
    min-width: 200%;
    animation: nbMenuCaptureTicker 24s linear infinite;
}

.nb-camp-widget .nb-menu-capture-strip span::before {
    content: "◆";
    margin-right: 8px;
    color: #22d3ee;
}

.nb-camp-widget .nb-menu-capture-scan {
    position: absolute;
    left: -24%;
    top: 0;
    z-index: 9;
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), rgba(34, 211, 238, 0.28), transparent);
    transform: skewX(-14deg);
    mix-blend-mode: screen;
    pointer-events: none;
    display: block;
    animation: nbMenuCaptureScan 2.2s ease-in-out infinite;
}

.nb-camp-widget .nb-menu-capture-status {
    position: absolute;
    right: 16px;
    bottom: 100px;
    z-index: 8;
    color: #67e8f9;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(34, 211, 238, 0.5);
    pointer-events: none;
    display: block;
}

@keyframes nbMenuCaptureCard {
    0% {
        z-index: 1;
        opacity: 0;
        filter: blur(1.6px) saturate(0.96);
        transform: translate3d(0, -14%, -240px) scale(0.82) rotateX(15deg);
    }
    9% {
        z-index: 3;
        opacity: 0.48;
        filter: blur(0.8px) saturate(1);
        transform: translate3d(0, -29%, -130px) scale(0.88) rotateX(7deg);
    }
    18%,
    34% {
        z-index: 6;
        opacity: 1;
        filter: blur(0) saturate(1.04) contrast(1.01);
        transform: translate3d(0, -50%, 86px) scale(0.98) rotateX(0deg);
    }
    45% {
        z-index: 3;
        opacity: 0.46;
        filter: blur(0.9px) saturate(1);
        transform: translate3d(0, -70%, -150px) scale(0.88) rotateX(-9deg);
    }
    58%,
    100% {
        z-index: 1;
        opacity: 0;
        filter: blur(1.6px) saturate(0.96);
        transform: translate3d(0, -86%, -260px) scale(0.82) rotateX(-16deg);
    }
}

@keyframes nbMenuCaptureBackdropFlow {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(var(--capture-flow-end, -93.333%), 0, 0);
    }
}

@keyframes nbMenuCaptureBackdropFlowReverse {
    from {
        transform: translate3d(var(--capture-flow-end, -93.333%), 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes nbMenuCaptureRadar {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes nbMenuCaptureScan {
    0% { transform: translateX(0) skewX(-14deg); opacity: 0; }
    18% { opacity: 0.8; }
    100% { transform: translateX(520%) skewX(-14deg); opacity: 0; }
}

@keyframes nbMenuCaptureTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 992px) {
    .nb-camp-widget .nb-menu-capture-image-frame {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 10px;
    }

    .nb-camp-widget .nb-menu-capture-meta-grid {
        grid-template-columns: 1fr;
    }

    .nb-camp-widget .nb-menu-capture-screen {
        width: 100%;
        height: clamp(340px, 58vw, 460px);
    }
}

@media (max-width: 640px) {
    .nb-camp-widget .nb-menu-capture-screen {
        height: 330px;
    }

    .nb-camp-widget .nb-menu-capture-stage {
        inset: 0;
    }

    .nb-camp-widget .nb-menu-capture-card {
        left: 7%;
        width: 86%;
    }

    .nb-camp-widget .nb-menu-capture-topbar {
        left: 10px;
        right: 10px;
        font-size: 8px;
    }

    .nb-camp-widget .nb-menu-capture-hud {
        left: 10px;
        right: 10px;
        bottom: 62px;
        flex-wrap: wrap;
    }

    .nb-camp-widget .nb-menu-capture-hud span {
        min-height: 21px;
        padding: 0 7px;
        font-size: 8px;
    }

    .nb-camp-widget .nb-menu-capture-status {
        display: none;
    }

    .nb-camp-widget .nb-menu-capture-strip {
        height: 48px;
        font-size: 8px;
        line-height: 48px;
    }

    .nb-camp-widget .nb-menu-capture-backdrop {
        inset: 0 0 48px 0;
    }

    .nb-camp-widget .nb-menu-capture-screen {
        background:
            linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.2) calc(100% - 48px), rgba(2, 6, 23, 0.72) calc(100% - 48px)),
            linear-gradient(135deg, rgba(224, 242, 254, 0.48), rgba(255, 255, 255, 0.18)),
            rgba(240, 253, 250, 0.16);
        box-shadow:
            0 28px 58px rgba(15, 23, 42, 0.18),
            0 0 34px rgba(34, 211, 238, 0.11),
            inset 0 1px 0 rgba(255, 255, 255, 0.7),
            inset 0 0 0 1px rgba(255, 255, 255, 0.26),
            inset 0 -48px 0 rgba(2, 6, 23, 0.52);
    }

    .nb-camp-widget .nb-menu-capture-screen::after {
        bottom: 47px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nb-camp-widget .nb-menu-capture-radar,
    .nb-camp-widget .nb-menu-capture-backdrop-track,
    .nb-camp-widget .nb-menu-capture-card,
    .nb-camp-widget .nb-menu-capture-strip div,
    .nb-camp-widget .nb-menu-capture-scan {
        animation: none !important;
    }

    .nb-camp-widget .nb-menu-capture-card:first-child {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
