
        /* ----- 完全隔离容器 ----- */
        .smiery-dir-wrap {
            all: initial;
            display: block;
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 2rem 3rem 2rem;
            background: #ffffff;
            color: #1a1a1a;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.5;
            box-sizing: border-box;
        }
        .smiery-dir-wrap *,
        .smiery-dir-wrap *::before,
        .smiery-dir-wrap *::after {
            box-sizing: inherit;
        }

        /* 主题色 #c724b1 */
        .clr-accent { color: #c724b1; }
        .bg-accent { background-color: #c724b1; }
        .br-accent { border-color: #c724b1; }

        /* ----- 音乐符装饰线 ----- */
        .music-rule {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 0 0 2rem 0;
        }
        .music-rule .notes {
            font-size: 2rem;
            color: #c724b1;
            opacity: 0.35;
            line-height: 1;
            letter-spacing: 4px;
        }
        .music-rule .line {
            flex: 1;
            height: 1.5px;
            background: linear-gradient(90deg, transparent, #c724b1 20%, #c724b1 80%, transparent);
        }

        /* ===== 开场白卡片：单句成行，修复换行问题 ===== */
        .prologue-card {
            max-width: 100%;
            background: #f9f9fb;
            border-radius: 32px;
            padding: 2rem 2.5rem;
            margin-bottom: 3rem;
            border-left: 6px solid #c724b1;
            box-shadow: 0 8px 22px rgba(0,0,0,0.02);
        }
        .prologue-card p {
            font-size: 1.1rem;
            margin: 0 0 0.6rem 0;
            color: #262626;
            line-height: 1.6;
            max-width: 1100px;
        }
        .prologue-card p:last-child {
            margin: 1rem 0 0 0;
            color: #c724b1;
        }
        /* 保持短语完整不换行 */
        .nowrap-phrase {
            white-space: nowrap;
        }

        /* ----- 网格：三列，第七张单独居中处理 ----- */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
            margin: 2.5rem 0 2rem 0;
        }

        /* 卡片基础样式 - 使用flex列布局 + 固定高度结构 */
        .card-item {
            background: #ffffff;
            border: 1px solid #ececec;
            border-radius: 24px;
            padding: 1.5rem 1.2rem 1.2rem 1.2rem;
            transition: all 0.2s ease;
            box-shadow: 0 6px 12px rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100%;
        }
        .card-item:hover {
            border-color: #c724b1;
            box-shadow: 0 18px 28px -12px rgba(199, 36, 177, 0.2);
            transform: translateY(-4px);
        }
        .card-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 0;
            background-color: #c724b1;
            transition: height 0.25s ease;
            border-radius: 0 4px 4px 0;
        }
        .card-item:hover::before {
            height: 100%;
        }

        /* 卡片头部：序号 + 音乐符 */
        .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-shrink: 0;
        }
        .card-index {
            background: rgba(199,36,177,0.08);
            color: #c724b1;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            border: 1px solid rgba(199,36,177,0.2);
        }
        .card-note {
            font-size: 1.3rem;
            color: #c724b1;
            opacity: 0;
            transition: opacity 0.2s;
        }
        .card-item:hover .card-note {
            opacity: 0.5;
        }

        /* 标题区域 - 固定最小高度，保证图片对齐 */
        .card-title {
            font-size: 1.2rem;
            font-weight: 530;
            line-height: 1.4;
            margin-bottom: 0.9rem;
            min-height: 4.8rem; /* 固定3行高度 (1.2rem * 1.4 * 3 ≈ 5.0rem，取4.8rem略小一点) */
            display: flex;
            align-items: flex-start;
            flex-shrink: 0;
        }
        .card-title a {
            text-decoration: none;
            color: #1a1a1a;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .card-title a:hover {
            text-decoration: underline 2px #c724b1;
            text-underline-offset: 4px;
        }
        .arrow {
            color: #c724b1;
            font-size: 1.3rem;
            transition: transform 0.2s;
        }
        .card-item:hover .arrow {
            transform: translateX(5px);
        }

        /* 图片区域 - 固定比例，不受标题高度影响 */
        .card-figure {
            margin: 0.5rem 0 0.3rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #f5f5f5;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #f0f0f0;
            width: 100%;
            flex-shrink: 0;
        }
        .card-figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ===== 第七张卡片：第三行居中 ===== */
        .card-item:nth-child(7) {
            grid-column: 2 / 3;        /* 放在第二列 */
            justify-self: center;       /* 列内居中 */
            width: 100%;
        }

        /* 结尾音乐符 */
        .closing-note {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #f0f0f0;
        }
        .closing-note span {
            background: rgba(199,36,177,0.05);
            padding: 0.4rem 2rem;
            border-radius: 60px;
            border: 1px dashed #c724b1;
            color: #c724b1;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* 响应式 */
        @media (max-width: 900px) {
            .card-grid { grid-template-columns: repeat(2, 1fr); }
            .card-item:nth-child(7) { grid-column: auto; justify-self: auto; } /* 小屏取消居中 */
        }
        @media (max-width: 600px) {
            .card-grid { grid-template-columns: 1fr; }
            .card-title { min-height: auto; } /* 小屏取消固定高度 */
        }
    