/* =====================================================
           01. 组件基础变量
        ===================================================== */
        .cw3-otome {
            --cw3-navy: #243858;
            --cw3-navy-2: #314d78;
            --cw3-blue: #7898c6;
            --cw3-blue-soft: #e7effa;
            --cw3-pink: #c985a4;
            --cw3-pink-soft: #f6e7ef;
            --cw3-gold: #bea36f;
            --cw3-gold-soft: #e7d8b9;
            --cw3-ink: #414a5e;
            --cw3-muted: #818998;
            --cw3-paper: #fffefd;
            --cw3-line: rgba(99, 126, 168, 0.18);
            --cw3-shadow: 0 22px 56px rgba(38, 55, 88, 0.13);
            --cw3-reading-height: clamp(1040px, 116dvh, 1440px);

            position: relative;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 18px;
            overflow: hidden;
            color: var(--cw3-ink);
            background:
                radial-gradient(circle at 3% 2%, rgba(239, 210, 226, 0.52), transparent 25%),
                radial-gradient(circle at 98% 1%, rgba(204, 222, 247, 0.62), transparent 28%),
                linear-gradient(145deg, #fbfdff 0%, #f7f4fa 53%, #f2f7fe 100%);
            border: 1px solid rgba(190, 163, 111, 0.34);
            border-radius: 18px;
            box-shadow:
                0 28px 80px rgba(37, 52, 83, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.94);
            isolation: isolate;
            font-family:
                "Noto Serif SC",
                "Noto Serif TC",
                "Source Han Serif SC",
                "Songti SC",
                "Microsoft JhengHei",
                "Microsoft YaHei",
                serif;
        }

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

        /*
         * 组件内部文字保护层：
         * 放在主题样式之后输出，并使用 cw3 命名空间，
         * 避免 WordPress 主题的标题、段落、按钮大小写与边距覆盖本组件。
         */
        .cw3-otome :where(h1, h2, h3, h4, p, small, span, b, i) {
            margin: 0;
            padding: 0;
            border: 0;
            font-family: inherit !important;
            font-style: normal;
            text-transform: none !important;
            text-decoration: none;
        }

        .cw3-otome :where(button, input) {
            margin: 0;
            font-family: inherit;
            text-transform: none;
            appearance: none;
            -webkit-appearance: none;
        }

        .cw3-otome [class^="cw3-"],
        .cw3-otome [class*=" cw3-"] {
            font-family:
                "Noto Serif SC",
                "Noto Serif TC",
                "Source Han Serif SC",
                "Songti SC",
                "Microsoft JhengHei",
                "Microsoft YaHei",
                serif !important;
        }

        .cw3-otome::before {
            position: absolute;
            inset: 8px;
            z-index: -1;
            content: "";
            pointer-events: none;
            border: 1px solid rgba(190, 163, 111, 0.13);
            border-radius: 12px;
        }

        .cw3-otome img,
        .cw3-otome video {
            max-width: 100%;
        }

        .cw3-otome button,
        .cw3-otome input {
            font: inherit;
        }

        /* =====================================================
           02. 通用卡片与双栏结构
        ===================================================== */
        .cw3-panel {
            position: relative;
            min-width: 0;
            overflow: hidden;
            border: 1px solid var(--cw3-line);
            border-radius: 14px;
            background:
                radial-gradient(circle at 100% 0, rgba(219, 231, 248, 0.48), transparent 32%),
                radial-gradient(circle at 0 100%, rgba(247, 223, 235, 0.38), transparent 34%),
                rgba(255, 255, 255, 0.82);
            box-shadow:
                var(--cw3-shadow),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .cw3-panel::before {
            position: absolute;
            top: 0;
            right: 18px;
            left: 18px;
            height: 1px;
            content: "";
            pointer-events: none;
            background: linear-gradient(90deg, transparent, rgba(190, 163, 111, 0.58), transparent);
        }

        .cw3-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
            gap: 18px;
            align-items: start;
            margin-top: 18px;
        }

        .cw3-left-stack,
        .cw3-media-stack {
            display: grid;
            gap: 18px;
            min-width: 0;
        }

        .cw3-scroll {
            overflow-x: hidden;
            overflow-y: auto;
            overscroll-behavior: contain;
            scrollbar-width: thin;
            scrollbar-color: rgba(111, 143, 190, 0.58) transparent;
            -webkit-overflow-scrolling: touch;
        }

        .cw3-scroll::-webkit-scrollbar {
            width: 8px;
        }

        .cw3-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .cw3-scroll::-webkit-scrollbar-thumb {
            border: 2px solid transparent;
            border-radius: 999px;
            background:
                linear-gradient(rgba(111, 143, 190, 0.68), rgba(201, 133, 164, 0.56))
                padding-box;
        }

        /* =====================================================
           03. 第1行：宽而矮 Banner

           BANNER 图片地址：
           以后需要替换时，只替换 HTML 中 .cw3-banner-image 的 src。
        ===================================================== */
        .cw3-banner {
            position: relative;
            width: 100%;
            height: clamp(155px, 18vw, 245px);
            overflow: hidden;
            border: 1px solid rgba(190, 163, 111, 0.42);
            border-radius: 13px;
            background: #243858;
            box-shadow: 0 18px 46px rgba(35, 51, 82, 0.2);
        }

        .cw3-banner::before,
        .cw3-banner::after {
            position: absolute;
            z-index: 2;
            content: "";
            pointer-events: none;
        }

        .cw3-banner::before {
            inset: 8px;
            border: 1px solid rgba(235, 215, 177, 0.36);
            border-radius: 8px;
        }

        .cw3-banner::after {
            inset: 0;
            background:
                linear-gradient(90deg, rgba(20, 35, 61, 0.68), rgba(20, 35, 61, 0.08) 54%, rgba(20, 35, 61, 0.24)),
                linear-gradient(180deg, rgba(10, 20, 40, 0.04), rgba(10, 20, 40, 0.48));
        }

        .cw3-banner-image {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 46%;
            transform: scale(1.015);
        }

        .cw3-banner-copy {
            position: absolute;
            top: 50%;
            left: clamp(28px, 5vw, 76px);
            z-index: 3;
            width: min(48%, 560px);
            transform: translateY(-50%);
            color: #fffaf1;
            text-shadow: 0 3px 18px rgba(10, 20, 40, 0.58);
        }

        .cw3-banner-kicker {
            margin-bottom: 7px;
            color: #ead7b4;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.32em;
        }

        .cw3-banner-copy h1 {
            margin: 0;
            font-size: clamp(27px, 4vw, 52px);
            font-weight: 500;
            line-height: 1.22;
            letter-spacing: 0.12em;
        }

        .cw3-banner-couple {
            margin: 8px 0 0;
            color: rgba(255, 247, 236, 0.88);
            font-size: clamp(11px, 1.25vw, 15px);
            font-weight: 600;
            letter-spacing: 0.18em;
        }

        .cw3-banner-couple b {
            margin: 0 8px;
            color: #e4c98f;
            font-weight: 400;
        }

        /* =====================================================
           04. 第2行左侧上方：轻量视觉小说
           保留封面、对白、进度、重启；不使用全屏 Portal。
        ===================================================== */
        .cw3-vn-card {
            padding: 14px;
        }

        .cw3-vn-stage {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            min-height: 320px;
            overflow: hidden;
            border-radius: 10px;
            background: #152137;
            box-shadow:
                0 17px 38px rgba(20, 31, 51, 0.3),
                inset 0 0 0 1px rgba(232, 210, 170, 0.2);
            color: #f9edd8;
            isolation: isolate;
        }

        .cw3-vn-bg,
        .cw3-vn-shade,
        .cw3-vn-light {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .cw3-vn-bg {
            z-index: 1;
            background-position: center 44%;
            background-repeat: no-repeat;
            background-size: cover;
            transform: scale(1.03);
            transition: background-position 0.7s ease, transform 5s ease, filter 0.5s ease;
        }

        .cw3-vn-shade {
            z-index: 2;
            background:
                linear-gradient(180deg, rgba(10, 18, 32, 0.06) 0%, rgba(10, 18, 32, 0.06) 43%, rgba(10, 18, 32, 0.76) 100%),
                radial-gradient(circle at 50% 38%, transparent 35%, rgba(7, 13, 25, 0.2) 100%);
        }

        .cw3-vn-light {
            z-index: 3;
            background:
                radial-gradient(circle at 48% 3%, rgba(240, 216, 172, 0.17), transparent 38%),
                linear-gradient(90deg, rgba(80, 111, 157, 0.12), transparent 34%, rgba(201, 133, 164, 0.08));
        }

        .cw3-vn-topbar {
            position: absolute;
            top: 16px;
            right: 18px;
            left: 18px;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }

        .cw3-vn-title {
            overflow: hidden;
            color: rgba(246, 228, 197, 0.86);
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.19em;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
        }

        .cw3-vn-restart {
            display: grid;
            place-items: center;
            flex: 0 0 31px;
            width: 31px;
            height: 31px;
            padding: 0;
            border: 1px solid rgba(225, 199, 154, 0.38);
            border-radius: 50%;
            color: #efdcb8;
            cursor: pointer;
            background: rgba(18, 28, 47, 0.34);
            box-shadow: 0 7px 18px rgba(5, 10, 20, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: 0.22s ease;
        }

        .cw3-vn-restart:hover {
            transform: rotate(-28deg) translateY(-1px);
            border-color: rgba(238, 216, 177, 0.72);
            background: rgba(36, 54, 86, 0.58);
        }

        .cw3-vn-progress {
            position: absolute;
            top: 21px;
            left: 50%;
            z-index: 9;
            display: flex;
            align-items: center;
            gap: 8px;
            transform: translateX(-50%);
            color: rgba(240, 220, 185, 0.72);
            font-family: Arial, sans-serif;
            font-size: 9px;
        }

        .cw3-vn-progress-track {
            position: relative;
            width: clamp(72px, 11vw, 135px);
            height: 1px;
            overflow: hidden;
            background: rgba(235, 217, 185, 0.24);
        }

        .cw3-vn-progress-fill {
            position: absolute;
            inset: 0 auto 0 0;
            width: 0;
            background: linear-gradient(90deg, #a9854f, #f0ddb1);
            box-shadow: 0 0 8px rgba(222, 190, 137, 0.4);
            transition: width 0.35s ease;
        }

        .cw3-vn-launch {
            position: absolute;
            inset: 0;
            z-index: 14;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 26px;
            background: linear-gradient(180deg, transparent 36%, rgba(8, 15, 28, 0.68) 100%);
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .cw3-vn-stage.is-started .cw3-vn-launch {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .cw3-vn-launch-inner {
            width: min(86%, 520px);
            padding: 20px 28px 22px;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(24, 35, 57, 0.82), rgba(15, 23, 39, 0.3) 70%, transparent);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .cw3-vn-launch-inner small {
            display: block;
            margin-bottom: 6px;
            color: rgba(225, 201, 160, 0.72);
            font-size: 8px;
            letter-spacing: 0.28em;
        }

        .cw3-vn-launch-inner h2 {
            margin: 0;
            color: #fff4df;
            font-size: clamp(21px, 3vw, 38px);
            font-weight: 400;
            letter-spacing: 0.14em;
            text-shadow: 0 3px 15px rgba(0, 0, 0, 0.58);
        }

        .cw3-vn-start {
            min-width: 150px;
            margin-top: 16px;
            padding: 10px 24px;
            border: 1px solid rgba(225, 196, 146, 0.5);
            border-radius: 2px;
            color: #f5e5c9;
            cursor: pointer;
            background: linear-gradient(180deg, rgba(58, 75, 104, 0.74), rgba(22, 33, 54, 0.78));
            box-shadow:
                0 11px 26px rgba(3, 8, 17, 0.3),
                inset 0 1px 0 rgba(255, 247, 225, 0.08);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.14em;
            transition: 0.22s ease;
        }

        .cw3-vn-start:hover {
            transform: translateY(-2px);
            border-color: rgba(240, 218, 180, 0.8);
            background: linear-gradient(180deg, rgba(76, 98, 136, 0.84), rgba(30, 44, 70, 0.86));
        }

        .cw3-vn-dialogue-wrap {
            position: absolute;
            right: 7%;
            bottom: 5.5%;
            left: 7%;
            z-index: 12;
            opacity: 0;
            transform: translateY(12px);
            pointer-events: none;
            transition: 0.35s ease;
        }

        .cw3-vn-stage.is-started .cw3-vn-dialogue-wrap {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .cw3-vn-name {
            position: relative;
            z-index: 3;
            display: inline-block;
            min-width: 108px;
            margin: 0 0 5px 38px;
            padding: 7px 27px 8px;
            color: #f3deb9;
            text-align: center;
            border-top: 1px solid rgba(224, 192, 137, 0.62);
            border-bottom: 1px solid rgba(224, 192, 137, 0.32);
            background: linear-gradient(90deg, transparent, rgba(22, 32, 51, 0.86) 24%, rgba(27, 39, 62, 0.9) 50%, rgba(22, 32, 51, 0.86) 76%, transparent);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-shadow: 0 2px 7px rgba(0, 0, 0, 0.58);
        }

        .cw3-vn-dialogue {
            position: relative;
            min-height: 102px;
            padding: 25px 54px 24px;
            cursor: pointer;
            outline: none;
            background:
                linear-gradient(90deg, transparent 0%, rgba(17, 27, 45, 0.22) 5%, rgba(20, 31, 50, 0.8) 19%, rgba(23, 35, 57, 0.9) 50%, rgba(20, 31, 50, 0.8) 81%, rgba(17, 27, 45, 0.22) 95%, transparent 100%);
            backdrop-filter: blur(11px);
            -webkit-backdrop-filter: blur(11px);
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
        }

        .cw3-vn-dialogue::before,
        .cw3-vn-dialogue::after {
            position: absolute;
            right: 12%;
            left: 12%;
            height: 1px;
            content: "";
            background: linear-gradient(90deg, transparent, rgba(231, 207, 166, 0.56), transparent);
        }

        .cw3-vn-dialogue::before {
            top: 0;
        }

        .cw3-vn-dialogue::after {
            bottom: 0;
            opacity: 0.45;
        }

        .cw3-vn-text {
            min-height: 2.7em;
            color: rgba(249, 239, 221, 0.96);
            font-size: clamp(14px, 1.65vw, 21px);
            line-height: 1.75;
            text-align: center;
            letter-spacing: 0.04em;
            text-shadow: 0 2px 9px rgba(0, 0, 0, 0.7);
        }

        .cw3-vn-next {
            position: absolute;
            right: 12%;
            bottom: 15px;
            color: #e9cc99;
            font-size: 12px;
            animation: cw3Next 1.25s ease-in-out infinite;
        }

        @keyframes cw3Next {
            0%, 100% { opacity: 0.28; transform: translateX(0); }
            50% { opacity: 0.95; transform: translateX(4px); }
        }

        .cw3-vn-hidden-copy {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
            clip: rect(0 0 0 0) !important;
            clip-path: inset(50%) !important;
            white-space: nowrap !important;
            opacity: 0.001 !important;
            pointer-events: none !important;
        }

        /* =====================================================
           05. 第2行左侧下方：小说正文滚动栏
        ===================================================== */
        .cw3-story-card {
            padding: 0;
        }

        .cw3-simple-heading {
            position: relative;
            padding: 27px 34px 22px;
            border-bottom: 1px solid rgba(190, 163, 111, 0.18);
            background:
                linear-gradient(90deg, rgba(231, 239, 251, 0.7), rgba(255, 255, 255, 0.42), rgba(247, 229, 239, 0.62));
        }

        .cw3-simple-heading::after {
            position: absolute;
            right: 34px;
            bottom: -1px;
            left: 34px;
            height: 1px;
            content: "";
            background: linear-gradient(90deg, transparent, rgba(190, 163, 111, 0.5), transparent);
        }

        .cw3-simple-heading h2 {
            margin: 0;
            color: var(--cw3-navy);
            font-size: clamp(23px, 3vw, 34px);
            font-weight: 600;
            line-height: 1.35;
            letter-spacing: 0.08em;
        }

        .cw3-simple-heading p {
            margin: 8px 0 0;
            color: var(--cw3-muted);
            font-size: 11px;
            letter-spacing: 0.15em;
        }

        .cw3-story-scroll {
            height: var(--cw3-reading-height);
            padding: 38px clamp(26px, 5vw, 66px) 58px;
        }

        .cw3-story-inner {
            width: min(100%, 760px);
            margin: 0 auto;
        }

        .cw3-novel-text {
            margin: 0 0 21px;
            color: #485064;
            font-size: 15.5px;
            line-height: 2.08;
            text-align: justify;
            text-indent: 2em;
            letter-spacing: 0.025em;
        }

        .cw3-novel-text.is-opening {
            text-indent: 0;
        }

        .cw3-novel-text.is-opening::first-letter {
            float: left;
            margin: 6px 8px 0 0;
            color: var(--cw3-navy);
            font-family: Georgia, serif;
            font-size: 44px;
            line-height: 0.82;
        }

        .cw3-speech {
            display: grid;
            grid-template-columns: 57px minmax(0, 1fr);
            gap: 15px;
            align-items: start;
            margin: 29px 0 33px;
        }

        .cw3-speaker {
            width: 57px;
            text-align: center;
        }

        .cw3-avatar {
            display: block;
            width: 50px;
            height: 50px;
            margin: 0 auto 7px;
            padding: 3px;
            object-fit: cover;
            border: 1px solid rgba(190, 163, 111, 0.55);
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 8px 20px rgba(38, 55, 88, 0.15);
        }

        .cw3-speaker-name {
            overflow: hidden;
            color: var(--cw3-navy);
            font-size: 10.5px;
            font-weight: 700;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .cw3-speech.is-player .cw3-speaker-name {
            color: #9e5d7c;
        }

        .cw3-speech-copy {
            min-width: 0;
            padding: 1px 0 1px 17px;
            border-left: 2px solid rgba(111, 143, 190, 0.5);
        }

        .cw3-speech.is-player .cw3-speech-copy {
            border-left-color: rgba(201, 133, 164, 0.55);
        }

        .cw3-speech-copy p {
            margin: 0 0 9px;
            color: #35415b;
            font-size: 15.5px;
            font-weight: 600;
            line-height: 1.92;
            letter-spacing: 0.035em;
        }

        .cw3-speech.is-player .cw3-speech-copy p {
            color: #765468;
        }

        .cw3-speech-copy p:last-child {
            margin-bottom: 0;
        }

        .cw3-speech.is-important {
            padding: 21px 0;
            border-top: 1px solid rgba(190, 163, 111, 0.25);
            border-bottom: 1px solid rgba(190, 163, 111, 0.25);
        }

        .cw3-important-line {
            color: var(--cw3-navy) !important;
            font-size: 18px !important;
            letter-spacing: 0.06em !important;
        }

        .cw3-story-ending {
            margin-top: 50px;
            color: var(--cw3-gold);
            text-align: center;
        }

        .cw3-story-ending div {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 190px;
            margin: 0 auto 10px;
        }

        .cw3-story-ending span {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(190, 163, 111, 0.65));
        }

        .cw3-story-ending span:last-child {
            background: linear-gradient(90deg, rgba(190, 163, 111, 0.65), transparent);
        }

        .cw3-story-ending i {
            font-style: normal;
        }

        .cw3-story-ending p {
            margin: 0;
            color: #959ba8;
            font-size: 10px;
            letter-spacing: 0.28em;
        }

        /* =====================================================
           06. 第2行右侧：简介＋登场人物滚动栏
        ===================================================== */
        .cw3-info-card {
            height: var(--cw3-reading-height);
            padding: 0;
        }

        .cw3-info-scroll {
            height: 100%;
            padding: 29px 27px 46px;
        }

        .cw3-info-title {
            padding-bottom: 20px;
            text-align: center;
            border-bottom: 1px solid rgba(190, 163, 111, 0.18);
        }

        .cw3-info-title h2 {
            margin: 0;
            color: var(--cw3-navy);
            font-size: 26px;
            font-weight: 600;
            letter-spacing: 0.09em;
        }

        .cw3-info-title p {
            margin: 8px 0 0;
            color: #95637b;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.13em;
        }

        .cw3-info-title b {
            margin: 0 6px;
            color: var(--cw3-gold);
            font-weight: 400;
        }

        .cw3-info-section {
            margin-top: 30px;
        }

        .cw3-info-section + .cw3-info-section {
            margin-top: 38px;
        }

        .cw3-section-label {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .cw3-section-label span {
            display: grid;
            place-items: center;
            flex: 0 0 35px;
            width: 35px;
            height: 35px;
            border: 1px solid rgba(190, 163, 111, 0.44);
            border-radius: 50%;
            color: var(--cw3-gold);
            background: rgba(255, 255, 255, 0.66);
            font-family: Georgia, serif;
            font-size: 10px;
        }

        .cw3-section-label h3 {
            margin: 0;
            color: var(--cw3-navy);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .cw3-synopsis {
            padding: 23px 24px;
            border: 1px solid rgba(111, 143, 190, 0.17);
            border-radius: 11px;
            background:
                radial-gradient(circle at 100% 0, rgba(217, 230, 248, 0.6), transparent 35%),
                radial-gradient(circle at 0 100%, rgba(246, 220, 234, 0.5), transparent 36%),
                rgba(255, 255, 255, 0.7);
            box-shadow: 0 13px 32px rgba(38, 55, 88, 0.08);
        }

        .cw3-synopsis p {
            margin: 0 0 14px;
            color: #4b5367;
            font-size: 13.5px;
            line-height: 1.95;
            text-align: justify;
            text-indent: 2em;
        }

        .cw3-synopsis p:last-child {
            margin-bottom: 0;
        }

        .cw3-profile {
            position: relative;
            padding: 24px 22px;
            overflow: hidden;
            border: 1px solid rgba(111, 143, 190, 0.18);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.74);
            box-shadow: 0 13px 32px rgba(38, 55, 88, 0.09);
        }

        .cw3-profile + .cw3-profile {
            margin-top: 16px;
        }

        .cw3-profile::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 3px;
            content: "";
            background: linear-gradient(180deg, var(--cw3-blue), var(--cw3-gold));
        }

        .cw3-profile.is-player::before {
            background: linear-gradient(180deg, var(--cw3-pink), var(--cw3-gold));
        }

        .cw3-profile-head {
            display: grid;
            grid-template-columns: 74px minmax(0, 1fr);
            gap: 15px;
            align-items: center;
        }

        .cw3-profile-avatar {
            display: block;
            width: 68px;
            height: 68px;
            padding: 3px;
            object-fit: cover;
            border: 1px solid rgba(190, 163, 111, 0.56);
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 10px 24px rgba(38, 55, 88, 0.16);
        }

        .cw3-profile-name small {
            display: block;
            margin-bottom: 4px;
            color: var(--cw3-blue);
            font-family: Georgia, serif;
            font-size: 8px;
            font-weight: 600;
            letter-spacing: 0.18em;
        }

        .cw3-profile.is-player .cw3-profile-name small {
            color: #b36d8d;
        }

        .cw3-profile-name h4 {
            margin: 0;
            color: var(--cw3-navy);
            font-size: 23px;
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .cw3-profile.is-player .cw3-profile-name h4 {
            color: #92536f;
        }

        .cw3-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin: 16px 0 13px;
        }

        .cw3-tags span {
            padding: 4px 8px;
            border: 1px solid rgba(111, 143, 190, 0.18);
            border-radius: 999px;
            color: #687690;
            background: rgba(231, 239, 250, 0.72);
            font-size: 9.5px;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .cw3-profile.is-player .cw3-tags span {
            border-color: rgba(201, 133, 164, 0.2);
            color: #8d6277;
            background: rgba(247, 229, 239, 0.76);
        }

        .cw3-profile > p {
            margin: 0;
            color: #4d5568;
            font-size: 12.8px;
            line-height: 1.92;
            text-align: justify;
        }

        /* =====================================================
           07. 第3行左侧：视频＋说明＋音乐
        ===================================================== */
        .cw3-media-card {
            padding: 21px;
        }

        .cw3-card-heading {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 16px;
        }

        .cw3-card-heading::before {
            width: 35px;
            height: 1px;
            content: "";
            background: linear-gradient(90deg, transparent, rgba(190, 163, 111, 0.72));
        }

        .cw3-card-heading h3 {
            margin: 0;
            color: var(--cw3-navy);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .cw3-video-frame {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(190, 163, 111, 0.32);
            border-radius: 10px;
            background: #17233a;
            box-shadow: 0 16px 38px rgba(28, 43, 70, 0.2);
        }

        .cw3-video-frame video {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            background: #17233a;
        }

        .cw3-note-card {
            position: relative;
            padding: 25px 29px;
            overflow: hidden;
            border-left: 3px solid rgba(190, 163, 111, 0.66);
        }

        .cw3-note-card::after {
            position: absolute;
            right: -42px;
            bottom: -58px;
            width: 145px;
            height: 145px;
            content: "";
            border: 1px solid rgba(190, 163, 111, 0.18);
            border-radius: 50%;
            box-shadow:
                0 0 0 12px rgba(190, 163, 111, 0.04),
                0 0 0 25px rgba(190, 163, 111, 0.02);
        }

        .cw3-note-card small {
            display: block;
            margin-bottom: 7px;
            color: var(--cw3-gold);
            font-family: Georgia, serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.24em;
        }

        .cw3-note-card h3 {
            margin: 0 0 10px;
            color: var(--cw3-navy);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.08em;
        }

        .cw3-note-card p {
            position: relative;
            z-index: 1;
            margin: 0;
            color: #535c70;
            font-size: 13.5px;
            line-height: 1.95;
            text-align: justify;
        }

        .cw3-audio-card {
            display: grid;
            grid-template-columns: 126px minmax(0, 1fr);
            gap: 22px;
            align-items: center;
            padding: 22px;
        }

        .cw3-album-cover {
            display: block;
            width: 126px;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            object-position: center;
            border: 1px solid rgba(190, 163, 111, 0.46);
            border-radius: 8px;
            box-shadow:
                0 14px 30px rgba(38, 55, 88, 0.18),
                inset 0 0 0 5px rgba(255, 255, 255, 0.25);
        }

        .cw3-audio-copy {
            min-width: 0;
        }

        .cw3-audio-copy small {
            display: block;
            margin-bottom: 5px;
            color: var(--cw3-gold);
            font-family: Georgia, serif;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.25em;
        }

        .cw3-audio-copy h3 {
            margin: 0;
            color: var(--cw3-navy);
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 600;
            letter-spacing: 0.08em;
        }

        .cw3-audio-copy > p {
            margin: 7px 0 16px;
            color: var(--cw3-muted);
            font-size: 11px;
            letter-spacing: 0.08em;
        }

        .cw3-audio-controls {
            display: grid;
            grid-template-columns: 40px minmax(0, 1fr) auto;
            gap: 12px;
            align-items: center;
        }

        .cw3-audio-play {
            display: grid;
            place-items: center;
            width: 40px;
            height: 40px;
            padding: 0;
            border: 1px solid rgba(190, 163, 111, 0.5);
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            background: linear-gradient(135deg, var(--cw3-navy-2), var(--cw3-blue));
            box-shadow: 0 9px 21px rgba(49, 77, 120, 0.24);
            transition: 0.2s ease;
        }

        .cw3-audio-play:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(49, 77, 120, 0.3);
        }

        .cw3-audio-progress {
            width: 100%;
            height: 4px;
            margin: 0;
            accent-color: var(--cw3-blue);
            cursor: pointer;
        }

        .cw3-audio-time {
            min-width: 78px;
            color: #737c8d;
            font-family: Arial, sans-serif;
            font-size: 10px;
            text-align: right;
            white-space: nowrap;
        }

        /* =====================================================
           08. 第3行右侧：和他说话
        ===================================================== */
        .cw3-comments-card {
            min-height: 680px;
            padding: 25px;
        }

        .cw3-comments-head {
            display: grid;
            grid-template-columns: 66px minmax(0, 1fr);
            gap: 15px;
            align-items: center;
            padding-bottom: 19px;
            border-bottom: 1px solid rgba(190, 163, 111, 0.2);
        }

        .cw3-comments-avatar-wrap {
            position: relative;
            width: 66px;
            height: 66px;
        }

        .cw3-comments-avatar-wrap::before {
            position: absolute;
            inset: -4px;
            content: "";
            border: 1px solid rgba(190, 163, 111, 0.36);
            border-radius: 50%;
            box-shadow: 0 0 0 6px rgba(190, 163, 111, 0.04);
        }

        .cw3-comments-avatar {
            position: relative;
            display: block;
            width: 66px;
            height: 66px;
            padding: 3px;
            object-fit: cover;
            border: 1px solid rgba(190, 163, 111, 0.55);
            border-radius: 50%;
            background: #fff;
            box-shadow: 0 11px 26px rgba(38, 55, 88, 0.16);
        }

        .cw3-comments-head small {
            display: block;
            margin-bottom: 4px;
            color: var(--cw3-gold);
            font-family: Georgia, serif;
            font-size: 9px;
            letter-spacing: 0.22em;
        }

        .cw3-comments-head h2 {
            margin: 0;
            color: var(--cw3-navy);
            font-size: 25px;
            font-weight: 700;
            letter-spacing: 0.08em;
        }

        .cw3-comments-head p {
            margin: 7px 0 0;
            color: #7b8290;
            font-size: 11.5px;
            line-height: 1.75;
        }

        .cw3-shortcode-shell {
            margin-top: 18px;
            padding: 10px;
            border: 1px solid rgba(111, 143, 190, 0.12);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.56);
        }

        /* =====================================================
           09. 响应式
        ===================================================== */
        @media (max-width: 1080px) {
            .cw3-grid {
                grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
            }

            .cw3-vn-stage {
                min-height: 290px;
            }
        }

        @media (max-width: 900px) {
            .cw3-otome {
                --cw3-reading-height: clamp(540px, 72dvh, 760px);
                padding: 12px;
            }

            .cw3-grid {
                grid-template-columns: 1fr;
            }

            .cw3-info-card {
                height: var(--cw3-reading-height);
            }

            .cw3-comments-card {
                min-height: 560px;
            }
        }

        @media (max-width: 620px) {
            .cw3-otome {
                padding: 7px;
                border-radius: 12px;
            }

            .cw3-banner {
                height: 145px;
                border-radius: 9px;
            }

            .cw3-banner-copy {
                right: 22px;
                left: 22px;
                width: auto;
            }

            .cw3-banner-kicker {
                font-size: 7px;
                letter-spacing: 0.22em;
            }

            .cw3-banner-copy h1 {
                font-size: 29px;
            }

            .cw3-vn-card {
                padding: 7px;
            }

            .cw3-vn-stage {
                min-height: 260px;
                aspect-ratio: auto;
                height: 62vw;
                max-height: 390px;
            }

            .cw3-vn-progress {
                top: 53px;
            }

            .cw3-vn-dialogue-wrap {
                right: 3%;
                bottom: 4%;
                left: 3%;
            }

            .cw3-vn-name {
                margin-left: 22px;
                padding: 6px 22px 7px;
                font-size: 11px;
            }

            .cw3-vn-dialogue {
                min-height: 105px;
                padding: 22px 28px 24px;
                -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
                mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
            }

            .cw3-vn-text {
                font-size: 14px;
            }

            .cw3-simple-heading {
                padding: 22px 22px 18px;
            }

            .cw3-story-scroll {
                height: 140dvh;
                min-height: 1000px;
                max-height: 1400px;
                padding: 30px 20px 44px;
            }

            .cw3-novel-text {
                font-size: 14px;
                line-height: 2;
            }

            .cw3-speech {
                grid-template-columns: 47px minmax(0, 1fr);
                gap: 11px;
            }

            .cw3-speaker {
                width: 47px;
            }

            .cw3-avatar {
                width: 43px;
                height: 43px;
            }

            .cw3-speech-copy {
                padding-left: 11px;
            }

            .cw3-speech-copy p {
                font-size: 14px;
            }

            .cw3-info-card {
                height: 70dvh;
                min-height: 520px;
            }

            .cw3-info-scroll {
                padding: 25px 19px 38px;
            }

            .cw3-profile-head {
                grid-template-columns: 61px minmax(0, 1fr);
            }

            .cw3-profile-avatar {
                width: 56px;
                height: 56px;
            }

            .cw3-media-card,
            .cw3-note-card,
            .cw3-comments-card {
                padding: 17px;
            }

            .cw3-audio-card {
                grid-template-columns: 88px minmax(0, 1fr);
                gap: 14px;
                padding: 16px;
            }

            .cw3-album-cover {
                width: 88px;
            }

            .cw3-audio-controls {
                grid-template-columns: 36px minmax(0, 1fr);
            }

            .cw3-audio-play {
                width: 36px;
                height: 36px;
            }

            .cw3-audio-time {
                grid-column: 2;
                min-width: 0;
                text-align: left;
            }

            .cw3-comments-head {
                grid-template-columns: 58px minmax(0, 1fr);
            }

            .cw3-comments-avatar-wrap,
            .cw3-comments-avatar {
                width: 58px;
                height: 58px;
            }
        }

        /* =====================================================
           10. Clip1 新布局与 WordPress 隔离强化
        ===================================================== */

        /* 所有本组件自有标题与正文均由这里明确控制，不继承主题的大小写。 */
        .cw3-otome .cw3-banner-badge,
        .cw3-otome .cw3-vn-launch-inner small,
        .cw3-otome .cw3-vn-start,
        .cw3-otome .cw3-simple-heading h2,
        .cw3-otome .cw3-simple-heading p,
        .cw3-otome .cw3-section-label h3,
        .cw3-otome .cw3-synopsis p,
        .cw3-otome .cw3-profile-name small,
        .cw3-otome .cw3-profile-name h4,
        .cw3-otome .cw3-profile > p,
        .cw3-otome .cw3-audio-copy small,
        .cw3-otome .cw3-audio-copy h3,
        .cw3-otome .cw3-audio-copy > p,
        .cw3-otome .cw3-music-note small,
        .cw3-otome .cw3-music-note h3,
        .cw3-otome .cw3-music-note p,
        .cw3-otome .cw3-video-note small,
        .cw3-otome .cw3-video-note h3,
        .cw3-otome .cw3-video-note p,
        .cw3-otome .cw3-comments-head small,
        .cw3-otome .cw3-comments-head h2,
        .cw3-otome .cw3-comments-head p {
            text-transform: none !important;
        }

        /* Banner 只保留图片和右上角 Clip 标识。 */
        .cw3-banner::after {
            background:
                linear-gradient(180deg, rgba(14, 26, 48, 0.03), rgba(14, 26, 48, 0.28)),
                linear-gradient(270deg, rgba(18, 31, 55, 0.38), transparent 45%);
        }

        .cw3-banner-badge {
            position: absolute;
            top: clamp(15px, 2vw, 24px);
            right: clamp(15px, 2.3vw, 30px);
            z-index: 5;
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 10px 18px;
            border: 1px solid rgba(255, 238, 205, 0.72);
            border-radius: 999px;
            color: #fff8e9;
            background:
                linear-gradient(135deg, rgba(38, 59, 92, 0.92), rgba(106, 132, 175, 0.88));
            box-shadow:
                0 12px 30px rgba(10, 21, 42, 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            font-size: clamp(12px, 1.25vw, 16px);
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.08em;
            text-shadow: 0 2px 10px rgba(8, 16, 31, 0.46);
            white-space: nowrap;
        }

        .cw3-banner-badge::before {
            width: 6px;
            height: 6px;
            margin-right: 9px;
            content: "";
            border-radius: 50%;
            background: #f2d7a1;
            box-shadow: 0 0 0 5px rgba(242, 215, 161, 0.13);
        }

        /* 两列都使用独立堆叠容器。 */
        .cw3-left-stack,
        .cw3-right-stack,
        .cw3-media-stack {
            display: grid;
            gap: 18px;
            min-width: 0;
            align-content: start;
        }

        /* 视觉小说首页：只显示 LIGHT VISUAL NOVEL 与开始按钮。 */
        .cw3-vn-stage:not(.is-started) .cw3-vn-topbar,
        .cw3-vn-stage:not(.is-started) .cw3-vn-progress {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .cw3-vn-topbar,
        .cw3-vn-progress {
            transition: opacity 0.28s ease, visibility 0.28s ease;
        }

        .cw3-vn-launch {
            align-items: flex-end;
            justify-content: flex-end;
            padding: clamp(16px, 2.5vw, 30px);
            background:
                linear-gradient(180deg, transparent 58%, rgba(7, 14, 27, 0.42) 100%);
        }

        .cw3-vn-launch-inner {
            display: flex;
            width: auto;
            max-width: calc(100% - 6px);
            padding: 0;
            align-items: center;
            justify-content: flex-end;
            gap: 13px;
            text-align: right;
            background: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .cw3-vn-launch-inner small {
            margin: 0;
            padding: 7px 11px;
            border: 1px solid rgba(239, 218, 180, 0.34);
            border-radius: 999px;
            color: rgba(255, 242, 218, 0.92);
            background: rgba(14, 25, 43, 0.42);
            box-shadow: 0 7px 20px rgba(4, 9, 18, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            font-size: 8px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.22em;
            white-space: nowrap;
        }

        .cw3-vn-launch-inner h2 {
            display: none !important;
        }

        .cw3-vn-start {
            min-width: 132px;
            margin: 0;
            padding: 11px 21px;
            border: 1px solid rgba(255, 229, 182, 0.76);
            border-radius: 999px;
            color: #fff7e7;
            background:
                linear-gradient(135deg, rgba(52, 77, 116, 0.96), rgba(113, 143, 191, 0.94));
            box-shadow:
                0 12px 28px rgba(6, 14, 28, 0.34),
                0 0 0 0 rgba(231, 205, 159, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.22);
            font-size: 12px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 0.13em;
            animation: cw3StartButtonBreath 1.9s ease-in-out infinite;
        }

        .cw3-vn-start:hover {
            transform: translateY(-2px) scale(1.025);
            border-color: rgba(255, 240, 210, 0.95);
            background:
                linear-gradient(135deg, rgba(64, 94, 141, 0.98), rgba(133, 163, 209, 0.97));
        }

        /* 封面背景与整个首页都轻微呼吸，明确告诉用户它可以互动。 */
        .cw3-vn-stage:not(.is-started) {
            animation: cw3VnStageBreath 4.8s ease-in-out infinite;
        }

        .cw3-vn-stage:not(.is-started) .cw3-vn-bg {
            animation: cw3VnCoverBreath 6.4s ease-in-out infinite;
        }

        .cw3-vn-stage:not(.is-started) .cw3-vn-light {
            animation: cw3VnLightBreath 3.6s ease-in-out infinite;
        }

        @keyframes cw3VnCoverBreath {
            0%, 100% {
                transform: scale(1.025);
                filter: brightness(0.98) saturate(1);
            }
            50% {
                transform: scale(1.065);
                filter: brightness(1.065) saturate(1.04);
            }
        }

        @keyframes cw3VnStageBreath {
            0%, 100% {
                box-shadow:
                    0 17px 38px rgba(20, 31, 51, 0.3),
                    0 0 0 0 rgba(122, 154, 202, 0),
                    inset 0 0 0 1px rgba(232, 210, 170, 0.2);
            }
            50% {
                box-shadow:
                    0 21px 46px rgba(20, 31, 51, 0.36),
                    0 0 0 7px rgba(122, 154, 202, 0.10),
                    inset 0 0 0 1px rgba(244, 224, 188, 0.32);
            }
        }

        @keyframes cw3VnLightBreath {
            0%, 100% { opacity: 0.68; }
            50% { opacity: 1; }
        }

        @keyframes cw3StartButtonBreath {
            0%, 100% {
                transform: translateY(0) scale(1);
                box-shadow:
                    0 12px 28px rgba(6, 14, 28, 0.34),
                    0 0 0 0 rgba(231, 205, 159, 0.28),
                    inset 0 1px 0 rgba(255, 255, 255, 0.22);
            }
            50% {
                transform: translateY(-2px) scale(1.035);
                box-shadow:
                    0 15px 34px rgba(6, 14, 28, 0.42),
                    0 0 0 8px rgba(231, 205, 159, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 0.28);
            }
        }

        /* 正文显示区已扩展为上一版约两倍高度，仍保留独立滚动。 */
        .cw3-story-scroll {
            height: var(--cw3-reading-height);
        }

        .cw3-simple-heading {
            padding: 20px 28px 17px;
        }

        .cw3-simple-heading h2 {
            font-size: clamp(20px, 2.2vw, 28px);
        }

        /* 右栏简介不再显示“命运相连 / 琮威 × 玩家”，也不使用顶部横线。 */
        .cw3-info-card {
            height: auto;
            overflow: visible;
        }

        .cw3-info-card::before {
            display: none;
        }

        .cw3-info-scroll {
            height: auto;
            padding: 25px 25px 30px;
            overflow: visible;
        }

        .cw3-info-section {
            margin-top: 0;
        }

        .cw3-info-section + .cw3-info-section {
            margin-top: 30px;
        }

        .cw3-section-label {
            margin-bottom: 14px;
            padding: 0;
            border: 0;
        }

        .cw3-section-label span {
            display: none;
        }

        .cw3-section-label h3 {
            font-size: 20px;
            letter-spacing: 0.08em;
        }

        /* 右栏：一首歌＋正方形封面＋连体背景说明。 */
        .cw3-music-feature {
            padding: 0;
            overflow: hidden;
        }

        .cw3-music-feature::before {
            display: none;
        }

        .cw3-music-main {
            display: grid;
            grid-template-columns: 118px minmax(0, 1fr);
            gap: 18px;
            align-items: center;
            padding: 20px;
            background:
                radial-gradient(circle at 100% 0, rgba(218, 231, 249, 0.6), transparent 39%),
                rgba(255, 255, 255, 0.72);
        }

        .cw3-music-main .cw3-album-cover {
            width: 118px;
            height: 118px;
            aspect-ratio: 1 / 1;
            border-radius: 8px;
        }

        .cw3-music-main .cw3-audio-copy h3 {
            font-size: clamp(18px, 2vw, 24px);
        }

        .cw3-music-main .cw3-audio-copy > p {
            margin: 6px 0 14px;
        }

        .cw3-music-main .cw3-audio-controls {
            grid-template-columns: 38px minmax(0, 1fr);
            gap: 10px;
        }

        .cw3-music-main .cw3-audio-time {
            grid-column: 2;
            min-width: 0;
            text-align: left;
        }

        .cw3-music-note {
            position: relative;
            padding: 20px 22px 22px;
            border-top: 1px solid rgba(190, 163, 111, 0.2);
            background:
                linear-gradient(135deg, rgba(244, 231, 239, 0.78), rgba(231, 240, 252, 0.82));
        }

        .cw3-music-note small,
        .cw3-video-note small {
            display: block;
            margin-bottom: 6px;
            color: var(--cw3-gold);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.22em;
        }

        .cw3-music-note h3,
        .cw3-video-note h3 {
            margin: 0 0 8px;
            color: var(--cw3-navy);
            font-size: 18px;
            font-weight: 700;
            line-height: 1.45;
            letter-spacing: 0.06em;
        }

        .cw3-music-note p,
        .cw3-video-note p {
            margin: 0;
            color: #535c70;
            font-size: 13px;
            line-height: 1.9;
            text-align: justify;
        }

        /* 第3行左栏：视频与文字合并成一个无缝连体区域。 */
        .cw3-video-story-card {
            padding: 0;
            overflow: hidden;
        }

        .cw3-video-story-card::before {
            display: none;
        }

        .cw3-video-story-top {
            padding: 18px 20px 14px;
            background:
                linear-gradient(90deg, rgba(231, 239, 251, 0.74), rgba(255, 255, 255, 0.45), rgba(247, 229, 239, 0.64));
        }

        .cw3-video-story-top small {
            display: block;
            color: var(--cw3-gold);
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 0.23em;
        }

        .cw3-video-story-top h3 {
            margin: 4px 0 0;
            color: var(--cw3-navy);
            font-size: 19px;
            font-weight: 700;
            line-height: 1.45;
            letter-spacing: 0.07em;
        }

        .cw3-video-story-card .cw3-video-frame {
            border-right: 0;
            border-left: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .cw3-video-note {
            padding: 22px 25px 25px;
            border-top: 1px solid rgba(190, 163, 111, 0.22);
            background:
                radial-gradient(circle at 100% 100%, rgba(217, 230, 248, 0.55), transparent 38%),
                rgba(255, 255, 255, 0.76);
        }

        /* 第3行右栏只保留评论相关简码。 */
        .cw3-comments-card {
            min-height: 0;
            padding: 22px;
        }

        .cw3-shortcode-shell {
            overflow: visible;
        }

        @media (max-width: 900px) {
            .cw3-otome {
                --cw3-reading-height: clamp(960px, 120dvh, 1300px);
            }

            .cw3-info-card {
                height: auto;
                min-height: 0;
            }
        }

        @media (max-width: 620px) {
            .cw3-banner-badge {
                top: 12px;
                right: 12px;
                min-height: 36px;
                padding: 8px 13px;
                font-size: 11px;
            }

            .cw3-vn-launch {
                justify-content: center;
                padding: 15px;
            }

            .cw3-vn-launch-inner {
                width: 100%;
                justify-content: center;
                gap: 8px;
            }

            .cw3-vn-launch-inner small {
                padding: 6px 8px;
                font-size: 7px;
                letter-spacing: 0.14em;
            }

            .cw3-vn-start {
                min-width: 116px;
                padding: 10px 15px;
                font-size: 11px;
            }

            .cw3-story-scroll {
                height: 112dvh;
                min-height: 880px;
                max-height: 1180px;
            }

            .cw3-info-scroll {
                padding: 20px 17px 24px;
            }

            .cw3-music-main {
                grid-template-columns: 86px minmax(0, 1fr);
                gap: 13px;
                padding: 15px;
            }

            .cw3-music-main .cw3-album-cover {
                width: 86px;
                height: 86px;
            }

            .cw3-music-note,
            .cw3-video-note {
                padding: 18px;
            }

            .cw3-video-story-top {
                padding: 16px 18px 12px;
            }
        }


        /* =====================================================
           11. 奢华浪漫乙女游戏视觉强化
        ===================================================== */
        .cw3-otome {
            --cw3-navy: #1c3153;
            --cw3-navy-2: #294b79;
            --cw3-blue: #7f9fce;
            --cw3-blue-soft: #eaf1fb;
            --cw3-pink: #cf86a8;
            --cw3-pink-soft: #f9e8f1;
            --cw3-gold: #c7a76b;
            --cw3-gold-soft: #f0dfbd;
            --cw3-ink: #3e465a;
            --cw3-muted: #7b8292;
            --cw3-line: rgba(172, 139, 83, 0.26);
            --cw3-shadow:
                0 24px 62px rgba(34, 48, 78, 0.14),
                0 8px 22px rgba(107, 77, 101, 0.07);

            background:
                radial-gradient(circle at 4% 3%, rgba(247, 211, 229, 0.72), transparent 27%),
                radial-gradient(circle at 97% 2%, rgba(209, 227, 251, 0.76), transparent 30%),
                radial-gradient(circle at 50% 100%, rgba(248, 234, 207, 0.44), transparent 34%),
                linear-gradient(145deg, #fffefe 0%, #faf5fa 48%, #f4f8ff 100%);
            border: 1px solid rgba(199, 167, 107, 0.46);
            box-shadow:
                0 34px 95px rgba(31, 44, 72, 0.17),
                inset 0 1px 0 rgba(255, 255, 255, 0.98),
                inset 0 0 70px rgba(255, 255, 255, 0.32);
        }

        .cw3-otome::before {
            border-color: rgba(199, 167, 107, 0.22);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
        }

        .cw3-panel {
            border-color: rgba(184, 151, 93, 0.28);
            background:
                radial-gradient(circle at 100% 0, rgba(218, 232, 252, 0.58), transparent 33%),
                radial-gradient(circle at 0 100%, rgba(249, 222, 237, 0.50), transparent 35%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(251, 249, 253, 0.84));
            box-shadow:
                0 25px 60px rgba(36, 51, 83, 0.13),
                0 7px 18px rgba(141, 103, 127, 0.07),
                inset 0 1px 0 rgba(255, 255, 255, 1);
        }

        .cw3-panel::before {
            right: 28px;
            left: 28px;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(199, 167, 107, 0.72),
                rgba(238, 219, 180, 0.82),
                rgba(199, 167, 107, 0.72),
                transparent
            );
        }

        .cw3-banner {
            border-color: rgba(234, 207, 158, 0.68);
            box-shadow:
                0 25px 60px rgba(24, 38, 67, 0.30),
                0 0 0 5px rgba(255, 255, 255, 0.52),
                inset 0 0 0 1px rgba(255, 244, 220, 0.22);
        }

        .cw3-banner::after {
            background:
                linear-gradient(90deg, rgba(11, 23, 45, 0.66), rgba(14, 27, 50, 0.11) 57%, rgba(18, 31, 55, 0.30)),
                linear-gradient(180deg, rgba(9, 18, 35, 0.03), rgba(9, 18, 35, 0.50));
        }

        .cw3-banner-copy {
            top: auto;
            right: auto;
            bottom: clamp(18px, 2.6vw, 34px);
            left: clamp(24px, 4vw, 58px);
            width: min(48%, 520px);
            padding: 14px 20px 15px 21px;
            transform: none;
            border-left: 2px solid rgba(234, 207, 158, 0.86);
            border-radius: 0 12px 12px 0;
            background:
                linear-gradient(90deg, rgba(17, 31, 55, 0.74), rgba(24, 41, 68, 0.38) 72%, transparent);
            box-shadow: -12px 0 35px rgba(7, 15, 29, 0.17);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .cw3-banner-kicker {
            margin-bottom: 5px;
            color: rgba(242, 220, 181, 0.93);
            font-size: clamp(7px, 0.74vw, 10px);
            letter-spacing: 0.25em;
        }

        .cw3-banner-copy h1 {
            color: #fff8e9;
            font-size: clamp(25px, 3vw, 40px);
            font-weight: 600;
            line-height: 1.16;
            letter-spacing: 0.13em;
            text-shadow:
                0 3px 16px rgba(5, 12, 24, 0.70),
                0 0 24px rgba(234, 207, 158, 0.16);
        }

        .cw3-banner-couple {
            margin-top: 7px;
            color: rgba(255, 247, 233, 0.94);
            font-size: clamp(11px, 1.18vw, 15px);
            font-weight: 600;
            letter-spacing: 0.14em;
        }

        .cw3-banner-couple b {
            margin: 0 8px;
            color: #efd39e;
        }

        .cw3-banner-badge {
            border-color: rgba(255, 235, 197, 0.78);
            background:
                linear-gradient(135deg, rgba(38, 56, 88, 0.94), rgba(121, 88, 120, 0.86));
            box-shadow:
                0 13px 32px rgba(9, 18, 35, 0.36),
                0 0 0 4px rgba(255, 255, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
        }

        .cw3-vn-card {
            border-color: rgba(201, 166, 102, 0.40);
            box-shadow:
                0 28px 65px rgba(31, 46, 78, 0.18),
                0 0 0 1px rgba(255, 255, 255, 0.56) inset;
        }

        .cw3-vn-stage {
            border: 1px solid rgba(239, 215, 171, 0.38);
            box-shadow:
                0 22px 48px rgba(18, 29, 51, 0.34),
                inset 0 0 0 1px rgba(255, 245, 223, 0.17);
        }

        .cw3-vn-start,
        .cw3-audio-play {
            background:
                linear-gradient(135deg, #385b8d 0%, #7e94c1 52%, #b07f9c 100%);
            border-color: rgba(255, 231, 189, 0.84);
        }

        .cw3-simple-heading,
        .cw3-video-story-top {
            background:
                linear-gradient(90deg, rgba(228, 238, 252, 0.86), rgba(255, 255, 255, 0.62), rgba(249, 228, 240, 0.82));
        }

        .cw3-simple-heading h2,
        .cw3-section-label h3,
        .cw3-video-story-top h3,
        .cw3-music-note h3,
        .cw3-comments-head h2 {
            color: #243a60;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.94);
        }

        .cw3-story-scroll {
            background:
                linear-gradient(rgba(255, 255, 255, 0.90), rgba(253, 250, 253, 0.88)),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 31px,
                    rgba(116, 143, 184, 0.045) 32px
                );
        }

        .cw3-synopsis,
        .cw3-profile,
        .cw3-music-main,
        .cw3-video-note,
        .cw3-music-note,
        .cw3-shortcode-shell {
            border-color: rgba(174, 142, 87, 0.22);
            box-shadow:
                0 16px 38px rgba(39, 55, 88, 0.09),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
        }

        .cw3-profile-avatar,
        .cw3-comments-avatar,
        .cw3-avatar,
        .cw3-album-cover {
            border-color: rgba(202, 167, 103, 0.66);
            box-shadow:
                0 13px 29px rgba(39, 55, 88, 0.17),
                0 0 0 4px rgba(255, 255, 255, 0.58);
        }

        .cw3-audio-progress {
            accent-color: #8a78a5;
        }

        @media (max-width: 620px) {
            .cw3-banner-copy {
                right: 14px;
                bottom: 14px;
                left: 14px;
                width: auto;
                padding: 10px 13px 11px 14px;
                border-radius: 0 9px 9px 0;
            }

            .cw3-banner-copy h1 {
                font-size: 24px;
            }

            .cw3-banner-couple {
                font-size: 11px;
            }

            .cw3-banner-kicker {
                font-size: 7px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .cw3-vn-stage:not(.is-started),
            .cw3-vn-stage:not(.is-started) .cw3-vn-bg,
            .cw3-vn-stage:not(.is-started) .cw3-vn-light,
            .cw3-vn-start {
                animation: none !important;
            }
        }



        /* =====================================================
           12. 蓝色奢华修复版｜最终高优先级覆盖
        ===================================================== */
        .cw3-otome {
            --cw3-navy: #122b4e;
            --cw3-navy-2: #234a79;
            --cw3-blue: #6f94c8;
            --cw3-blue-soft: #eaf2fd;
            --cw3-pink: #7896c2;
            --cw3-pink-soft: #edf3fc;
            --cw3-gold: #c9ad73;
            --cw3-gold-soft: #f2e5c8;
            --cw3-ink: #34435c;
            --cw3-muted: #738198;
            --cw3-line: rgba(83, 121, 175, 0.24);
            --cw3-shadow:
                0 24px 64px rgba(26, 55, 94, 0.16),
                0 8px 22px rgba(38, 77, 126, 0.08);

            color: var(--cw3-ink) !important;
            background:
                radial-gradient(circle at 5% 2%, rgba(211, 228, 251, 0.88), transparent 28%),
                radial-gradient(circle at 98% 5%, rgba(184, 207, 239, 0.72), transparent 31%),
                radial-gradient(circle at 50% 100%, rgba(225, 235, 250, 0.65), transparent 36%),
                linear-gradient(145deg, #fbfdff 0%, #f1f6fd 48%, #eaf2fc 100%) !important;
            border-color: rgba(104, 137, 183, 0.44) !important;
            box-shadow:
                0 36px 96px rgba(20, 49, 85, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.98),
                inset 0 0 42px rgba(124, 158, 205, 0.07) !important;
        }

        .cw3-otome .cw3-panel {
            border-color: rgba(87, 126, 181, 0.25) !important;
            background:
                radial-gradient(circle at 100% 0, rgba(208, 225, 248, 0.7), transparent 35%),
                radial-gradient(circle at 0 100%, rgba(232, 240, 251, 0.78), transparent 38%),
                linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.9)) !important;
            box-shadow:
                0 22px 58px rgba(28, 61, 104, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
        }

        .cw3-otome .cw3-panel::before {
            background: linear-gradient(90deg, transparent, rgba(111, 148, 200, 0.72), rgba(214, 190, 137, 0.68), transparent) !important;
        }

        /* Banner 字体完全脱离 WordPress 主题的 h1、p、span、b 样式。 */
        .cw3-otome .cw3-banner-copy {
            position: absolute !important;
            top: 50% !important;
            left: clamp(24px, 4.6vw, 68px) !important;
            z-index: 6 !important;
            display: block !important;
            width: min(52%, 590px) !important;
            margin: 0 !important;
            padding: clamp(14px, 2vw, 23px) clamp(17px, 2.5vw, 31px) !important;
            transform: translateY(-50%) !important;
            text-align: left !important;
            text-decoration: none !important;
            text-transform: none !important;
            white-space: normal !important;
            border: 1px solid rgba(226, 238, 255, 0.38) !important;
            border-radius: 8px !important;
            color: #f8fbff !important;
            background: linear-gradient(100deg, rgba(16, 39, 73, 0.76), rgba(39, 75, 119, 0.36), transparent) !important;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
            backdrop-filter: blur(7px) !important;
            -webkit-backdrop-filter: blur(7px) !important;
            font-family: "Noto Serif SC", "Source Han Serif SC", "Microsoft YaHei", serif !important;
            line-height: 1 !important;
        }

        .cw3-otome .cw3-banner-kicker {
            all: unset !important;
            display: block !important;
            margin: 0 0 8px !important;
            color: #d9e8fb !important;
            font-family: Georgia, "Times New Roman", serif !important;
            font-size: 9px !important;
            font-weight: 700 !important;
            line-height: 1.35 !important;
            letter-spacing: 0.26em !important;
            text-transform: uppercase !important;
            text-shadow: 0 2px 10px rgba(5, 18, 38, 0.54) !important;
        }

        .cw3-otome .cw3-banner-copy h1 {
            all: unset !important;
            display: block !important;
            margin: 0 !important;
            padding: 0 !important;
            color: #ffffff !important;
            font-family: "Noto Serif SC", "Source Han Serif SC", "Microsoft YaHei", serif !important;
            font-size: clamp(25px, 3.2vw, 43px) !important;
            font-weight: 600 !important;
            line-height: 1.22 !important;
            letter-spacing: 0.12em !important;
            text-align: left !important;
            text-transform: none !important;
            text-shadow: 0 4px 18px rgba(3, 17, 38, 0.58) !important;
        }

        .cw3-otome .cw3-banner-couple {
            all: unset !important;
            display: flex !important;
            align-items: center !important;
            flex-wrap: wrap !important;
            gap: 7px !important;
            margin: 9px 0 0 !important;
            padding: 0 !important;
            color: #edf5ff !important;
            font-family: "Noto Serif SC", "Source Han Serif SC", "Microsoft YaHei", serif !important;
            font-size: clamp(12px, 1.2vw, 15px) !important;
            font-weight: 600 !important;
            line-height: 1.45 !important;
            letter-spacing: 0.08em !important;
            text-transform: none !important;
            text-shadow: 0 2px 12px rgba(4, 17, 36, 0.52) !important;
        }

        .cw3-otome .cw3-banner-couple b,
        .cw3-otome .cw3-banner-couple span,
        .cw3-otome .cw3-banner-couple .player {
            all: unset !important;
            display: inline !important;
            margin: 0 !important;
            padding: 0 !important;
            color: inherit !important;
            font: inherit !important;
            line-height: inherit !important;
            letter-spacing: inherit !important;
            text-transform: none !important;
        }

        .cw3-otome .cw3-banner-couple b {
            color: #d8c18c !important;
            font-weight: 500 !important;
        }

        .cw3-otome .cw3-banner-badge {
            all: unset !important;
            position: absolute !important;
            top: clamp(14px, 2vw, 23px) !important;
            right: clamp(14px, 2.3vw, 28px) !important;
            z-index: 7 !important;
            display: inline-flex !important;
            align-items: center !important;
            min-height: 38px !important;
            padding: 8px 16px !important;
            border: 1px solid rgba(232, 241, 255, 0.65) !important;
            border-radius: 999px !important;
            color: #f8fbff !important;
            background: linear-gradient(135deg, rgba(25, 58, 99, 0.94), rgba(91, 128, 180, 0.91)) !important;
            box-shadow: 0 10px 28px rgba(10, 35, 70, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
            font-family: "Noto Serif SC", "Microsoft YaHei", serif !important;
            font-size: 12px !important;
            font-weight: 700 !important;
            line-height: 1 !important;
            letter-spacing: 0.08em !important;
            text-transform: none !important;
            white-space: nowrap !important;
        }

        /* 小说正文：字体更大、行距更紧凑。 */
        .cw3-otome .cw3-story-inner {
            width: min(100%, 820px) !important;
        }

        .cw3-otome .cw3-novel-text {
            margin: 0 0 18px !important;
            color: #32445f !important;
            font-size: clamp(17px, 1.16vw, 19px) !important;
            font-weight: 500 !important;
            line-height: 1.72 !important;
            letter-spacing: 0.018em !important;
        }

        .cw3-otome .cw3-speech-copy p {
            margin-bottom: 7px !important;
            color: #263f62 !important;
            font-size: clamp(16.5px, 1.1vw, 18.5px) !important;
            line-height: 1.68 !important;
        }

        .cw3-otome .cw3-speech.is-player .cw3-speech-copy p {
            color: #405d85 !important;
        }

        .cw3-otome .cw3-speech-copy {
            border-left-color: rgba(82, 126, 187, 0.68) !important;
        }

        /* 删除人物标签，即使缓存残留旧 HTML 也不显示。 */
        .cw3-otome .cw3-tags {
            display: none !important;
        }

        /* VN 右上角：首页按钮。 */
        .cw3-otome .cw3-vn-restart {
            color: #f6fbff !important;
            border-color: rgba(219, 235, 255, 0.56) !important;
            background: linear-gradient(145deg, rgba(26, 60, 103, 0.78), rgba(89, 126, 178, 0.62)) !important;
        }

        .cw3-otome .cw3-vn-restart:hover {
            transform: translateY(-2px) scale(1.06) !important;
            background: linear-gradient(145deg, rgba(37, 79, 128, 0.94), rgba(106, 146, 202, 0.86)) !important;
        }

        .cw3-otome .cw3-vn-start,
        .cw3-otome .cw3-audio-play {
            border-color: rgba(221, 235, 255, 0.72) !important;
            background: linear-gradient(135deg, #244e7f, #779bd0) !important;
            box-shadow: 0 12px 28px rgba(24, 61, 105, 0.31), inset 0 1px 0 rgba(255,255,255,.22) !important;
        }

        /* 音频控件必须可以点击，错误信息不再被隐藏。 */
        .cw3-otome .cw3-audio-controls,
        .cw3-otome .cw3-audio-play,
        .cw3-otome .cw3-audio-progress {
            position: relative !important;
            z-index: 8 !important;
            pointer-events: auto !important;
        }

        .cw3-otome .cw3-audio-play {
            appearance: none !important;
            -webkit-appearance: none !important;
            opacity: 1 !important;
            cursor: pointer !important;
            touch-action: manipulation !important;
        }

        .cw3-otome .cw3-audio-play:disabled {
            cursor: wait !important;
            opacity: 0.72 !important;
        }

        .cw3-otome .cw3-audio-status {
            min-height: 18px;
            margin-top: 9px;
            color: #70809a;
            font-family: "Microsoft YaHei", sans-serif;
            font-size: 11px;
            line-height: 1.55;
        }

        .cw3-otome .cw3-audio-status.is-error {
            color: #9d4f59;
        }

        /* 视频保留原生音量控制，只禁止下载。 */
        .cw3-otome .cw3-video-frame,
        .cw3-otome .cw3-video-frame video {
            position: relative !important;
            z-index: 2 !important;
            pointer-events: auto !important;
        }

        .cw3-otome .cw3-video-frame video {
            display: block !important;
            width: 100% !important;
            opacity: 1 !important;
            touch-action: manipulation !important;
        }

        /* 评论抬头仅保留文字，不显示人像。 */
        .cw3-otome .cw3-comments-head,
        .cw3-otome .cw3-comments-head--text {
            display: block !important;
            grid-template-columns: none !important;
            padding: 6px 4px 19px !important;
            text-align: left !important;
            border-bottom-color: rgba(87, 126, 181, 0.24) !important;
        }

        .cw3-otome .cw3-comments-avatar-wrap,
        .cw3-otome .cw3-comments-avatar {
            display: none !important;
        }

        .cw3-otome .cw3-comments-head small {
            color: #7894bb !important;
        }

        .cw3-otome .cw3-comments-head h2,
        .cw3-otome .cw3-section-label h3,
        .cw3-otome .cw3-simple-heading h2,
        .cw3-otome .cw3-audio-copy h3,
        .cw3-otome .cw3-music-note h3,
        .cw3-otome .cw3-video-note h3 {
            color: #17365f !important;
        }

        .cw3-otome .cw3-synopsis,
        .cw3-otome .cw3-profile,
        .cw3-otome .cw3-music-main,
        .cw3-otome .cw3-music-note,
        .cw3-otome .cw3-video-note,
        .cw3-otome .cw3-shortcode-shell {
            border-color: rgba(82, 124, 181, 0.2) !important;
            background:
                radial-gradient(circle at 100% 0, rgba(211, 227, 249, 0.64), transparent 37%),
                linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,246,255,.88)) !important;
        }

        @media (max-width: 620px) {
            .cw3-otome .cw3-banner-copy {
                right: 12px !important;
                left: 12px !important;
                width: auto !important;
                padding: 12px 15px !important;
            }

            .cw3-otome .cw3-banner-copy h1 {
                font-size: 24px !important;
            }

            .cw3-otome .cw3-banner-badge {
                top: 10px !important;
                right: 10px !important;
                min-height: 32px !important;
                padding: 7px 11px !important;
                font-size: 10px !important;
            }

            .cw3-otome .cw3-novel-text {
                font-size: 16.5px !important;
                line-height: 1.68 !important;
            }

            .cw3-otome .cw3-speech-copy p {
                font-size: 16px !important;
                line-height: 1.64 !important;
            }
        }

    

        /* =====================================================
           稳定修复版最终覆盖：不再受 WordPress 主题影响
        ===================================================== */

        /* Banner 去掉蓝色文字框，仅保留干净的浅色标题文字。 */
        .cw3-otome .cw3-banner-copy {
            padding: 0 !important;
            border: 0 !important;
            border-radius: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }

        .cw3-otome .cw3-banner-couple,
        .cw3-otome .cw3-banner-couple b,
        .cw3-otome .cw3-banner-couple span,
        .cw3-otome .cw3-banner-couple .player {
            color: #f4f8ff !important;
            -webkit-text-fill-color: #f4f8ff !important;
            opacity: 1 !important;
            text-shadow:
                0 2px 5px rgba(3, 13, 30, 0.95),
                0 5px 18px rgba(3, 18, 42, 0.82) !important;
        }

        .cw3-otome .cw3-banner-couple b {
            color: #e9d7ad !important;
            -webkit-text-fill-color: #e9d7ad !important;
        }

        /* 右上角 Clip 标识改为纯文字，不再显示蓝色小框。 */
        .cw3-otome .cw3-banner-badge {
            min-height: 0 !important;
            padding: 0 !important;
            border: 0 !important;
            border-radius: 0 !important;
            color: #f4f8ff !important;
            -webkit-text-fill-color: #f4f8ff !important;
            background: transparent !important;
            box-shadow: none !important;
            text-shadow:
                0 2px 5px rgba(3, 13, 30, 0.95),
                0 5px 18px rgba(3, 18, 42, 0.82) !important;
        }

        /* 小说文字进一步放大，并缩小行距。 */
        .cw3-otome .cw3-novel-text {
            font-size: clamp(18px, 1.25vw, 20px) !important;
            line-height: 1.58 !important;
            margin-bottom: 16px !important;
        }

        .cw3-otome .cw3-speech-copy p {
            font-size: clamp(17.5px, 1.18vw, 19.5px) !important;
            line-height: 1.54 !important;
        }

        /* 使用浏览器原生音频控件，确保在 WordPress 与 Electron 中都能点击。 */
        .cw3-otome .cw3-native-audio {
            display: block !important;
            width: 100% !important;
            max-width: 100% !important;
            height: 46px !important;
            margin: 15px 0 0 !important;
            padding: 0 !important;
            position: relative !important;
            z-index: 20 !important;
            pointer-events: auto !important;
            opacity: 1 !important;
            visibility: visible !important;
            accent-color: #527eb8 !important;
            filter: drop-shadow(0 7px 15px rgba(28, 63, 108, 0.16));
        }

        /* 不再显示旧版自定义音乐按钮或错误提示残留。 */
        .cw3-otome .cw3-audio-controls,
        .cw3-otome .cw3-audio-status {
            display: none !important;
        }

        /* “和他说话”只保留抬头，删除说明下方的分割线。 */
        .cw3-otome .cw3-comments-head,
        .cw3-otome .cw3-comments-head--text {
            padding-bottom: 0 !important;
            border-bottom: 0 !important;
        }

        @media (max-width: 620px) {
            .cw3-otome .cw3-novel-text {
                font-size: 17px !important;
                line-height: 1.56 !important;
            }

            .cw3-otome .cw3-speech-copy p {
                font-size: 16.5px !important;
                line-height: 1.52 !important;
            }
        }



        /* =====================================================
           最终稳定覆盖：CSS 原生视觉小说＋全宽音频＋正文放大
        ===================================================== */
        .cw3-otome .cw3-vn-css {
            position: relative !important;
        }

        .cw3-otome .cw3-vn-state {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            margin: 0 !important;
            padding: 0 !important;
            overflow: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

        .cw3-otome .cw3-vn-css .cw3-vn-bg {
            background-position: center 44% !important;
            background-repeat: no-repeat !important;
            background-size: cover !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: scale(1.035) !important;
            animation: cw3CssCoverBreath 6.5s ease-in-out infinite !important;
        }

        @keyframes cw3CssCoverBreath {
            0%, 100% { transform: scale(1.035); filter: brightness(0.98) saturate(1.02); }
            50% { transform: scale(1.065); filter: brightness(1.06) saturate(1.09); }
        }

        .cw3-otome .cw3-vn-css-scene {
            position: absolute !important;
            right: 7% !important;
            bottom: 5.5% !important;
            left: 7% !important;
            z-index: 12 !important;
            display: none !important;
            min-width: 0 !important;
        }

        .cw3-otome .cw3-vn-css-scene .cw3-vn-dialogue {
            display: block !important;
            width: 100% !important;
            min-height: 102px !important;
            color: inherit !important;
            text-decoration: none !important;
            cursor: pointer !important;
            pointer-events: auto !important;
            touch-action: manipulation !important;
            user-select: none !important;
            -webkit-user-select: none !important;
        }

        .cw3-otome .cw3-vn-css-scene .cw3-vn-text {
            display: block !important;
        }

        .cw3-otome #cw3vn-congwei-home:checked ~ .cw3-vn-stage .cw3-vn-launch {
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: auto !important;
        }

        .cw3-otome #cw3vn-congwei-home:checked ~ .cw3-vn-stage .cw3-vn-css-topbar,
        .cw3-otome #cw3vn-congwei-home:checked ~ .cw3-vn-stage .cw3-vn-css-progress {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }

        .cw3-otome #cw3vn-congwei-1:checked ~ .cw3-vn-stage .cw3-vn-launch,
        .cw3-otome #cw3vn-congwei-2:checked ~ .cw3-vn-stage .cw3-vn-launch,
        .cw3-otome #cw3vn-congwei-3:checked ~ .cw3-vn-stage .cw3-vn-launch,
        .cw3-otome #cw3vn-congwei-4:checked ~ .cw3-vn-stage .cw3-vn-launch,
        .cw3-otome #cw3vn-congwei-5:checked ~ .cw3-vn-stage .cw3-vn-launch,
        .cw3-otome #cw3vn-congwei-6:checked ~ .cw3-vn-stage .cw3-vn-launch {
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
        }

        .cw3-otome #cw3vn-congwei-1:checked ~ .cw3-vn-stage .cw3-vn-css-scene-1,
        .cw3-otome #cw3vn-congwei-2:checked ~ .cw3-vn-stage .cw3-vn-css-scene-2,
        .cw3-otome #cw3vn-congwei-3:checked ~ .cw3-vn-stage .cw3-vn-css-scene-3,
        .cw3-otome #cw3vn-congwei-4:checked ~ .cw3-vn-stage .cw3-vn-css-scene-4,
        .cw3-otome #cw3vn-congwei-5:checked ~ .cw3-vn-stage .cw3-vn-css-scene-5,
        .cw3-otome #cw3vn-congwei-6:checked ~ .cw3-vn-stage .cw3-vn-css-scene-6 {
            display: block !important;
            animation: cw3CssSceneIn .32s ease both !important;
        }

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

        .cw3-otome #cw3vn-congwei-1:checked ~ .cw3-vn-stage { --cw3-vn-css-progress: 16.666%; --cw3-vn-css-count: "1/6"; }
        .cw3-otome #cw3vn-congwei-2:checked ~ .cw3-vn-stage { --cw3-vn-css-progress: 33.333%; --cw3-vn-css-count: "2/6"; }
        .cw3-otome #cw3vn-congwei-3:checked ~ .cw3-vn-stage { --cw3-vn-css-progress: 50%; --cw3-vn-css-count: "3/6"; }
        .cw3-otome #cw3vn-congwei-4:checked ~ .cw3-vn-stage { --cw3-vn-css-progress: 66.666%; --cw3-vn-css-count: "4/6"; }
        .cw3-otome #cw3vn-congwei-5:checked ~ .cw3-vn-stage { --cw3-vn-css-progress: 83.333%; --cw3-vn-css-count: "5/6"; }
        .cw3-otome #cw3vn-congwei-6:checked ~ .cw3-vn-stage { --cw3-vn-css-progress: 100%; --cw3-vn-css-count: "6/6"; }

        .cw3-otome .cw3-vn-css-progress .cw3-vn-progress-fill {
            width: var(--cw3-vn-css-progress, 16.666%) !important;
        }

        .cw3-otome .cw3-vn-css-count {
            font-size: 0 !important;
        }

        .cw3-otome .cw3-vn-css-count::after {
            content: var(--cw3-vn-css-count, "1/6") !important;
            font-size: 9px !important;
        }

        .cw3-otome .cw3-vn-css .cw3-vn-start,
        .cw3-otome .cw3-vn-css .cw3-vn-restart {
            pointer-events: auto !important;
            cursor: pointer !important;
            touch-action: manipulation !important;
            text-decoration: none !important;
            user-select: none !important;
            -webkit-user-select: none !important;
        }

        /* 正文全文放大约 2px，同时缩短行距。 */
        .cw3-otome .cw3-novel-text {
            font-size: clamp(19px, 1.28vw, 21px) !important;
            line-height: 1.54 !important;
            margin-bottom: 15px !important;
            letter-spacing: 0.012em !important;
        }

        .cw3-otome .cw3-speech-copy p {
            font-size: clamp(18.5px, 1.2vw, 20.5px) !important;
            line-height: 1.5 !important;
            margin-bottom: 6px !important;
        }

        .cw3-otome .cw3-novel-text.is-opening::first-letter {
            font-size: 48px !important;
        }

        /* 音频标题与封面在上，原生播放器独占下一整行。 */
        .cw3-otome .cw3-music-main--full {
            display: block !important;
            width: 100% !important;
            padding: 22px !important;
        }

        .cw3-otome .cw3-music-heading-row {
            display: grid !important;
            grid-template-columns: 126px minmax(0, 1fr) !important;
            gap: 22px !important;
            align-items: center !important;
            width: 100% !important;
        }

        .cw3-otome .cw3-music-main--full .cw3-native-audio {
            display: block !important;
            width: 100% !important;
            max-width: none !important;
            height: 48px !important;
            margin: 18px 0 0 !important;
            clear: both !important;
        }

        @media (max-width: 620px) {
            .cw3-otome .cw3-vn-css-scene {
                right: 3% !important;
                bottom: 4% !important;
                left: 3% !important;
            }

            .cw3-otome .cw3-vn-css-scene .cw3-vn-dialogue {
                min-height: 105px !important;
            }

            .cw3-otome .cw3-novel-text {
                font-size: 18.5px !important;
                line-height: 1.5 !important;
            }

            .cw3-otome .cw3-speech-copy p {
                font-size: 18px !important;
                line-height: 1.46 !important;
            }

            .cw3-otome .cw3-music-heading-row {
                grid-template-columns: 88px minmax(0, 1fr) !important;
                gap: 14px !important;
            }
        }
