        /* ===== 全局重置 ===== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --orange: #FFBA82;
            --orange-dark: #f5a05c;
            --orange-light: #fff3e8;
            --deep: #1A2B3C;
            --gray: #6B7A8A;
            --gray-light: #E8EDF2;
            --bg: #F8F7F4;
            --white: #FFFFFF;
            --radius: 20px;
            --radius-sm: 12px;
            --shadow-card: 0 8px 32px rgba(26, 43, 60, 0.06);
            --shadow-hover: 0 16px 48px rgba(26, 43, 60, 0.10);
            --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--deep);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ===== 导航 ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: blur(16px) saturate(180%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 2px 32px rgba(0, 0, 0, 0.06);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-img {
            height: 36px;
            width: auto;
        }
        .logo-text {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }
        .logo-text .cn {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .logo-text .en {
            font-size: 11px;
            font-weight: 400;
            color: var(--gray);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray);
        }
        .nav-links a {
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s;
        }
        .nav-links a:hover {
            color: var(--deep);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-cta {
            padding: 8px 28px;
            font-size: 13px;
            background: var(--deep);
            color: #fff !important;
            border-radius: 40px;
            box-shadow: 0 4px 16px rgba(26, 43, 60, 0.10);
        }
        .nav-cta::after {
            display: none !important;
        }
        .nav-cta:hover {
            background: var(--orange) !important;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(255, 186, 130, 0.30);
        }
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }
        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--deep);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ============================================================
           HERO
           ============================================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 0 80px;  /* 顶部间距从 140px 减少到 100px */
            position: relative;
            overflow: hidden;
            background: #FFFFFF;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 186, 130, 0.06) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 186, 130, 0.04) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }

        .hero .container {
            position: relative;
            width: 100%;
            max-width: 1200px;
        }



        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;  /* 稍微增大字体，从 11px 到 12px */
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--orange-dark);
            background: var(--orange-light);
            padding: 6px 20px;  /* 增加内边距，从 5px 18px 到 6px 20px */
            border-radius: 40px;
            margin-bottom: 24px;  /* 增加底部间距，从 18px 到 24px */
            opacity: 0;
            transform: translateY(12px);
            animation: fadeUp 0.8s ease 0.1s forwards;
        }
        .hero-tag .dot {
            width: 5px;
            height: 5px;
            background: var(--orange-dark);
            border-radius: 50%;
            display: inline-block;
        }

        .hero-title {
            font-size: clamp(32px, 4.2vw, 48px);  /* 调整字体范围，避免标题过大 */
            font-weight: 800;
            line-height: 1.2;  /* 增加行高，从 1.1 到 1.2，适应多行文本 */
            letter-spacing: -0.02em;  /* 稍微减小字间距 */
            color: var(--deep);
            margin-bottom: 16px;
        }
        .hero-title .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px) scale(0.96);
            animation: wordReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .hero-title .word:nth-child(1) { animation-delay: 0.20s; }
        .hero-title .word:nth-child(2) { animation-delay: 0.30s; }
        .hero-title .word:nth-child(3) { animation-delay: 0.40s; }
        .hero-title .word:nth-child(4) { animation-delay: 0.50s; }
        .hero-title .word:nth-child(5) { animation-delay: 0.60s; }
        /* br 标签是第 6 个子元素，不需要动画 */
        .hero-title .word:nth-child(7) { animation-delay: 0.70s; }
        .hero-title .word:nth-child(8) { animation-delay: 0.80s; }
        .hero-title .word:nth-child(9) { animation-delay: 0.90s; }
        .hero-title .word:nth-child(10) { animation-delay: 1.00s; }
        .hero-title .word:nth-child(11) { animation-delay: 1.10s; }
        .hero-title .highlight {
            color: var(--orange-dark);
            position: relative;
        }
        .hero-title .highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 6px;
            width: 100%;
            height: 14px;
            background: var(--orange);
            opacity: 0.20;
            border-radius: 4px;
            z-index: -1;
        }

        @keyframes wordReveal {
            0% { opacity: 0; transform: translateY(20px) scale(0.96); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-subtitle {
            font-size: clamp(17px, 1.8vw, 22px);  /* 稍微增大字体 */
            color: var(--gray);
            font-weight: 400;
            letter-spacing: 0.01em;
            max-width: 600px;  /* 增加最大宽度，从 560px 到 600px */
            line-height: 1.6;  /* 稍微减小行高，从 1.7 到 1.6 */
            margin-top: 4px;  /* 增加顶部间距，从 2px 到 4px */
            margin-bottom: 8px;  /* 增加底部间距，从 4px 到 8px */
            opacity: 0;
            transform: translateY(16px);
            animation: fadeUp 0.8s ease 0.50s forwards;
        }
        .hero-subtitle span {
            color: var(--orange-dark);
            font-weight: 500;
        }

        .hero-desc {
            font-size: clamp(16px, 1.6vw, 18px);
            color: var(--gray);
            max-width: 580px;
            line-height: 1.75;
            opacity: 0;
            transform: translateY(16px);
            animation: fadeUp 0.8s ease 1.20s forwards;  /* Logo(0.1s) + Title(0.2-1.1s) 之后 */
        }
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 32px;
            justify-content: center;  /* 按钮组居中 */
            opacity: 0;
            transform: translateY(16px);
            animation: fadeUp 0.8s ease 1.35s forwards;  /* 描述之后 */
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--orange);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            min-width: 160px;  /* 设置最小宽度，确保两个按钮宽度一致 */
            padding: 14px 24px;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(255, 186, 130, 0.25);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(255, 186, 130, 0.35);
            background: var(--orange-dark);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: transparent;
            color: var(--deep);
            font-weight: 600;
            font-size: 15px;
            min-width: 160px;  /* 设置最小宽度，确保两个按钮宽度一致 */
            padding: 14px 24px;
            border-radius: 60px;
            border: 1.5px solid rgba(26, 43, 60, 0.08);
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-outline:hover {
            background: var(--bg);
            border-color: var(--deep);
            transform: translateY(-2px);
        }

        /* ============================================================
           功能预览墙 — 4列等宽，宽度固定
           ============================================================ */
        .hero-dashboard {
            width: 100%;
            max-width: 1100px;
            position: relative;
            padding: 24px;
            border-radius: 32px;
            transition: var(--transition);
            background: #f5f5f5;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: none;
            box-shadow:
                0 20px 60px rgba(26, 43, 60, 0.08),
                0 0 80px rgba(255, 186, 130, 0.04);
        }

        .hero-dashboard::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20%;
            right: 20%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 186, 130, 0.3), transparent);
            pointer-events: none;
        }

        /* 装饰性光球 - 增加灵动感 */
        .hero-dashboard::after {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 186, 130, 0.06) 0%, transparent 70%);
            top: -40px;
            right: 15%;
            pointer-events: none;
            animation: floatGlow 10s ease-in-out infinite;
        }

        @keyframes floatGlow {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
            50% { transform: translate(-20px, 15px) scale(1.1); opacity: 0.8; }
        }

        /* ===== Hero 左右布局 ===== */
        .hero-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;  /* 两端对齐，文案靠左，Cover Flow靠右 */
            gap: 50px;  /* 卡片尺寸调整后，适当减小间距 */
            min-height: 650px;
            width: 100%;
            overflow: visible;  /* 允许 Cover Flow 卡片溢出 */
        }
        
        .hero-content {
            flex: 2.7;
            max-width: none;
            display: flex;
            flex-direction: column;
            align-items: center;  /* 水平居中 */
            text-align: center;   /* 文本居中 */
            justify-content: space-between;  /* 垂直方向两端对齐 */
            padding: 0 20px;
            min-height: 500px;  /* 确保有足够高度进行两端对齐 */
        }
        
        /* Hero Brand Group (Logo + 名称 + 标签) - 作为一个整体 */
        .hero-brand-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;  /* Logo 行与标签行的间距 */
        }
        
        /* Hero Brand (Logo + 名称) */
        .hero-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0;
            transform: translateY(16px);
            animation: fadeUp 0.8s ease 0.1s forwards;
        }
        
        .hero-logo {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }
        
        /* 标签行容器 */
        .hero-tag-line {
            opacity: 0;
            transform: translateY(16px);
            animation: fadeUp 0.8s ease 0.15s forwards;  /* 比 Logo 稍晚一点 */
        }
        
        .hero-brand-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--deep);
            letter-spacing: 0.02em;
        }
        
        .hero-brand-tag {
            font-size: 13px;
            font-weight: 500;
            color: var(--orange-dark);
            background: var(--orange-light);
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.01em;
        }

        /* ===== Cover Flow 容器 ===== */
        .coverflow-container {
            flex: 2.3;  /* 从 2.5 增加到 3，给 Cover Flow 更多空间 */
            display: flex;
            align-items: center;
            justify-content: center;  /* 居中对齐 */
            perspective: 1200px;
            min-height: 520px;
            padding: 0 28px;  /* 与 .container 的 padding 保持一致 (28px) */
        }

        .coverflow {
            position: relative;
            width: 100%;
            height: 530px;  /* 从 480px 增加到 530px */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Cover Flow 卡片 */
        .cf-card {
            position: absolute;
            width: 240px;  /* 从 260px 减小到 240px */
            height: 480px;  /* 从 560px 减小到 480px，更合理的高度 */
            background: linear-gradient(135deg, #FFBA82, #FF9A5C);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        /* 中间激活的卡片 - 更大 */
        .cf-card.active {
            opacity: 1;
            transform: translateX(0) scale(1.1) rotateY(0deg);  /* scale 从 1 改为 1.1 */
            z-index: 10;
            width: 240px;  /* 激活时更宽，从 280px 减小到 240px */
            height: 520px;  /* 激活时更高，从 470px 增加到 520px */
        }

        /* 左侧卡片 - 更小且偏移更多 */
        .cf-card.left {
            opacity: 0.5;  /* 透明度更低 */
            transform: translateX(-180px) scale(0.75) rotateY(30deg);  /* translateX 从 -210px 减小到 -180px，因为卡片变窄了 */
            z-index: 5;
            width: 200px;  /* 从 240px 减小到 200px */
            height: 440px;  /* 从 410px 增加到 440px */
        }

        /* 右侧卡片 - 更小且偏移更多 */
        .cf-card.right {
            opacity: 0.5;  /* 透明度更低 */
            transform: translateX(180px) scale(0.75) rotateY(-30deg);  /* translateX 从 210px 减小到 180px，因为卡片变窄了 */
            z-index: 5;
            width: 200px;  /* 从 240px 减小到 200px */
            height: 440px;  /* 从 410px 增加到 440px */
        }

        /* 隐藏其他卡片 */
        .cf-card.hidden {
            opacity: 0;
            transform: translateX(0) scale(0.5);
            pointer-events: none;
            z-index: 0;
        }

        /* ===== 轻量级手机状态栏 - 所有卡片统一应用 ===== */
        .dash-card::before {
            content: none;
        }

        /* 状态栏容器 */
        .status-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3px 12px;
            background: #FFBA82;
            flex-shrink: 0;
            min-height: 16px;
            width: 100%;  /* 确保宽度占满 */
        }

        /* 左侧时间 */
        .status-time {
            font-size: 10px;
            font-weight: 600;
            color: var(--deep);
            letter-spacing: 1px;
        }

        /* 右侧图标组 */
        .status-icons {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .status-icon {
            width: 10px;
            height: 10px;
            color: var(--deep);
        }

        /* ===== Cover Flow 中的 Chat Card 特殊样式 ===== */
        .cf-chat-card {
            background: #f5f5f5 !important;  /* 覆盖默认的橙色渐变背景 */
            padding: 0 !important;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;  /* ✅ 顶部对齐 */
            overflow: hidden;
            width: 260px !important;  /* 与激活卡片宽度一致，从 280px 减小到 260px */
            height: 480px !important;  /* 与默认卡片高度一致，从 560px 减小到 480px */
        }

        /* 禁用 Chat Card 内部所有子元素的鼠标事件 */
        .cf-chat-card > * {
            pointer-events: none;
        }

        /* ===== Cover Flow 中的 Feed Card（心流圈）特殊样式 ===== */
        .cf-feed-card {
            background: #f5f5f5 !important;  /* 覆盖默认的橙色渐变背景 */
            padding: 0 !important;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;  /* ✅ 顶部对齐 */
            overflow: hidden;
            width: 260px !important;  /* 与激活卡片宽度一致，从 280px 减小到 260px */
            height: 480px !important;  /* 与默认卡片高度一致，从 560px 减小到 480px */
        }

        /* 禁用 Feed Card 内部所有子元素的鼠标事件 */
        .cf-feed-card > * {
            pointer-events: none;
        }

        /* cf-feed-card 的状态栏样式 */
        .cf-feed-card .status-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3px 12px;
            background: #FFBA82;
            flex-shrink: 0;
            min-height: 16px;
            width: 100%;
            margin: 0;  /* 移除默认 margin */
            border: none;  /* 移除默认 border */
            position: relative;
            z-index: 1;
        }

        /* cf-feed-card 的 feed-header 样式 */
        .cf-feed-card .feed-header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px 20px;
            background: #FFBA82;
            border-bottom: none;
            flex-shrink: 0;
            width: 100%;
            margin-top: -1px;  /* 向上偏移 1px 消除缝隙 */
            position: relative;
            z-index: 1;
        }

        .cf-feed-card .status-time {
            font-size: 10px;
            font-weight: 600;
            color: var(--deep);
            letter-spacing: 1px;
        }

        .cf-feed-card .status-icons {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cf-feed-card .status-icon {
            width: 10px;
            height: 10px;
            color: var(--deep);
        }

        /* ===== Cover Flow 中的 Action Card（行动）特殊样式 ===== */
        .cf-action-card {
            background: #f5f5f5 !important;
            padding: 0 !important;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;  /* ✅ 顶部对齐 */
            overflow: hidden;
            width: 260px !important;  /* 与激活卡片宽度一致，从 280px 减小到 260px */
            height: 480px !important;  /* 与默认卡片高度一致，从 560px 减小到 480px */
        }

        /* 禁用 Action Card 内部所有子元素的鼠标事件 */
        .cf-action-card > * {
            pointer-events: none;
        }

        /* cf-action-card 的状态栏样式 */
        .cf-action-card .status-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3px 12px;
            background: #FFBA82;
            flex-shrink: 0;
            min-height: 16px;
            width: 100%;
            margin: 0;  /* 移除默认 margin */
            border: none;  /* 移除默认 border */
            position: relative;
            z-index: 1;
        }

        .cf-action-card .status-time {
            font-size: 10px;
            font-weight: 600;
            color: var(--deep);
            letter-spacing: 1px;
        }

        .cf-action-card .status-icons {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cf-action-card .status-icon {
            width: 10px;
            height: 10px;
            color: var(--deep);
        }

        /* cf-action-card 的 header 样式 */
        .cf-action-card .header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px 20px;
            background: #FFBA82;
            border-bottom: none;
            flex-shrink: 0;
            width: 100%;
            margin-top: -1px;  /* 向上偏移 1px 消除缝隙 */
        }

        .cf-action-card .header .title {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }

        /* cf-action-card 的 Tab 样式 */
        .cf-action-card .action-tabs {
            display: flex;
            gap: 0;
            padding: 3px 0 0;  /* 移除左右内边距，让 Tab 平铺 */
            background: transparent;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            flex-shrink: 0;
            width: 100%;
        }

        .cf-action-card .action-tab {
            flex: 1;
            padding: 4px 0;
            font-size: 11px;
            font-weight: 500;
            color: var(--gray);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            position: relative;
        }

        .cf-action-card .action-tab.active {
            color: var(--orange-dark);
            font-weight: 600;
            border-bottom-color: var(--orange-dark);
        }

        .cf-action-card .action-tab:hover:not(.active) {
            color: var(--deep);
            background: rgba(255, 186, 130, 0.05);
        }

        /* ===== Cover Flow 中的 Wish Card（心愿）特殊样式 ===== */
        .cf-wish-card {
            background: #f5f5f5 !important;
            padding: 0 !important;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;  /* ✅ 顶部对齐，而不是居中 */
            overflow: hidden;
            width: 260px !important;  /* 与激活卡片宽度一致，从 280px 减小到 260px */
            height: 480px !important;  /* 与默认卡片高度一致，从 560px 减小到 480px */
        }

        /* 禁用 Wish Card 内部所有子元素的鼠标事件 */
        .cf-wish-card > * {
            pointer-events: none;
        }

        /* cf-wish-card 的状态栏样式 */
        .cf-wish-card .status-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3px 12px;
            background: #FFBA82;
            flex-shrink: 0;
            min-height: 16px;
            width: 100%;
            margin: 0;  /* 移除默认 margin */
            border: none;  /* 移除默认 border */
            position: relative;
            z-index: 1;
        }

        .cf-wish-card .status-time {
            font-size: 10px;
            font-weight: 600;
            color: var(--deep);
            letter-spacing: 1px;
        }

        .cf-wish-card .status-icons {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cf-wish-card .status-icon {
            width: 10px;
            height: 10px;
            color: var(--deep);
        }

        /* cf-wish-card 的 header 样式 */
        .cf-wish-card .header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px 20px;
            background: #FFBA82;
            border-bottom: none;
            flex-shrink: 0;
            width: 100%;
            margin-top: -1px;  /* 向上偏移 1px 消除缝隙 */
        }

        .cf-wish-card .header .title {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }

        /* ===== Cover Flow 中的 Guardian Card（守护机制）特殊样式 ===== */
        .cf-guardian-card {
            background: #f5f5f5 !important;
            padding: 0 !important;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;  /* ✅ 顶部对齐 */
            overflow: hidden;
            width: 260px !important;  /* 与激活卡片宽度一致，从 280px 减小到 260px */
            height: 480px !important;  /* 与默认卡片高度一致，从 560px 减小到 480px */
        }

        /* 禁用 Guardian Card 内部所有子元素的鼠标事件 */
        .cf-guardian-card > * {
            pointer-events: none;
        }

        /* cf-guardian-card 的状态栏样式 */
        .cf-guardian-card .status-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3px 12px;
            background: #FFBA82;
            flex-shrink: 0;
            min-height: 16px;
            width: 100%;
            margin: 0;  /* 移除默认 margin */
            border: none;  /* 移除默认 border */
            position: relative;
            z-index: 1;
        }

        .cf-guardian-card .status-time {
            font-size: 10px;
            font-weight: 600;
            color: var(--deep);
            letter-spacing: 1px;
        }

        .cf-guardian-card .status-icons {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cf-guardian-card .status-icon {
            width: 10px;
            height: 10px;
            color: var(--deep);
        }

        /* cf-guardian-card 的 header 样式 */
        .cf-guardian-card .header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px 20px;
            background: #FFBA82;
            border-bottom: none;
            flex-shrink: 0;
            width: 100%;
            margin-top: -1px;  /* 向上偏移 1px 消除缝隙 */
        }

        .cf-guardian-card .header .title {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }

        /* 强制 cf-chat-card 内部所有元素宽度约束 */
        .cf-chat-card > * {
            max-width: 100%;
            width: 100%;
        }

        /* status-bar 样式 - 确保宽度一致 */
        .cf-chat-card .status-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3px 12px;
            background: #FFBA82;
            flex-shrink: 0;
            min-height: 16px;
            width: 100%;
            margin: 0;  /* 移除默认 margin */
            border: none;  /* 移除默认 border */
            position: relative;
            z-index: 1;
        }

        .cf-chat-card .status-time {
            font-size: 10px;
            font-weight: 600;
            color: var(--deep);
            letter-spacing: 1px;
        }

        .cf-chat-card .status-icons {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cf-chat-card .status-icon {
            width: 10px;
            height: 10px;
            color: var(--deep);
        }

        /* chat-header 样式 */
        .cf-chat-card .chat-header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px 20px;
            background: #FFBA82;
            border-bottom: none;
            flex-shrink: 0;
            width: 100%;
            margin-top: -1px;  /* 向上偏移 1px 消除缝隙 */
        }

        .cf-chat-card .chat-header .title {
            font-size: 12px;
            font-weight: 500;
            color: var(--white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }

        /* scene-tag 样式 */
        .cf-chat-card .scene-tag {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 2px 0;
            font-size: 10px;
            font-weight: 500;
            color: var(--deep);
            background: rgba(255, 186, 130, 0.15);
            border-bottom: none;
            flex-shrink: 0;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            width: 100%;
        }

        .cf-chat-card .scene-tag .dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--orange);
            display: inline-block;
        }

        /* chat-messages 容器 */
        .cf-chat-card .chat-messages {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;  /* 减小消息间距，从 8px 改为 6px */
            padding: 8px 12px 12px;  /* 减小内边距，留出更多空间给消息 */
            overflow-y: auto;
            overflow-x: hidden;
            background: #f5f5f5;
            min-height: 0;  /* 关键：允许 flex 子元素缩小 */
            width: 100%;
        }

        /* 自定义滚动条样式 */
        .cf-chat-card .chat-messages::-webkit-scrollbar {
            width: 4px;
        }

        .cf-chat-card .chat-messages::-webkit-scrollbar-track {
            background: transparent;
        }

        .cf-chat-card .chat-messages::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.15);
            border-radius: 4px;
        }

        .cf-chat-card .chat-messages::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.25);
        }

        .cf-chat-card .chat-msg {
            display: flex;
            gap: 8px;
            align-items: flex-start;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            max-width: 100%;
            flex-shrink: 0;
            min-width: 0;
            width: 100%;
        }

        .cf-chat-card .chat-msg.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .cf-chat-card .chat-msg.user {
            flex-direction: row-reverse;
            transform: translateX(6px);
        }

        .cf-chat-card .chat-msg.user.visible {
            transform: translateX(0);
        }

        .cf-chat-card .chat-msg .avatar-img {
            width: 24px;  /* 减小头像尺寸，从 28px 改为 24px */
            height: 24px;
            border-radius: 50%;
            flex-shrink: 0;
            object-fit: cover;
            background: var(--gray-light);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            margin-top: 2px;
        }

        .cf-chat-card .chat-msg .bubble {
            max-width: 82%;
            min-width: 0;
            width: auto;
            padding: 6px 10px;  /* 减小内边距，从 8px 14px 改为 6px 10px */
            border-radius: 16px;
            font-size: 11.5px;  /* 优化字体大小，从 12px 改为 11.5px，视觉更舒适 */
            line-height: 1.6;  /* 增加行高，提升可读性 */
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
            position: relative;
            word-break: break-word;
            overflow-wrap: break-word;
            text-align: left;
            background: #FFFFFF;
            color: var(--deep);
            border: 1px solid rgba(0, 0, 0, 0.04);
            flex-shrink: 1;
        }

        .cf-chat-card .chat-msg.user .bubble {
            background: #FFBA82;
            color: #FFFFFF;
        }

        .cf-chat-card .chat-msg .bubble .msg-time {
            display: block;
            font-size: 9px;  /* 减小时间字体，从 10px 改为 9px */
            opacity: 0.55;
            margin-bottom: 2px;  /* 减小间距 */
            color: inherit;
            line-height: 1.2;
            font-weight: 400;
            letter-spacing: 0.02em;
            text-align: left;
        }

        .cf-chat-card .chat-msg.user .bubble .msg-time {
            color: rgba(255, 255, 255, 0.7);
        }

        .cf-chat-card .chat-msg:not(.user) .bubble .msg-time {
            color: var(--gray);
        }

        .cf-chat-card .chat-msg .bubble .msg-text {
            display: block;
            text-align: left;
            word-wrap: break-word;
            overflow-wrap: break-word;
            font-size: 11.5px;  /* 优化字体大小，从 13px 改为 11.5px，视觉更舒适 */
            line-height: 1.6;  /* 增加行高，提升可读性 */
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        /* AI 消息文本强调 */
        .cf-chat-card .chat-msg:not(.user) .bubble .msg-text strong,
        .cf-chat-card .chat-msg:not(.user) .bubble .msg-text .highlight {
            color: #FF8C42;
            font-weight: 600;
        }

        /* 用户消息文本强调 */
        .cf-chat-card .chat-msg.user .bubble .msg-text strong,
        .cf-chat-card .chat-msg.user .bubble .msg-text .highlight {
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
        }

        /* ===== 卡片式消息样式 ===== */
        .cf-chat-card .card-bubble.compact {
            padding: 0;
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }

        .cf-chat-card .card-bubble.compact .card-header {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
            margin-bottom: 4px;
            padding: 0;
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }

        .cf-chat-card .card-bubble.compact .card-header .emoji {
            font-size: 15px;
            flex-shrink: 0;
        }

        .cf-chat-card .card-bubble.compact .card-header .tag {
            font-size: 9px;
            font-weight: 500;
            color: var(--orange-dark);
            background: var(--orange-light);
            padding: 0 10px;
            border-radius: 30px;
            margin-left: auto;
            line-height: 18px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .cf-chat-card .card-bubble.compact .card-header .name-text {
            overflow: hidden;
            word-break: break-word;
            flex: 1;
            min-width: 0;
            max-width: 100%;
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 0;
            border-bottom: 1px solid var(--gray-light);
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact .icon {
            font-size: 14px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact .info {
            flex: 1;
            min-width: 0;
            max-width: 100%;
            overflow: hidden;
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact .info .name {
            font-size: 12px;
            font-weight: 500;
            color: var(--deep);
            word-break: break-word;
            display: block;
            max-width: 100%;
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact .info .progress-track {
            height: 3px;
            background: var(--gray-light);
            border-radius: 4px;
            margin-top: 2px;
            overflow: hidden;
            width: 45px;
            max-width: 45px;
            flex-shrink: 0;
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact .info .progress-track .fill {
            height: 100%;
            border-radius: 4px;
            background: var(--orange);
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact .freq-tag {
            font-size: 9px;
            color: var(--gray);
            background: var(--gray-light);
            padding: 1px 8px;
            border-radius: 30px;
            flex-shrink: 0;
            line-height: 16px;
            white-space: nowrap;
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact .guardian-avatars {
            display: flex;
            gap: 3px;
            flex-shrink: 0;
        }

        .cf-chat-card .card-bubble.compact .wish-row.compact .guardian-avatars .av {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--orange-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 7px;
            color: var(--orange-dark);
            font-weight: 600;
            line-height: 1;
            flex-shrink: 0;
        }

        .cf-chat-card .card-bubble.compact .action-list.compact {
            margin-top: 3px;
            padding-top: 3px;
            border-top: 1px solid var(--gray-light);
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }

        .cf-chat-card .card-bubble.compact .action-list.compact .label {
            font-size: 9px;
            font-weight: 600;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 0;
            display: block;
        }

        .cf-chat-card .card-bubble.compact .action-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 3px 0;
            font-size: 11px;
            color: var(--deep);
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }

        .cf-chat-card .card-bubble.compact .action-item .dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        .cf-chat-card .card-bubble.compact .action-item .name {
            flex: 1;
            word-break: break-word;
            min-width: 0;
            max-width: 100%;
        }

        .cf-chat-card .card-bubble.compact .action-item .meta {
            font-size: 9px;
            color: var(--gray);
            display: flex;
            gap: 4px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        /* 强制所有子元素不溢出 */
        .dash-card > * {
            max-width: 100%;
            overflow: hidden;
        }

        /* 卡片内部样式保持不变 - 仅移除动画延迟 */

        /* ===== 卡片 1: AI 搭子 — 聊天卡片 ===== */
        .dash-card.chat-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            width: 100%;
            min-width: 0;
            max-width: 100%;
            flex-shrink: 0;
        }

        .chat-card .chat-header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px 20px;
            background: #FFBA82;
            border-bottom: none;
            flex-shrink: 0;
            width: 100%;
            min-width: 0;
            max-width: 100%;
            position: relative;
        }
        .chat-card .chat-header .title {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
            min-width: 0;
            max-width: 100%;
        }

        .chat-card .scene-tag {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 2px 0;
            font-size: 10px;
            font-weight: 500;
            color: var(--deep);
            background: rgba(255, 186, 130, 0.15);
            border-bottom: none;
            flex-shrink: 0;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            width: 100%;
            min-width: 0;
            max-width: 100%;
        }
        .chat-card .scene-tag .dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--orange);
            display: inline-block;
        }

        /* 消息容器 — 宽度强制约束 + flex自适应高度 */
        .chat-messages {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 10px 20px 18px;
            overflow-y: auto;
            overflow-x: hidden;
            background: #f5f5f5;
            min-height: 0;
            width: 100%;
            min-width: 0;
            max-width: 100%;
            /* 防止内容撑开 */
            contain: layout style;
        }
        .chat-messages::-webkit-scrollbar {
            width: 3px;
        }
        .chat-messages::-webkit-scrollbar-track {
            background: transparent;
        }
        .chat-messages::-webkit-scrollbar-thumb {
            background: var(--gray-light);
            border-radius: 10px;
        }

        /* 每条消息强制约束宽度 */
        .chat-msg {
            display: flex;
            gap: 8px;
            align-items: flex-start;
            opacity: 0;
            transform: translateX(-6px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            max-width: 100%;
            flex-shrink: 0;
            min-width: 0;
            width: 100%;
        }
        .chat-msg.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .chat-msg.user {
            flex-direction: row-reverse;
            transform: translateX(6px);
        }
        .chat-msg.user.visible {
            transform: translateX(0);
        }

        .chat-msg .avatar-img {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            flex-shrink: 0;
            object-fit: cover;
            background: var(--gray-light);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            margin-top: 2px;
        }

        /* 气泡 - 宽度强制约束，word-break 确保长文本换行 */
        .chat-msg .bubble {
            max-width: 82%;
            min-width: 0;
            width: auto;
            padding: 8px 14px 8px 14px;
            border-radius: 16px;
            font-size: 13px;
            line-height: 1.5;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
            position: relative;
            word-break: break-word;
            overflow-wrap: break-word;
            text-align: left;
            background: #FFFFFF;
            color: var(--deep);
            border: 1px solid rgba(0, 0, 0, 0.04);
            flex-shrink: 1;
        }
        .chat-msg.user .bubble {
            background: #FFBA82;
            color: #FFFFFF;
        }

        .chat-msg .bubble .highlight {
            color: var(--orange-dark);
            font-weight: 500;
        }
        .chat-msg.user .bubble .highlight {
            color: rgba(255, 255, 255, 0.9);
        }

        .chat-msg:not(.user) .bubble .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background: var(--deep);
            margin-left: 2px;
            vertical-align: text-bottom;
            animation: cursorBlink 0.8s step-end infinite;
        }
        @keyframes cursorBlink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }

        .chat-msg .bubble .msg-time {
            display: block;
            font-size: 10px;
            opacity: 0.55;
            margin-bottom: 3px;
            color: inherit;
            line-height: 1.2;
            font-weight: 400;
            letter-spacing: 0.02em;
            text-align: left;
        }
        .chat-msg.user .bubble .msg-time {
            color: rgba(255, 255, 255, 0.7);
        }
        .chat-msg:not(.user) .bubble .msg-time {
            color: var(--gray);
        }

        .chat-msg .bubble .msg-text {
            display: block;
            text-align: left;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* ============================================================
           卡片气泡内部样式 — 所有元素强制不撑开父容器
           ============================================================ */
        .card-bubble.compact {
            padding: 0;
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }
        .card-bubble.compact .card-header {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
            margin-bottom: 4px;
            padding: 0;
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }
        .card-bubble.compact .card-header .emoji {
            font-size: 15px;
            flex-shrink: 0;
        }
        .card-bubble.compact .card-header .tag {
            font-size: 9px;
            font-weight: 500;
            color: var(--orange-dark);
            background: var(--orange-light);
            padding: 0 10px;
            border-radius: 30px;
            margin-left: auto;
            line-height: 18px;
            flex-shrink: 0;
            white-space: nowrap;
        }
        .card-bubble.compact .card-header .name-text {
            overflow: hidden;
            word-break: break-word;
            flex: 1;
            min-width: 0;
            max-width: 100%;
        }

        .card-bubble.compact .wish-row.compact {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 0;
            border-bottom: 1px solid var(--gray-light);
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }
        .card-bubble.compact .wish-row.compact .icon {
            font-size: 14px;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }
        .card-bubble.compact .wish-row.compact .info {
            flex: 1;
            min-width: 0;
            max-width: 100%;
            overflow: hidden;
        }
        .card-bubble.compact .wish-row.compact .info .name {
            font-size: 12px;
            font-weight: 500;
            color: var(--deep);
            word-break: break-word;
            display: block;
            max-width: 100%;
        }
        .card-bubble.compact .wish-row.compact .info .progress-track {
            height: 3px;
            background: var(--gray-light);
            border-radius: 4px;
            margin-top: 2px;
            overflow: hidden;
            width: 45px;
            max-width: 45px;
            flex-shrink: 0;
        }
        .card-bubble.compact .wish-row.compact .info .progress-track .fill {
            height: 100%;
            border-radius: 4px;
            background: var(--orange);
        }
        .card-bubble.compact .wish-row.compact .freq-tag {
            font-size: 9px;
            color: var(--gray);
            background: var(--gray-light);
            padding: 1px 8px;
            border-radius: 30px;
            flex-shrink: 0;
            line-height: 16px;
            white-space: nowrap;
        }
        .card-bubble.compact .wish-row.compact .guardian-avatars {
            display: flex;
            gap: 3px;
            flex-shrink: 0;
        }
        .card-bubble.compact .wish-row.compact .guardian-avatars .av {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--orange-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 7px;
            color: var(--orange-dark);
            font-weight: 600;
            line-height: 1;
            flex-shrink: 0;
        }

        .card-bubble.compact .action-list.compact {
            margin-top: 3px;
            padding-top: 3px;
            border-top: 1px solid var(--gray-light);
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }
        .card-bubble.compact .action-list.compact .label {
            font-size: 9px;
            font-weight: 600;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 0;
            display: block;
        }
        .card-bubble.compact .action-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 3px 0;
            font-size: 11px;
            color: var(--deep);
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }
        .card-bubble.compact .action-item .dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }
        .card-bubble.compact .action-item .name {
            flex: 1;
            word-break: break-word;
            min-width: 0;
            max-width: 100%;
        }
        .card-bubble.compact .action-item .meta {
            font-size: 9px;
            color: var(--gray);
            display: flex;
            gap: 4px;
            flex-shrink: 0;
            white-space: nowrap;
        }
        .card-bubble.compact .action-item.more-item {
            opacity: 0.5;
        }
        .card-bubble.compact .action-item.more-item .dot {
            background: var(--gray-light);
        }
        .card-bubble.compact .action-item.more-item .name {
            color: var(--gray);
            font-size: 10px;
        }

        /* ============================================================
           卡片 2: 心愿（第2列上行）
           ============================================================ */
        .wish-preview {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 10px;
            padding: 0 18px 8px;
            flex: 0 0 auto;  /* 从 flex: 1 改为自适应 */
            min-height: 0;
            max-width: 100%;
            width: 100%;
            overflow: visible;  /* 从 hidden 改为 visible */
        }
        .wish-item-preview {
            background-color: #fff;
            border-radius: 12px;
            padding: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
            min-width: 0;
            max-width: 100%;
            width: 100%;
            flex: 0 0 auto;  /* 从 flex: 1 改为自适应，根据内容决定高度 */
            display: flex;
            flex-direction: column;
            min-height: 0;
            overflow: visible;  /* 从 hidden 改为 visible */
        }

        .wish-item-preview:hover {
            background: rgba(255, 186, 130, 0.04);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }

        .wish-type-icon {
            width: 16px;
            height: 16px;
            margin-right: 3px;
            flex-shrink: 0;
            color: var(--orange-dark);
        }

        .wish-content {
            flex: 0 0 auto;  /* 从 flex: 1 改为自适应 */
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: visible;  /* 从 hidden 改为 visible */
        }

        /* 第一行：类型图标 + 名称 + 频率 + 进度 */
        .wish-header {
            display: flex;
            align-items: center;
            margin-bottom: 3px;
            min-height: 18px;
        }

        .wish-header-left {
            display: flex;
            align-items: center;
            gap: 3px;
            flex: 1;
            min-width: 0;
            overflow: hidden;
        }

        .wish-name {
            font-size: 12px;
            font-weight: 600;
            color: #222;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 70px;
        }

        .confirm-frequency {
            font-size: 9px;
            color: #666;
            background-color: #f5f5f5;
            padding: 1px 4px;
            border-radius: 5px;
            white-space: nowrap;
        }

        .progress-percent {
            font-size: 11px;
            font-weight: 500;
            color: #FF8C42;
            margin-left: auto;
            flex-shrink: 0;
        }

        /* 第二行：描述 */
        .wish-desc {
            font-size: 10px;
            color: #888;
            line-height: 1.3;
            margin-bottom: 4px;
            text-align: left;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 13px;
        }

        /* 第三行：进度条 */
        .progress-bar {
            height: 4px;
            background-color: #f0f0f0;
            border-radius: 2px;
            margin-bottom: 5px;
            overflow: hidden;
            min-height: 4px;
        }

        .progress-bar .progress-fill {
            height: 100%;
            background-color: #FFBA82;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        /* 第四行：底部信息 */
        .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 16px;
        }

        .footer-item {
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .footer-label {
            font-size: 9px;
            color: #666;
            display: inline-flex;      /* ✅ 让 span 也使用 flex 布局 */
            align-items: center;       /* ✅ 确保文字垂直居中 */
            line-height: 1;            /* ✅ 移除额外的行高 */
            vertical-align: middle;    /* ✅ 确保与其他元素垂直对齐 */
        }

        .share-icon {
            width: 12px;
            height: 12px;
            color: var(--gray);
        }

        .avatar-group {
            display: flex;
            gap: 3px;

        }

        .avatar-wrapper {
            position: relative;
            width: 18px;
            height: 18px;
        }

        .avatar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            display: block;
        }

        /* ============================================================
           卡片 3: 行动（第2列下行）
           ============================================================ */

        /* Tab 切换 */
        .action-tabs {
            display: flex;
            gap: 0;
            padding: 3px 18px 0;  /* 从 4px → 3px */
            background: transparent;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .action-tab {
            flex: 1;
            padding: 3px 0;  /* 从 4px → 3px */
            font-size: 10px;  /* 从 11px → 10px */
            font-weight: 500;
            color: var(--gray);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            position: relative;
        }

        .action-tab.active {
            color: var(--orange-dark);
            font-weight: 600;
            border-bottom-color: var(--orange-dark);
        }

        .action-tab:hover:not(.active) {
            color: var(--deep);
            background: rgba(255, 186, 130, 0.05);
        }

        .action-list-preview {
            display: flex;
            flex-direction: column;
            gap: 8px;  /* 从 6px 调整为 8px，增加项间距 */
            margin-top: 10px;
            padding: 0 18px 12px;
            flex: 1;
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }
        .action-item-preview {
            display: flex;
            align-items: center;
            gap: 10px;  /* 从 8px 调整为 10px，增加间距 */
            padding: 8px 10px;  /* 从 6px 10px 调整为 8px 10px，增加上下内边距 */
            border-radius: 12px;
            background: #fff;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid transparent;
            min-width: 0;
            max-width: 100%;
            width: 100%;
            position: relative;
            overflow: visible;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);  /* 保持轻微阴影 */
        }

        .action-item-preview::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .action-item-preview:hover {
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.06) 0%, rgba(255, 243, 232, 0.10) 100%);
            border-color: rgba(255, 186, 130, 0.20);
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(255, 186, 130, 0.08);
        }

        .action-item-preview:hover::before {
            transform: scaleY(1);
        }

        /* 左边选中的图标 */
        .action-check-icon {
            width: 17px;
            height: 17px;
            flex-shrink: 0;
            color: var(--orange-dark);  /* 保持橙色主题 */
            stroke-width: 2.5;  /* 增加描边宽度，更清晰 */
        }

        /* 右边内容区域 */
        .action-content {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;  /* 从 3px → 2px */
            overflow: visible;
        }

        /* 第一行：行动名、心愿类型、心愿名称 */
        .action-row-1 {
            display: flex;
            align-items: center;
            gap: 3px;  /* 从 4px → 3px */
            flex-wrap: nowrap;
            overflow: hidden;
        }

        .action-name {
            font-size: 11px;  /* 保持 11px，与 actionCard.vue 的 30rpx (约 15px) 比例一致 */
            font-weight: 600;  /* 从 600 保持不变 */
            color: #222;  /* 使用更深的黑色，参考 actionCard.vue */
            word-break: break-word;
            flex-shrink: 0;
            line-height: 1.4;  /* 添加行高 */
        }

        .action-wish {
            font-size: 9px;  /* 保持 9px */
            color: #888;  /* 从 #666 调整为 #888，参考 actionCard.vue */
            background-color: #f5f5f5;
            padding: 1px 4px;
            border-radius: 6px;
            white-space: nowrap;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 2px;
            line-height: 1.3;  /* 添加行高 */
        }

        .wish-icon {
            width: 10px;
            height: 10px;
            flex-shrink: 0;
        }

        .action-wish-name {
            font-size: 9px;  /* 从 10px → 9px */
            color: var(--gray);
            word-break: break-word;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            flex: 1;
            min-width: 0;
        }

        /* 第二行：日期、资源 */
        .action-row-2 {
            display: flex;
            align-items: center;
            gap: 2px;  /* 从 3px → 2px */
        }

        .action-meta-icon {
            width: 10px;  /* 从 11px → 10px */
            height: 10px;
            flex-shrink: 0;
            color: var(--gray);
        }

        .action-date {
            font-size: 9px;  /* 从 8px 调整为 9px，更易读 */
            color: #888;  /* 从 var(--gray) 调整为 #888，参考 actionCard.vue */
        }

        .action-resources {
            font-size: 9px;  /* 从 8px 调整为 9px，更易读 */
            color: #888;  /* 从 var(--gray) 调整为 #888，参考 actionCard.vue */
        }

        /* ============================================================
           卡片 4: 心流圈 — 轮播卡片（第3列，占2行）
           ============================================================ */
        .dash-card.feed-card {
            background: #f5f5f5;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: none;
            padding: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            width: 100%;
            min-width: 0;
            max-width: 100%;
            box-shadow:
                0 4px 24px rgba(26, 43, 60, 0.04),
                0 0 40px rgba(255, 186, 130, 0.04);
        }
        .dash-card.feed-card:hover {
            box-shadow:
                0 12px 48px rgba(26, 43, 60, 0.08),
                0 4px 12px rgba(255, 186, 130, 0.08),
                0 0 60px rgba(255, 186, 130, 0.08);
        }

        .feed-card .feed-header {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 20px;
            background: #FFBA82;
            border-bottom: none;
            flex-shrink: 0;
            width: 100%;
            min-width: 0;
            max-width: 100%;
            position: relative;
            z-index: 1;
            margin-top: -1px;  /* 向上偏移 1px 消除缝隙 */
        }

        /* Tab 切换 */
        .feed-tabs {
            display: flex;
            gap: 0;
            padding: 3px 0 0;  /* 移除左右内边距，让 Tab 平铺 */
            background: transparent;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            flex-shrink: 0;
            width: 100%;
        }

        .feed-tab {
            flex: 1;
            padding: 4px 0;
            font-size: 11px;
            font-weight: 500;
            color: var(--gray);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            position: relative;
        }

        .feed-tab.active {
            color: var(--orange-dark);
            font-weight: 600;
            border-bottom-color: var(--orange-dark);
        }

        .feed-tab:hover:not(.active) {
            color: var(--deep);
            background: rgba(255, 186, 130, 0.05);
        }

        .feed-card .feed-header .icon {
            width: 20px;
            height: 20px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.12) 0%, rgba(255, 243, 232, 0.15) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-dark);
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(255, 186, 130, 0.08);
        }
        .feed-card .feed-header .icon svg {
            width: 10px;
            height: 10px;
        }
        .feed-card .feed-header .title {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
            text-align: center;
            min-width: 0;
            max-width: 100%;
        }

        .feed-carousel {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: #f5f5f5;
            min-height: 0;
            max-height: calc(100% - 56px); /* 减去header高度 */
            width: 100%;
            min-width: 0;
            max-width: 100%;
            /* 防止内容撑开 */
            contain: layout style;
        }

        .feed-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 0;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            pointer-events: none;
            overflow-y: auto;  /* slide 本身可以滚动 */
            min-width: 0;
            max-width: 100%;
        }
        .feed-slide.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }
        .feed-slide::-webkit-scrollbar {
            width: 2px;
        }
        .feed-slide::-webkit-scrollbar-thumb {
            background: var(--gray-light);
            border-radius: 10px;
        }

        /* ===== 内容区域（自适应高度）===== */
        .slide-content-area {
            flex: 0 0 auto;  /* 从 flex: 3 改为自适应，不伸缩 */
            padding: 10px 14px;
            background: #fff;
            border-radius: 12px;
            margin: 10px 16px 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            overflow: visible;  /* 从 overflow-y: auto 改为 visible，让 slide 滚动 */
            min-height: 0;
        }
        .slide-content-area::-webkit-scrollbar {
            width: 2px;
        }
        .slide-content-area::-webkit-scrollbar-thumb {
            background: var(--gray-light);
            border-radius: 10px;
        }

        /* 第一行：头像 + 用户信息 + 类型 */
        .slide-header {
            display: flex;
            align-items: center;
            gap: 7px;  /* 从 8px 缩小 */
            margin-bottom: 8px;  /* 从 10px 缩小 */
        }
        .slide-avatar {
            width: 30px;  /* 从 32px 缩小 */
            height: 30px;  /* 从 32px 缩小 */
            border-radius: 50%;
            flex-shrink: 0;
            object-fit: cover;
            background: var(--gray-light);
        }
        .slide-user-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 0;
            flex-shrink: 0;
        }
        .slide-username {
            font-size: 11px;  /* 从 12px 缩小 */
            font-weight: 600;
            color: var(--deep);
            word-break: break-word;
        }
        .slide-time {
            font-size: 9px;  /* 从 10px 缩小 */
            color: var(--gray);
        }
        .slide-type-tag {
            font-size: 9px;
            font-weight: 600;
            color: var(--orange-dark);
            background: var(--orange-light);
            padding: 2px 7px;  /* 从 2px 8px 缩小 */
            border-radius: 10px;
            flex-shrink: 0;
            white-space: nowrap;
            margin-left: auto;
        }

        /* 第二行：内容文字 */
        .slide-text-content {
            margin-bottom: 8px;  /* 从 10px 缩小 */
            text-align: left;
        }
        .slide-main-text {
            font-size: 11px;  /* 从 12px 缩小 */
            color: var(--deep);
            line-height: 1.5;
            word-break: break-word;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .slide-main-text .highlight {
            color: var(--orange-dark);
            font-weight: 500;
        }

        /* 行内图标 */
        .inline-icon {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            color: var(--orange-dark);
        }

        .slide-detail-text {
            font-size: 10px;  /* 从 11px 缩小 */
            color: var(--gray);
            line-height: 1.4;
            margin-top: 3px;
            word-break: break-word;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        /* 第三行：图片网格 */
        .slide-image-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 8px;  /* 从 10px 缩小 */
            position: relative;
        }
        .slide-image-grid.cols-1 .slide-img {
            width: 100%;
            height: 110px;  /* 从 120px 缩小 */
            border-radius: 8px;
            object-fit: cover;
            background: var(--gray-light);
        }
        .slide-image-grid.cols-2 .slide-img {
            width: calc(50% - 3px);
            height: 70px;  /* 从 75px 缩小 */
            border-radius: 8px;
            object-fit: cover;
            background: var(--gray-light);
        }
        .slide-image-grid.cols-3 .slide-img {
            width: calc(33.33% - 4px);
            height: 60px;  /* 从 65px 缩小 */
            border-radius: 8px;
            object-fit: cover;
            background: var(--gray-light);
        }

        /* 第三行：资源列表 */
        .slide-resource-list {
            display: flex;
            flex-direction: column;
            gap: 5px;  /* 从 6px 缩小 */
            margin-bottom: 8px;  /* 从 10px 缩小 */
        }
        .resource-item {
            display: flex;
            align-items: center;
            gap: 7px;  /* 从 8px 缩小 */
            padding: 5px 9px;  /* 从 6px 10px 缩小 */
            background: #f5f5f5;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .resource-item:hover {
            background: rgba(255, 186, 130, 0.12);
        }
        .resource-item .resource-icon {
            width: 15px;  /* 从 16px 缩小 */
            height: 15px;  /* 从 16px 缩小 */
            flex-shrink: 0;
            color: var(--orange-dark);
        }
        .resource-item .resource-name {
            font-size: 10px;  /* 从 11px 缩小 */
            color: var(--deep);
            font-weight: 400;
            word-break: break-word;
            text-align: left;
            flex: 1;
            min-width: 0;
        }

        /* 第三行：活动信息 */
        .slide-event-info {
            display: flex;
            flex-direction: column;
            gap: 3px !important;  /* 从 4px 缩小 */
            margin-bottom: 7px;  /* 从 8px 缩小 */
        }
        .event-info-row {
            display: flex;
            align-items: center;
            gap: 4px;  /* 从 5px 缩小 */
            padding: 2px 0 !important;
            line-height: 1.35;
        }
        .event-icon {
            width: 13px;  /* 从 14px 缩小 */
            height: 13px;  /* 从 14px 缩小 */
            flex-shrink: 0;
            color: var(--orange-dark);
        }
        .event-label {
            font-size: 9px;  /* 从 10px 缩小 */
            color: var(--gray);
            flex-shrink: 0;
            white-space: nowrap;
        }
        .event-value {
            font-size: 10px;  /* 从 11px 缩小 */
            color: var(--deep);
            font-weight: 500;
            flex: 1;
            min-width: 0;
            word-break: break-word;
        }
        .event-value.event-online {
            color: var(--orange-dark);
            font-weight: 600;
        }

        /* 第四行：点赞数和评论数 */
        .slide-stats {
            display: flex;
            align-items: center;
            gap: 10px;  /* 从 12px 缩小 */
            padding-top: 5px;  /* 从 6px 缩小 */
            border-top: 1px solid rgba(0, 0, 0, 0.03);
        }
        .slide-stats .stat-item {
            display: flex;
            align-items: center;
            gap: 3px;
            flex-shrink: 0;
        }
        .slide-stats .stat-item .stat-icon {
            width: 12px;  /* 从 13px 缩小 */
            height: 12px;  /* 从 13px 缩小 */
            flex-shrink: 0;
            color: var(--orange-dark);
        }
        .slide-stats .stat-item .count {
            font-size: 9px;  /* 从 10px 缩小 */
            color: var(--gray);
        }

        /* ===== 互动区域（自适应高度）===== */
        .slide-interaction-area {
            flex: 0 0 auto;  /* 从 flex: 2 改为自适应，不伸缩 */
            display: flex;
            flex-direction: column;
            background: #fff;
            border-radius: 12px;  /* 四个角都圆角 */
            margin: 0 16px 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            overflow: visible;  /* 让 slide 滚动，不裁剪内容 */
            min-height: 0;
        }

        /* Tab 切换 */
        .slide-tabs {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 0;
            border-bottom: 1px solid var(--gray-light);
            flex-shrink: 0;
            background: #fff;
            border-radius: 12px 12px 0 0;  /* 上缘圆角 */
        }
        .slide-tab {
            flex: 1;
            padding: 8px 14px;  /* 从 10px 16px 缩小 */
            font-size: 11px;  /* 从 12px 缩小 */
            font-weight: 500;
            color: var(--gray);
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            background: transparent;
        }
        .slide-tab.active {
            color: var(--deep);
            font-weight: 600;
        }
        .slide-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: var(--orange);
            border-radius: 2px;
        }
        .slide-tab:hover {
            color: var(--deep);
            background: rgba(255, 186, 130, 0.03);
        }

        /* 评论列表 */
        .slide-comments-list {
            flex: 0 0 auto;  /* 从 flex: 1 改为自适应 */
            overflow: visible;  /* 从 overflow-y: auto 改为 visible，让 slide 滚动 */
            padding: 8px 14px;
            min-height: 0;
        }
        .slide-comments-list::-webkit-scrollbar {
            width: 2px;
        }
        .slide-comments-list::-webkit-scrollbar-thumb {
            background: var(--gray-light);
            border-radius: 10px;
        }

        .slide-comment-item {
            display: flex;
            gap: 7px;
            padding: 5px 0;  /* 从 7px 0 缩小到 5px 0 */
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }
        .slide-comment-item:last-child {
            border-bottom: none;
        }
        .slide-comment-item .comment-avatar {
            width: 22px;  /* 从 24px 缩小 */
            height: 22px;  /* 从 24px 缩小 */
            border-radius: 50%;
            flex-shrink: 0;
            object-fit: cover;
            background: var(--gray-light);
        }
        .slide-comment-item .comment-body {
            flex: 1;
            min-width: 0;
        }
        .slide-comment-item .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 2px;  /* 从 3px 缩小到 2px */
        }
        .slide-comment-item .comment-name {
            font-size: 10px;  /* 从 11px 缩小 */
            font-weight: 600;
            color: var(--deep);
        }
        .slide-comment-item .comment-time {
            font-size: 8px;  /* 从 9px 缩小 */
            color: var(--gray);
            flex-shrink: 0;
            margin-left: 6px;
        }
        .slide-comment-item .comment-text {
            font-size: 10px;  /* 从 11px 缩小 */
            color: var(--gray);
            line-height: 1.35;
            word-break: break-word;
            text-align: left;
        }

        /* ============================================================
           卡片 5: 守护机制（第4列，占2行）
           ============================================================ */
        .guardian-preview {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 0;
            padding: 12px;
            flex: 1;
            min-width: 0;
            max-width: 100%;
            width: 100%;
            overflow-y: auto;
        }
        .guardian-preview .guardian-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 10px;
            background: #fff;
            border-bottom: 1px solid rgba(26, 43, 60, 0.04);
            transition: all 0.3s ease;
            border-radius: var(--radius-sm);
            min-width: 0;
            max-width: 100%;
            width: 100%;
        }

        .guardian-preview .guardian-row:hover {
            background: rgba(255, 186, 130, 0.04);
            transform: translateX(4px);
        }

        .guardian-preview .guardian-row:last-child {
            border-bottom: none;
        }
        .guardian-preview .guardian-row .av {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--orange-light);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            color: var(--orange-dark);
        }
        .guardian-preview .guardian-row .info {
            flex: 1;
            font-size: 13px;
            color: var(--deep);
            min-width: 0;
            max-width: 100%;
            word-break: break-word;
        }
        .guardian-preview .guardian-row .info .sub {
            font-size: 11px;
            color: var(--gray);
        }
        .guardian-preview .guardian-row .status {
            font-size: 10px;
            font-weight: 600;
            color: var(--orange-dark);
            background: var(--orange-light);
            padding: 2px 12px;
            border-radius: 30px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        /* 通用头部 */
        .dash-card .header {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 20px;
            background: #FFBA82;
            border-bottom: none;
            flex-shrink: 0;
            min-width: 0;
            max-width: 100%;
            width: 100%;
            position: relative;
        }
        .dash-card .header .icon {
            width: 20px;
            height: 20px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.12) 0%, rgba(255, 243, 232, 0.15) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-dark);
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(255, 186, 130, 0.08);
        }
        .dash-card .header .icon svg {
            width: 10px;
            height: 10px;
        }
        .dash-card .header .title {
            font-size: 12px;
            font-weight: 600;
            color: var(--white);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            flex: 1;
            text-align: center;
            min-width: 0;
            max-width: 100%;
        }

        /* ===== 深度叙事区域 ===== */
        .narrative-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #fff9f0 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .narrative-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 186, 130, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .narrative-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        /* 反向布局 - 文案在左,视觉图在右 */
        .narrative-grid.reverse {
            grid-template-columns: 1.2fr 1fr;
        }
        
        .narrative-grid.reverse .narrative-visual {
            order: 2;  /* 视觉图排第二(右侧) */
        }
        
        .narrative-grid.reverse .narrative-content {
            order: 1;  /* 文案排第一(左侧) */
        }
        
        /* 左侧视觉图 - 交互式对话场景 */
        .narrative-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            min-height: 500px;
            width: 100%;
        }
        
        /* 对话场景墙容器 */
        .dialog-scene-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            width: 100%;
            max-width: 480px;
        }
        
        /* 单个场景卡片 */
        .scene-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-height: 200px;
        }
        
        .scene-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--orange) 0%, #ff9a56 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .scene-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(255, 186, 130, 0.2);
            border-color: rgba(255, 186, 130, 0.3);
        }
        
        .scene-card:hover::before {
            opacity: 1;
        }
        
        /* 场景标签 */
        .scene-label {
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;  /* 整体居中 */
            gap: 6px;
        }
        
        .scene-label svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }
        
        /* 场景插画 - 图片容器 */
        .scene-illustration {
            width: 100%;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;  /* 移除内边距,让图片填满 */
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.08) 0%, rgba(255, 232, 214, 0.08) 100%);
            border-radius: 12px;
            overflow: hidden;
        }
        
        .scene-illustration img {
            width: 100%;
            height: 100%;
            object-fit: cover;  /* 填充满容器,可能裁剪 */
            display: block;
            border-radius: 12px;  /* 图片也应用圆角 */
        }
        
        /* 话术容器 */
        .scene-quote-container {
            position: relative;
            min-height: 60px;
            overflow: hidden;
        }
        
        /* 单条话术 */
        .scene-quote {
            font-size: 13px;
            line-height: 1.6;
            color: var(--deep);  /* 文字保持深色 */
            padding: 10px 12px;
            border-radius: 12px;
            border-left: 4px solid currentColor;  /* 左边框继承父元素主题色 (加粗到4px更明显) */
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            opacity: 0;
            transform: translateY(100%);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);  /* 缓入缓出,0.8秒 */
        }
        
        .scene-quote.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .scene-quote.exit {
            opacity: 0;
            transform: translateY(-100%);
        }
        
        /* 不同场景的主题色 */
        .scene-card[data-scene="remember"] {
            color: #ff8c42;  /* 橙色 - 记住细节 */
        }
        .scene-card[data-scene="remember"] .scene-label {
            color: #ff8c42;
        }
        .scene-card[data-scene="remember"] .scene-illustration {
            background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(255, 200, 150, 0.08) 100%);
        }
        .scene-card[data-scene="remember"] .scene-illustration svg {
            color: #ff8c42;
        }
        .scene-card[data-scene="remember"] .scene-quote {
            background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(255, 200, 150, 0.1) 100%);
            border-left-color: #ff8c42;  /* 明确指定边框颜色 */
        }
        
        .scene-card[data-scene="care"] {
            color: #4a90e2;  /* 蓝色 - 主动关心 */
        }
        .scene-card[data-scene="care"] .scene-label {
            color: #4a90e2;
        }
        .scene-card[data-scene="care"] .scene-illustration {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(150, 200, 255, 0.08) 100%);
        }
        .scene-card[data-scene="care"] .scene-illustration svg {
            color: #4a90e2;
        }
        .scene-card[data-scene="care"] .scene-quote {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(150, 200, 255, 0.1) 100%);
            border-left-color: #4a90e2;  /* 明确指定边框颜色 */
        }
        
        .scene-card[data-scene="accept"] {
            color: #5cb85c;  /* 绿色 - 不评判 */
        }
        .scene-card[data-scene="accept"] .scene-label {
            color: #5cb85c;
        }
        .scene-card[data-scene="accept"] .scene-illustration {
            background: linear-gradient(135deg, rgba(92, 184, 92, 0.08) 0%, rgba(150, 220, 150, 0.08) 100%);
        }
        .scene-card[data-scene="accept"] .scene-illustration svg {
            color: #5cb85c;
        }
        .scene-card[data-scene="accept"] .scene-quote {
            background: linear-gradient(135deg, rgba(92, 184, 92, 0.1) 0%, rgba(150, 220, 150, 0.1) 100%);
            border-left-color: #5cb85c;  /* 明确指定边框颜色 */
        }
        
        .scene-card[data-scene="encourage"] {
            color: #9b59b6;  /* 紫色 - 温柔鼓励 */
        }
        .scene-card[data-scene="encourage"] .scene-label {
            color: #9b59b6;
        }
        .scene-card[data-scene="encourage"] .scene-illustration {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, rgba(200, 150, 220, 0.08) 100%);
        }
        .scene-card[data-scene="encourage"] .scene-illustration svg {
            color: #9b59b6;
        }
        .scene-card[data-scene="encourage"] .scene-quote {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(200, 150, 220, 0.1) 100%);
            border-left-color: #9b59b6;  /* 明确指定边框颜色 */
        }
        
        .scene-card[data-scene="remind"] {
            color: #e74c3c;  /* 红色 - 提醒重启 */
        }
        .scene-card[data-scene="remind"] .scene-label {
            color: #e74c3c;
        }
        .scene-card[data-scene="remind"] .scene-illustration {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(240, 150, 140, 0.08) 100%);
        }
        .scene-card[data-scene="remind"] .scene-illustration svg {
            color: #e74c3c;
        }

        /* ===== 守护机制场景卡片 - Flexbox双列瀑布流布局 ===== */
        .guardian-scene-wall {
            display: flex;
            gap: 16px;  /* 列间距 */
            width: 100%;
            max-width: 480px;
            height: 600px;  /* 固定高度 */
            overflow-y: auto;  /* 垂直滚动 */
        }
        
        /* 每一列容器 */
        .guardian-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;  /* 行间距 */
        }

        /* 单个守护场景卡片 */
        .guardian-scene-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: visible;  /* 允许内容溢出 */
            display: flex;
            flex-direction: column;
            gap: 10px;
            height: auto;  /* 高度自适应内容 */
            width: 100%;
            break-inside: avoid;  /* 防止卡片被列断开 */
            margin-bottom: 16px;  /* 卡片垂直间距 */
        }

        .guardian-scene-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--orange) 0%, #ff9a56 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .guardian-scene-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(255, 186, 130, 0.2);
            border-color: rgba(255, 186, 130, 0.3);
        }

        .guardian-scene-card:hover::before {
            opacity: 1;
        }

        /* 场景标签 */
        .guardian-scene-label {
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .guardian-scene-label svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        /* 场景内容区域 */
        .guardian-scene-content {
            width: 100%;
            height: auto;  /* 高度自适应内容 */
            display: flex;
            align-items: flex-start;  /* 顶部对齐 */
            justify-content: center;
            padding: 0;
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.08) 0%, rgba(255, 232, 214, 0.08) 100%);
            border-radius: 12px;
            overflow: visible;  /* 允许内容溢出 */
            position: relative;
        }

        /* 不同场景的主题色 */
        .guardian-scene-card[data-scene="confirm"] {
            color: #5cb85c;  /* 绿色 - 行动确认 */
        }
        .guardian-scene-card[data-scene="confirm"] .guardian-scene-label {
            color: #5cb85c;
        }
        .guardian-scene-card[data-scene="confirm"] .guardian-scene-content {
            background: linear-gradient(135deg, rgba(92, 184, 92, 0.08) 0%, rgba(150, 220, 150, 0.08) 100%);
        }

        .guardian-scene-card[data-scene="message"] {
            color: #4a90e2;  /* 蓝色 - 留言互动 */
        }
        .guardian-scene-card[data-scene="message"] .guardian-scene-label {
            color: #4a90e2;
        }
        .guardian-scene-card[data-scene="message"] .guardian-scene-content {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(150, 200, 255, 0.08) 100%);
        }

        .guardian-scene-card[data-scene="board"] {
            color: #ff8c42;  /* 橙色 - 守护看板 */
        }
        .guardian-scene-card[data-scene="board"] .guardian-scene-label {
            color: #ff8c42;
        }
        .guardian-scene-card[data-scene="board"] .guardian-scene-content {
            background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(255, 200, 150, 0.08) 100%);
        }

        .guardian-scene-card[data-scene="relationship"] {
            color: #9b59b6;  /* 紫色 - 双向关系 */
        }
        .guardian-scene-card[data-scene="relationship"] .guardian-scene-label {
            color: #9b59b6;
        }
        .guardian-scene-card[data-scene="relationship"] .guardian-scene-content {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.08) 0%, rgba(200, 150, 220, 0.08) 100%);
        }

        /* 行动确认气泡 */
        .guardian-confirm-bubble-mini {
            position: absolute;
            bottom: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 12px;
            padding: 12px 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 8px;
            border: 2px solid #5cb85c;
            animation: confirmAppear 0.6s ease-out;
            z-index: 2;
        }

        @keyframes confirmAppear {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(10px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .guardian-confirm-bubble-mini svg {
            width: 24px;
            height: 24px;
            color: #5cb85c;
            animation: checkBounce 2s ease-in-out infinite;
        }

        @keyframes checkBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .guardian-confirm-bubble-mini span {
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
        }

        /* 行动确认卡片 - 参考app内UI */
        .guardian-confirm-card {
            width: 100%;
            height: auto;  /* 高度自适应 */
            display: flex;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        .gc-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: #FFBA82;  /* 使用主题色橙色 */
            border-bottom: 1px solid rgba(255, 186, 130, 0.3);
            flex-shrink: 0;  /* 防止头部被压缩 */
        }

        .gc-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid #fff;  /* 白色边框 */
            flex-shrink: 0;
        }

        .gc-user-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);  /* 深色文字 */
            flex: 1;
        }

        .gc-status {
            font-size: 10px;
            color: #fff;  /* 白色文字 */
            background: rgba(255, 255, 255, 0.25);  /* 半透明白色背景 */
            padding: 2px 6px;
            border-radius: 8px;
            font-weight: 500;
            white-space: nowrap;
        }

        .gc-body {
            padding: 10px 12px;  /* 统一padding */
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .gc-action-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;  /* 防止行动行被压缩 */
        }

        .gc-action-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
        }

        .gc-completed-time {
            font-size: 10px;
            color: var(--gray);
        }

        .gc-completion-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .gc-note {
            font-size: 11px;
            line-height: 1.4;
            color: var(--deep);
            background: #f5f5f5;  /* 浅灰色背景 */
            padding: 6px 8px;
            border-radius: 6px;
            flex-shrink: 0;  /* 防止备注被压缩 */
        }

        .gc-images {
            display: flex;
            gap: 6px;
        }

        .gc-img {
            width: 100%;
            height: 80px;  /* 减小图片高度从100px到80px */
            border-radius: 8px;
            object-fit: cover;  /* 保持比例填充 */
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.15) 0%, rgba(255, 232, 214, 0.1) 100%);
        }

        .gc-actions {
            display: flex;
            gap: 6px;
            padding: 8px 12px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .gc-reject-btn,
        .gc-confirm-btn {
            flex: 1;
            padding: 6px 10px;
            border: none;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .gc-reject-btn {
            background: rgba(0, 0, 0, 0.05);
            color: var(--gray);
        }

        .gc-reject-btn:hover {
            background: rgba(0, 0, 0, 0.08);
        }

        .gc-confirm-btn {
            background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%);  /* 绿色确认按钮 */
            color: #fff;
            box-shadow: 0 2px 6px rgba(92, 184, 92, 0.3);
        }

        .gc-confirm-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(92, 184, 92, 0.4);
        }

        /* 留言对话气泡 */
        .guardian-message-bubble {
            position: absolute;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 12px;
            padding: 10px 14px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
            max-width: 75%;
            animation: messageSlide 0.5s ease-out;
        }

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

        .guardian-message-bubble.left {
            left: 12px;
            top: 30%;
        }

        .guardian-message-bubble.right {
            right: 12px;
            bottom: 25%;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(150, 200, 255, 0.1) 100%);
        }

        .guardian-message-bubble .msg-text {
            font-size: 13px;
            line-height: 1.5;
            color: var(--deep);
        }

        .guardian-message-bubble .msg-time {
            font-size: 11px;
            color: var(--gray);
            margin-top: 4px;
        }

        /* 留言互动卡片 - 行动 + 评论区 */
        .guardian-comment-card {
            width: 100%;
            height: auto;  /* 高度自适应 */
            display: flex;
            flex-direction: column;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        }

        .gcc-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(150, 200, 255, 0.05) 100%);
            border-bottom: 1px solid rgba(74, 144, 226, 0.15);
        }

        .gcc-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid #4a90e2;
            flex-shrink: 0;
        }

        .gcc-user-info {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .gcc-user-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--deep);
        }

        .gcc-action-tag {
            font-size: 11px;
            color: #4a90e2;
            background: rgba(74, 144, 226, 0.1);
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 500;
        }

        .gcc-content {
            padding: 12px 14px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .gcc-text {
            font-size: 13px;
            line-height: 1.5;
            color: var(--deep);
        }

        .gcc-image-placeholder {
            width: 100%;
            height: 80px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(150, 200, 255, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gcc-image-placeholder.reading::before {
            content: '📚';
            font-size: 32px;
        }

        .gcc-comments {
            flex: 1;
            padding: 10px 14px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            overflow-y: auto;
        }

        .gcc-comment-item {
            display: flex;
            gap: 8px;
            animation: commentSlideIn 0.4s ease-out;
        }

        @keyframes commentSlideIn {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .gcc-comment-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .gcc-comment-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .gcc-comment-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--deep);
        }

        .gcc-comment-text {
            font-size: 12px;
            line-height: 1.4;
            color: var(--gray);
            margin: 0;
        }

        /* 守护看板列表 */
        .guardian-board-list {
            width: 100%;
            padding: 12px;
        }

        .board-item {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            padding: 10px 12px;
            margin-bottom: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 8px;
            animation: itemSlideIn 0.4s ease-out;
            animation-delay: var(--delay, 0s);
        }

        @keyframes itemSlideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .board-item .status-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .board-item .status-icon.pending {
            background: rgba(255, 140, 66, 0.2);
            color: #ff8c42;
        }

        .board-item .status-icon.confirmed {
            background: rgba(92, 184, 92, 0.2);
            color: #5cb85c;
        }

        .board-item .item-text {
            font-size: 13px;
            color: var(--deep);
            flex: 1;
        }

        .board-item .item-meta {
            font-size: 11px;
            color: var(--gray);
        }

        /* 双向关系图 */
        .relationship-diagram {
            width: 100%;
            height: auto;  /* 高度自适应,不再填充父容器 */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: 120px;  /* 最小高度保证视觉效果 */
        }

        .relationship-center {
            position: absolute;
            text-align: center;
            z-index: 2;
        }

        .relationship-center img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 3px solid var(--orange);
            box-shadow: 0 4px 16px rgba(255, 186, 130, 0.3);
        }

        .relationship-center span {
            display: block;
            margin-top: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
        }

        .relationship-node {
            position: absolute;
            text-align: center;
            animation: nodeFloat 3s ease-in-out infinite;
            animation-delay: var(--delay, 0s);
            z-index: 1;
        }

        @keyframes nodeFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .relationship-node img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .relationship-node span {
            display: block;
            margin-top: 4px;
            font-size: 11px;
            color: var(--gray);
            font-weight: 500;
        }

        .relationship-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, rgba(255, 186, 130, 0.6) 0%, transparent 100%);
            transform-origin: left center;
        }
        .scene-card[data-scene="remind"] .scene-quote {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(240, 150, 140, 0.1) 100%);
            border-left-color: #e74c3c;  /* 明确指定边框颜色 */
        }

        
        .narrative-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 320px;
        }
        
        .narrative-phone-mockup {
            background: var(--white);
            border-radius: 40px;
            padding: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .narrative-phone-mockup::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 6px;
            background: #e0e0e0;
            border-radius: 3px;
        }
        
        .phone-screen {
            background: #f5f5f5;
            border-radius: 24px;
            padding: 40px 16px 20px;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .chat-bubble {
            max-width: 85%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 13px;
            line-height: 1.6;
            animation: bubbleFadeIn 0.6s ease-out;
        }
        
        .chat-bubble.ai {
            background: #fff;
            color: var(--deep);
            align-self: flex-start;
            border-bottom-left-radius: 6px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
        
        .chat-bubble.user {
            background: var(--orange);
            color: #fff;
            align-self: flex-end;
            border-bottom-right-radius: 6px;
        }
        
        @keyframes bubbleFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 右侧内容 */
        .narrative-content {
            max-width: 580px;
        }
        
        .narrative-header {
            margin-bottom: 32px;
            text-align: center;  /* 整体居中 */
        }
        
        .narrative-title {
            font-size: clamp(28px, 3.5vw, 36px);
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.01em;
            color: var(--deep);
            margin: 0 0 12px 0;  /* 标题在下有间距 */
        }
        
        .section-label {
            display: inline-flex;  /* 行内块,居中显示 */
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #6b7280;
            font-weight: 500;
        }
        
        .narrative-body {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 价值卡片 */
        .value-card {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 186, 130, 0.1);
        }
        
        .value-card:hover {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 4px 16px rgba(255, 186, 130, 0.1);
            transform: translateX(4px);
        }
        
        .value-icon {
            font-size: 28px;
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.1) 0%, rgba(255, 232, 214, 0.1) 100%);
            border-radius: 12px;
        }
        
        .value-content {
            flex: 1;
        }
        
        .value-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--deep);
            margin: 0 0 8px 0;
        }
        
        .value-desc {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.7;
            margin: 0;
        }
        
        .narrative-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 186, 130, 0.3) 50%, transparent 100%);
            margin: 12px 0;
        }
        
        /* CTA 区域 */
        .narrative-cta {
            padding: 20px;
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.08) 0%, rgba(255, 232, 214, 0.08) 100%);
            border-radius: 16px;
            border-left: 4px solid var(--orange);
        }
        
        .cta-text {
            font-size: 15px;
            color: var(--deep);
            line-height: 1.8;
            margin: 0;
            font-weight: 500;
        }
        
        .cta-text .highlight {
            color: var(--orange);
            font-weight: 700;
        }
            font-weight: 400;
            letter-spacing: 0.01em;
        }
        
        .narrative-emphasis {
            background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
            border-left: 3px solid var(--orange);
            padding: 18px 20px;
            margin: 8px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .narrative-emphasis .narrative-line {
            color: var(--deep);
            font-weight: 500;
        }
        
        .narrative-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 186, 130, 0.3), transparent);
            margin: 12px 0;
        }
        
        .narrative-highlight {
            background: linear-gradient(135deg, #fff5e6 0%, #ffe8d6 100%);
            padding: 20px 24px;
            border-radius: 12px;
            margin: 12px 0;
            box-shadow: 0 2px 12px rgba(255, 186, 130, 0.08);
        }
        
        .narrative-highlight .narrative-line {
            color: var(--orange-dark);
            font-weight: 600;
            line-height: 1.9;
        }

        /* ===== 对话示例区域 ===== */
        .dialog-examples-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #fff9f0 100%);
            position: relative;
        }
        
        .dialog-header {
            text-align: center;
            margin-bottom: 56px;
        }
        
        .dialog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        
        .dialog-scene-card {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        
        .dialog-scene-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        
        .scene-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
            border-radius: 40px;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--orange-dark);
        }
        
        .scene-badge svg {
            width: 18px;
            height: 18px;
        }
        
        .scene-badge-warm {
            background: linear-gradient(135deg, #fff5e6 0%, #ffe8d6 100%);
            color: #d35400;
        }
        
        .scene-badge-encourage {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            color: #2e7d32;
        }
        
        .scene-badge-gentle {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            color: #1565c0;
        }
        
        .dialog-messages {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .message-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            animation: messageFadeIn 0.5s ease-out;
        }
        
        @keyframes messageFadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .message-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .message-bubble {
            flex: 1;
            padding: 12px 16px;
            background: #f8f9fa;
            border-radius: 16px;
            border-bottom-left-radius: 4px;
            font-size: 14px;
            line-height: 1.7;
            color: var(--deep);
            position: relative;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        
        .message-bubble::before {
            content: '"';
            position: absolute;
            top: -8px;
            left: 12px;
            font-size: 32px;
            color: var(--orange);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .message-bubble-warm {
            background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
            border-left: 3px solid var(--orange);
        }
        
        .message-bubble-encourage {
            background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
            border-left: 3px solid #4caf50;
        }
        
        .message-bubble-gentle {
            background: linear-gradient(135deg, #e3f2fd 0%, #e8eaf6 100%);
            border-left: 3px solid #2196f3;
        }

        /* ===== 便当盒、展示、CTA ===== */
        .bento-section {
            padding: 100px 0 120px;
            background: var(--white);
            position: relative;
        }
        
        /* 便当盒与深度叙事区的视觉分隔 */
        .bento-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 186, 130, 0.4) 20%, rgba(255, 186, 130, 0.4) 80%, transparent 100%);
        }
        
        .bento-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 186, 130, 0.3) 20%, rgba(255, 186, 130, 0.3) 80%, transparent 100%);
        }
        .bento-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .bento-header .section-sub { margin: 0 auto; }
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--orange-dark);
            background: var(--orange-light);
            padding: 6px 16px;
            border-radius: 40px;
            margin-bottom: 16px;
        }
        .section-label .dot {
            width: 5px;
            height: 5px;
            background: var(--orange-dark);
            border-radius: 50%;
            display: inline-block;
        }
        .section-title {
            font-size: clamp(32px, 4.8vw, 48px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--deep);
            margin-bottom: 14px;
        }
        .section-sub {
            font-size: clamp(17px, 2vw, 20px);
            color: var(--gray);
            max-width: 560px;
            line-height: 1.7;
        }
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .bento-item {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 28px 24px;
            transition: var(--transition);
            border: 1px solid rgba(26, 43, 60, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .bento-item:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 186, 130, 0.10);
            box-shadow: var(--shadow-hover);
        }
        
        /* 卡片头部：图标+标题一行 */
        .bento-card-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 12px;
            width: 100%;
        }
        
        .bento-item .icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: var(--orange-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--orange-dark);
            flex-shrink: 0;
        }
        .bento-item .icon-wrap svg { width: 20px; height: 20px; }
        
        .bento-item h3 {
            font-size: 17px;
            font-weight: 700;
            margin: 0;
            flex: 1;
        }
        
        .bento-item p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.7;
            margin: 0;
            width: 100%;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .bento-item.span-2 { grid-column: span 2; }
        .bento-item.accent {
            background: var(--deep);
            color: #fff;
        }
        .bento-item.accent p { color: rgba(255, 255, 255, 0.6); }
        .bento-item.accent .icon-wrap {
            background: rgba(255, 255, 255, 0.08);
            color: var(--orange);
        }
        .bento-item.accent h3 { color: #fff; }
        .bento-item .stat-row {
            display: flex;
            gap: 24px;
            margin-top: 16px;
            justify-content: center;
            width: 100%;
        }
        .bento-item .stat-row .stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        .bento-item .stat-row .stat .num { font-size: 22px; font-weight: 700; }
        .bento-item .stat-row .stat .label { font-size: 12px; color: var(--gray); }
        .bento-item.accent .stat-row .stat .num { color: #fff; }
        .bento-item.accent .stat-row .stat .label { color: rgba(255, 255, 255, 0.5); }

        .showcase {
            padding: 100px 0;
        }
        .showcase-alt {
            background: var(--bg);
        }
        .showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }
        .showcase-grid.reverse { direction: rtl; }
        .showcase-grid.reverse>* { direction: ltr; }
        .showcase-content h2 {
            font-size: clamp(28px, 3.2vw, 38px);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 14px;
        }
        .showcase-content p {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 18px;
        }
        .showcase-content ul {
            list-style: none;
            padding: 0;
        }
        .showcase-content ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            padding: 5px 0;
        }
        .showcase-content ul li::before {
            content: '✦';
            color: var(--orange-dark);
            font-weight: 700;
            font-size: 16px;
            line-height: 1.4;
        }
        .showcase-visual .mock-box {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }
        .mock-box .row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--gray-light);
        }
        .mock-box .row:last-child { border-bottom: none; }
        .mock-box .row .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }
        .mock-box .row .dot.gray { background: var(--gray-light); }
        .mock-box .row .label {
            flex: 1;
            font-weight: 500;
            font-size: 14px;
        }
        .mock-box .row .value { font-size: 14px; color: var(--gray); }
        .mock-box .row .pill {
            background: var(--orange-light);
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            color: var(--orange-dark);
        }

        .cta-section {
            padding: 120px 0;
            background: var(--deep);
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 186, 130, 0.06) 0%, transparent 70%);
            pointer-events: none;
            border-radius: 50%;
        }
        .cta-section h2 {
            font-size: clamp(34px, 4.5vw, 48px);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }
        .cta-section p {
            font-size: 17px;
            opacity: 0.6;
            max-width: 480px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }
        .cta-section .btn-primary {
            background: var(--orange);
            color: #fff;
            box-shadow: 0 4px 24px rgba(255, 186, 130, 0.20);
        }
        .cta-section .btn-primary:hover {
            background: var(--orange-dark);
            box-shadow: 0 8px 40px rgba(255, 186, 130, 0.35);
        }
        .cta-section .btn-outline {
            border-color: rgba(255, 255, 255, 0.15);
            color: #fff;
        }
        .cta-section .btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .footer {
            padding: 48px 0 32px;
            background: var(--white);
            border-top: 1px solid var(--gray-light);
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        .footer .copy { font-size: 13px; color: var(--gray); }
        .footer .links {
            display: flex;
            gap: 28px;
            font-size: 13px;
            color: var(--gray);
        }
        .footer .links a:hover { color: var(--deep); }

        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1200px) {
            .hero-dashboard {
                max-width: calc(100vw - 80px);
            }
            .dash-grid {
                grid-template-columns: 260px 1fr 240px;
                gap: 16px;
            }
            .dash-card:nth-child(4) {
                height: 260px;
            }
        }

        @media (max-width: 1024px) {
            .hero-dashboard {
                padding: 20px;
                max-width: 100%;
            }
            .dash-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto auto auto auto;
                gap: 14px;
            }
            /* AI聊天占满第一行 */
            .dash-card:nth-child(1) {
                grid-column: 1 / 3;
                grid-row: 1 / 2;
                height: 340px;
                border-radius: 20px 20px 12px 12px;
            }
            /* 心愿和行动并排第二行 */
            .dash-card:nth-child(2) {
                grid-column: 1 / 2;
                grid-row: 2 / 3;
                border-radius: 12px;
            }
            .dash-card:nth-child(3) {
                grid-column: 2 / 3;
                grid-row: 2 / 3;
                border-radius: 12px;
            }
            /* 守护机制第三行 */
            .dash-card:nth-child(5) {
                grid-column: 1 / 3;
                grid-row: 3 / 4;
                height: 200px;
                border-radius: 12px;
            }
            /* 心流圈底部通栏 */
            .dash-card:nth-child(4) {
                grid-column: 1 / 3;
                grid-row: 4 / 5;
                height: 280px;
                border-radius: 12px 12px 20px 20px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.96);
                backdrop-filter: blur(20px);
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                padding: 24px 28px;
                box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
                border-radius: 0 0 24px 24px;
                gap: 18px;
                align-items: flex-start;
            }
            .nav-links.open { display: flex; }
            .mobile-toggle { display: flex; }
            .hero {
                min-height: auto;
                padding: 120px 0 60px;
            }
            
            /* Hero 移动端 - 上下布局 */
            .hero-layout {
                flex-direction: column;
                gap: 40px;
                min-height: auto;
            }
            
            .hero-content {
                flex: none;
                max-width: 100%;
                padding-right: 0;
                align-items: center;
                text-align: center;
                order: 0;  /* 文案在上 */
            }
            
            .coverflow-container {
                flex: none;
                width: 100%;
                min-height: auto;
                order: 1;  /* Cover Flow在下 */
            }
            
            .coverflow {
                height: 480px;  /* 移动端稍微缩小 */
            }
            
            .cf-card {
                width: 240px;
                height: 400px;
            }
            
            .cf-card.active {
                width: 260px;
                height: 430px;
            }
            
            .cf-card.left,
            .cf-card.right {
                width: 220px;
                height: 370px;
            }
            
            .hero-title { font-size: 32px; }
            .hero-dashboard {
                padding: 16px;
                border-radius: 24px;
                max-width: 100%;
            }
            /* 移动端单列垂直堆叠 */
            .dash-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto auto auto;
                gap: 12px;
            }
            /* AI聊天 - 最重要，放在最上面 */
            .dash-card:nth-child(1) {
                grid-column: 1 / 2;
                grid-row: 1 / 2;
                height: 380px;
                border-radius: 20px 20px 12px 12px;
            }
            /* 心愿进度 */
            .dash-card:nth-child(2) {
                grid-column: 1 / 2;
                grid-row: 2 / 3;
                border-radius: 12px;
            }
            /* 今日行动 */
            .dash-card:nth-child(3) {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
                border-radius: 12px;
            }
            /* 心流圈 */
            .dash-card:nth-child(4) {
                grid-column: 1 / 2;
                grid-row: 4 / 5;
                height: 320px;
                border-radius: 12px;
            }
            /* 守护机制 - 最后 */
            .dash-card:nth-child(5) {
                grid-column: 1 / 2;
                grid-row: 5 / 6;
                border-radius: 12px 12px 20px 20px;
            }
            .bento-grid { grid-template-columns: 1fr; }
            .bento-item.span-2 { grid-column: span 1; }
            .bento-section { padding: 60px 0 80px; }
            .showcase { padding: 60px 0; }
            .showcase-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .showcase-grid.reverse { direction: ltr; }
            .showcase-grid .showcase-content { order: 1; }
            .showcase-grid .showcase-visual { order: 0; }
            
            /* 深度叙事区域 - 移动端上下布局 */
            .narrative-section {
                padding: 60px 0;
            }
            .narrative-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .narrative-visual {
                order: 0;
            }
            .narrative-content {
                order: 1;
                max-width: 100%;
            }
            .narrative-image-wrapper {
                max-width: 260px;
                margin: 0 auto;
            }
            .phone-screen {
                min-height: 320px;
            }
            .narrative-title {
                font-size: 26px;
            }
            .narrative-line {
                font-size: 15px;
            }
            .narrative-emphasis,
            .narrative-highlight {
                padding: 16px 18px;
            }
            
            /* 移动端响应式 */
            @media (max-width: 768px) {
                .narrative-section {
                    padding: 60px 0;
                }
                            
                .narrative-grid {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                
                /* 桌面端 reverse 类在移动端重置 */
                .narrative-grid.reverse {
                    grid-template-columns: 1fr;
                }
                            
                /* 文案在上,视觉图在下 - 统一顺序 */
                .narrative-content {
                    order: -1;  /* 文案排第一 */
                }
                            
                .narrative-visual {
                    min-height: auto;
                    order: 1;   /* 视觉图排第二 */
                }
                                    
                .dialog-scene-wall {
                    grid-template-columns: repeat(2, 1fr);  /* 两列布局,保持整体感 */
                    max-width: 100%;
                    gap: 12px;
                }
                        
                .scene-card {
                    padding: 14px;
                }
                        
                .value-card {
                    padding: 16px;
                }
                        
                .value-icon {
                    width: 40px;
                    height: 40px;
                    font-size: 24px;
                }
                
                /* 目标管理演示 - 移动端 */
                .goal-breakdown-demo {
                    max-width: 100%;
                    padding: 16px;
                }
                
                .action-chain {
                    gap: 4px;
                }
                
                .action-line {
                    width: 24px;
                }
                
                /* 守护者网络 - 移动端 */
                .guardian-network-demo {
                    width: 280px;
                    height: 280px;
                }
                
                .guardian-ring {
                    width: 240px;
                    height: 240px;
                }
                
                .guardian-confirm-bubble {
                    right: 0;
                    bottom: 10px;
                    padding: 10px 12px;
                }
                
                .guardian-confirm-bubble span {
                    font-size: 12px;
                }
                
                /* 心流圈 - 移动端 */
                .community-feed-demo {
                    max-width: 100%;
                    padding: 16px;
                }
                
                .feed-moment,
                .feed-share {
                    padding: 12px;
                }
                
                /* 目标管理 - 移动端 */
                .goal-management-demo {
                    gap: 16px;
                    padding: 16px;
                }
                
                .wish-card-main,
                .action-timeline,
                .resource-card {
                    max-width: 100%;
                }
                
                .timeline-tabs .tab {
                    font-size: 10px;
                    padding: 4px 8px;
                }
                
                .focus-action-name span {
                    font-size: 13px;
                }
                
                .timer-display {
                    font-size: 12px;
                }
                
                .control-btn {
                    width: 32px;
                    height: 32px;
                }
                
                .control-btn svg {
                    width: 16px;
                    height: 16px;
                }
            }
            
            /* 对话示例区域 - 移动端 */
            .dialog-examples-section {
                padding: 60px 0;
            }
            .dialog-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .dialog-scene-card {
                padding: 20px;
            }
            .message-bubble {
                font-size: 13px;
            }
            
            .cta-section { padding: 80px 0; }
            .footer .container { flex-direction: column; text-align: center; }
            .btn-primary, .btn-outline { padding: 12px 28px; font-size: 14px; }
            .btn-group { flex-direction: column; align-items: center; }
            .logo-text .cn { font-size: 16px; }
            .logo-text .en { font-size: 9px; }
            .logo-img { height: 30px; }
            .container { padding: 0 16px; }
        }
        @media (max-width: 480px) {
            .dash-card { padding: 14px 16px; }
            .hero-subtitle { font-size: 15px; }
            .feed-slide { padding: 10px 14px 12px; }
        }

        /* ===== 心愿卡片分组标题（追加） ===== */
        .cf-wish-card .wish-group-title {
            font-size: 12px;
            font-weight: 500;
            color: #1A2B3C;
            padding-left: 6px;
            border-left: 3px solid #FFBA82;
            line-height: 1.4;
            margin-top: 0px;
            text-align: left;
            margin-bottom: 0px;
        }


        /* ===== 行动卡片分组标题（追加） ===== */
        .cf-action-card .action-group-title {
            font-size: 11px;  /* 从 12px 调整为 11px，更紧凑 */
            font-weight: 600;  /* 从 500 调整为 600，更醒目 */
            color: var(--deep);  /* 使用主题深色 */
            padding: 4px 6px;  /* 增加上下内边距 */
            margin: 8px 0 4px;  /* 调整外边距，组间更有间隔 */
            background: rgba(255, 186, 130, 0.08);  /* 添加浅色背景 */
            border-radius: 6px;  /* 圆角 */
            border-left: 3px solid var(--orange-dark);  /* 左侧强调线 */
            line-height: 1.4;
            text-align: left;
        }

        /* ===== 守护机制卡片 - 社交动态样式 ===== */
        /* 守护者头像卡片 */
        .guardian-avatars-card {
            background: #fff;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .guardian-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .guardian-icon {
            width: 18px;
            height: 18px;
            color: var(--orange-dark);
            flex-shrink: 0;
        }

        .guardian-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
        }

        .guardian-avatars {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .guardian-avatar-img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        }

        .guardian-avatar-more {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            color: #999;
            border: 2px solid #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        }

        /* 最近动态卡片 */
        .guardian-feed-card {
            background: #fff;
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .community-feed-wall .feed-card-header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .feed-header-icon {
            width: 16px;
            height: 16px;
            color: var(--orange-dark);
            flex-shrink: 0;
        }

        .feed-card-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
        }

        .guardian-comment-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .guardian-comment-item {
            display: flex;
            gap: 10px;
            padding: 8px;
            background: #f9f9f9;
            border-radius: 10px;
            transition: background 0.2s;
        }

        .guardian-comment-item:hover {
            background: #f5f5f5;
        }

        .guardian-reply {
            margin-left: 20px;
            background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
        }

        .comment-user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
        }

        .comment-content {
            flex: 1;
            min-width: 0;
        }

        .comment-header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 4px;
        }

        .comment-user-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--deep);
        }

        .comment-time {
            font-size: 10px;
            color: #999;
            flex-shrink: 0;
        }

        .comment-text {
            font-size: 12px;
            color: var(--gray);
            line-height: 1.5;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .comment-text strong {
            color: var(--orange-dark);
            font-weight: 600;
        }

        /* 邀请按钮卡片 */
        .guardian-invite-card {
            background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px dashed rgba(255, 140, 66, 0.3);
        }

        .guardian-invite-card:hover {
            background: linear-gradient(135deg, #fff5e6 0%, #ffe8d6 100%);
            border-color: rgba(255, 140, 66, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 140, 66, 0.15);
        }

        .invite-icon {
            width: 18px;
            height: 18px;
            color: var(--orange-dark);
            flex-shrink: 0;
        }

        .invite-text {
            font-size: 13px;
            font-weight: 600;
            color: var(--orange-dark);
        }

        /* ===== 叙事区域变体 - 交替背景 ===== */
        .narrative-section.narrative-alt {
            background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
        }

        /* ===== 目标管理演示动画 ===== */
        .goal-breakdown-demo {
            width: 100%;
            max-width: 400px;
            padding: 20px;
        }

        .wish-card-animated {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(255, 186, 130, 0.2);
        }

        .wish-card-animated .wish-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .wish-card-animated .wish-type-icon {
            width: 32px;
            height: 32px;
            color: var(--orange);
        }

        .wish-card-animated .wish-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--deep);
        }

        .progress-bar-animated {
            height: 8px;
            background: rgba(255, 186, 130, 0.2);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .progress-bar-animated .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--orange) 0%, #ff9a56 100%);
            border-radius: 4px;
            animation: progressGrow 2s ease-out;
        }

        @keyframes progressGrow {
            from { width: 0; }
            to { width: 72%; }
        }

        .action-chain {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .action-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex: 1;
        }

        .action-node svg {
            width: 36px;
            height: 36px;
        }

        .action-node.completed svg {
            color: #5cb85c;
            fill: rgba(92, 184, 92, 0.1);
        }

        .action-node.active svg {
            color: var(--orange);
            fill: rgba(255, 186, 130, 0.1);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .action-node span {
            font-size: 12px;
            color: var(--gray);
            text-align: center;
            white-space: nowrap;
        }

        .action-line {
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #5cb85c 0%, var(--orange) 100%);
            opacity: 0.3;
        }

        /* ===== 守护者确认气泡 ===== */
        .guardian-confirm-bubble {
            position: absolute;
            bottom: 40px;  /* 从 20px 增加到 40px */
            right: -20px;  /* 从 -10px 调整到 -20px */
            background: rgba(255, 255, 255, 0.98);  /* 透明度降低 */
            border-radius: 16px;  /* 圆角增大 */
            padding: 16px 24px;  /* 内边距增加 */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);  /* 阴影增强 */
            display: flex;
            align-items: center;
            gap: 12px;  /* 间距增加 */
            border: 3px solid #5cb85c;  /* 边框加粗 */
            animation: confirmPoppear 0.6s ease-out;
            z-index: 3;
        }

        @keyframes confirmAppear {
            from {
                opacity: 0;
                transform: translateY(10px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .guardian-confirm-bubble svg {
            width: 32px;  /* 从 24px 增加到 32px */
            height: 32px;  /* 从 24px 增加到 32px */
            color: #5cb85c;
            animation: checkBounce 2s ease-in-out infinite;  /* 添加勾选动画 */
        }

        @keyframes checkBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .guardian-confirm-bubble span {
            font-size: 16px;  /* 从 13px 增加到 16px */
            font-weight: 700;  /* 字重增加 */
            color: var(--deep);
        }

        /* ===== 心流圈动态演示 ===== */
        /* ===== 心流圈卡片墙 - Flexbox双列瀑布流布局 ===== */
        .community-feed-wall {
            display: flex;
            gap: 16px;  /* 列间距 */
            width: 100%;
            max-width: 480px;
            height: 600px;  /* 固定高度 */
            overflow-y: auto;  /* 垂直滚动 */
        }
        
        /* 每一列容器 */
        .feed-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;  /* 行间距 */
        }
        
        /* 单个心流圈卡片 - 使用更具体的选择器避免影响 Hero 区 */
        .community-feed-wall .feed-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: visible;  /* 允许内容溢出 */
            display: flex;
            flex-direction: column;
            gap: 12px;
            height: auto;  /* 高度自适应内容 */
            width: 100%;
            break-inside: avoid;  /* 防止卡片被列断开 */
        }
        
        .community-feed-wall .feed-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 186, 130, 0.12);
            border-color: rgba(255, 186, 130, 0.3);
        }
        
        /* 卡片头部 */
        .community-feed-wall .feed-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        
        .community-feed-wall .feed-user-row {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
        
        .community-feed-wall .feed-card-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }
        
        .community-feed-wall .feed-card-user-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .community-feed-wall .feed-card-username {
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
        }
        
        .community-feed-wall .feed-card-time {
            font-size: 11px;
            color: #999;
        }
        
        .community-feed-wall .feed-card-type-tag {
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
        }
        
        .community-feed-wall .feed-card-type-tag.moment-success {
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.15) 0%, rgba(255, 232, 214, 0.15) 100%);
            color: var(--orange);
        }
        
        .community-feed-wall .feed-card-type-tag.moment-frustrated {
            background: linear-gradient(135deg, rgba(150, 150, 150, 0.15) 0%, rgba(200, 200, 200, 0.15) 100%);
            color: #666;
        }
        
        .community-feed-wall .feed-card-type-tag.share {
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(150, 200, 255, 0.15) 100%);
            color: #4a90e2;
        }
        
        .community-feed-wall .feed-card-type-tag.event {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(150, 170, 255, 0.15) 100%);
            color: #667eea;
        }
        
        /* 卡片内容区 */
        .community-feed-wall .feed-card-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .community-feed-wall .feed-card-text {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .community-feed-wall .feed-card-title-text {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--deep);
        }
        
        .community-feed-wall .feed-card-title-text .inline-icon {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        
        .community-feed-wall .feed-card-main-text {
            font-size: 13px;
            color: var(--deep);
            line-height: 1.6;
        }
        
        .community-feed-wall .feed-card-main-text .highlight {
            color: var(--orange);
            font-weight: 600;
        }
        
        .community-feed-wall .feed-card-detail-text {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }
        
        /* 图片 */
        .community-feed-wall .feed-card-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 8px;
        }
        
        .community-feed-wall .feed-card-image img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            display: block;
        }
        
        /* 资源列表 */
        .community-feed-wall .feed-card-resources {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
        }
        
        .community-feed-wall .feed-card-resource-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 10px;
            background: rgba(74, 144, 226, 0.08);
            border-radius: 8px;
            border-left: 3px solid #4a90e2;
        }
        
        .community-feed-wall .feed-card-resource-item .resource-icon {
            width: 16px;
            height: 16px;
            color: #4a90e2;
            flex-shrink: 0;
        }
        
        .community-feed-wall .feed-card-resource-item span {
            font-size: 12px;
            color: var(--deep);
        }
        
        /* 活动信息 */
        .community-feed-wall .feed-card-event-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
            padding: 12px;
            background: rgba(102, 126, 234, 0.06);
            border-radius: 10px;
        }
        
        .community-feed-wall .event-info-row {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }
        
        .community-feed-wall .event-icon {
            width: 16px;
            height: 16px;
            color: #667eea;
            flex-shrink: 0;
        }
        
        .community-feed-wall .event-label {
            color: #666;
        }
        
        .community-feed-wall .event-value {
            color: var(--deep);
            font-weight: 500;
        }
        
        .community-feed-wall .event-value.event-online {
            color: #667eea;
        }
        
        /* 统计信息 */
        .community-feed-wall .feed-card-stats {
            display: flex;
            gap: 16px;
            padding-top: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }
        
        .community-feed-wall .stat-item {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            color: var(--gray);
        }
        
        .community-feed-wall .stat-icon {
            width: 16px;
            height: 16px;
        }
        
        .community-feed-wall .stat-item .count {
            font-weight: 500;
        }
        
        /* 评论滚动区 */
        .community-feed-wall .feed-card-comments {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 12px;
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.05) 0%, rgba(255, 232, 214, 0.05) 100%);
            border-radius: 10px;
            height: 100px;  /* 固定高度，防止卡片抖动 */
            position: relative;
            overflow: hidden;  /* 隐藏溢出的评论 */
        }
        
        .community-feed-wall .feed-comment-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;  /* 始终绝对定位，防止抖动 */
            left: 12px;
            right: 12px;
            top: 12px;
        }
        
        .community-feed-wall .feed-comment-item.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .community-feed-wall .feed-comment-item.exit {
            opacity: 0;
            transform: translateY(-20px);
        }
        
        .community-feed-wall .feed-comment-item .comment-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
            flex-shrink: 0;
        }
        
        .community-feed-wall .feed-comment-item .comment-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .community-feed-wall .feed-comment-item .comment-header {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .community-feed-wall .feed-comment-item .comment-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--deep);
        }
        
        .community-feed-wall .feed-comment-item .comment-time {
            font-size: 11px;
            color: #999;
        }
        
        .community-feed-wall .feed-comment-item .comment-text {
            font-size: 12px;
            color: var(--deep);
            line-height: 1.5;
        }
        
        .community-feed-wall .feed-comment-item .comment-text strong {
            color: var(--orange);
            font-weight: 600;
        }

        /* ===== 目标管理演示 ===== */
        .goal-management-demo {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 20px;
            width: 100%;
            max-width: 420px;
        }

        /* 心愿卡片(主) */
        .wish-card-main {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(255, 186, 130, 0.2);
        }

        .wish-card-main .wish-item-preview {
            background-color: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            transition: none;
        }

        .wish-card-main .wish-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* 心愿卡片字体风格 - 与行动卡片一致 */
        .wish-card-main .wish-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--deep);
        }

        .wish-card-main .confirm-frequency {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray);
        }

        .wish-card-main .progress-percent {
            font-size: 13px;
            font-weight: 500;
            color: var(--orange);
        }

        .wish-card-main .wish-desc {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray);
        }

        .wish-card-main .footer-label {
            font-size: 11px;
            font-weight: 500;
            color: var(--gray);
        }



        /* 行动时间维度 */
        .action-timeline {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(255, 186, 130, 0.2);
        }

        .timeline-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .timeline-header svg {
            width: 20px;
            height: 20px;
            color: var(--orange);
        }

        .timeline-header span {
            font-size: 14px;
            font-weight: 600;
            color: var(--deep);
            flex: 1;
        }

        .timeline-tabs {
            display: flex;
            gap: 6px;
        }

        .timeline-tabs .tab {
            padding: 4px 10px;
            text-align: center;
            font-size: 11px;
            font-weight: 500;
            color: var(--gray);
            background: rgba(255, 186, 130, 0.08);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .timeline-tabs .tab.active {
            background: linear-gradient(135deg, var(--orange) 0%, #ff9a56 100%);
            color: #fff;
            font-weight: 600;
        }

        .action-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .action-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            background: #f9f9f9;
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .action-item.completed {
            background: rgba(76, 175, 80, 0.08);
            border-left: 3px solid #4CAF50;
        }

        .action-item.pending {
            background: rgba(255, 186, 130, 0.08);
            border-left: 3px solid var(--orange);
        }

        .action-item.in-progress {
            background: rgba(33, 150, 243, 0.08);
            border-left: 3px solid #2196F3;
        }

        .check-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .action-item.completed .check-icon {
            color: #4CAF50;
        }

        .action-item.pending .check-icon {
            color: var(--orange);
        }

        .action-item.in-progress .check-icon {
            color: #2196F3;
        }

        .action-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .action-name {
            font-size: 13px;
            font-weight: 500;
            color: var(--deep);
        }

        .action-status {
            font-size: 11px;
            font-weight: 500;
        }

        .action-item.completed .action-status {
            color: #4CAF50;
        }

        .action-item.in-progress .action-status {
            color: #2196F3;
        }

        .action-item.pending .action-status {
            color: var(--gray);
        }

        /* 专注资源沉浸 */
        .focus-immersion {
            display: flex;
            justify-content: center;
        }

        .resource-card {
            width: 100%;
            max-width: 360px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(255, 186, 130, 0.2);
        }

        /* 第一行:行动名称 */
        .focus-action-name {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.1) 0%, rgba(255, 232, 214, 0.1) 100%);
            border-bottom: 1px solid rgba(255, 186, 130, 0.2);
        }

        .focus-action-name svg {
            width: 20px;
            height: 20px;
            color: var(--orange);
        }

        .focus-action-name span {
            font-size: 14px;
            font-weight: 600;
            color: var(--deep);
        }

        /* 第二行:资源展示区 */
        .resource-preview {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: linear-gradient(135deg, #1a2b3c 0%, #2d3e50 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: #fff;
        }

        .resource-preview svg {
            width: 48px;
            height: 48px;
            opacity: 0.9;
        }

        .resource-preview span {
            font-size: 14px;
            font-weight: 500;
        }

        /* 第三行:专注控制区 */
        .focus-controls {
            padding: 12px 16px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .timer-display {
            font-size: 14px;
            color: var(--deep);
            font-family: 'Courier New', monospace;
            font-weight: 600;
        }

        .control-buttons {
            display: flex;
            gap: 8px;
        }

        .control-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--orange);
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .control-btn:hover {
            background: rgba(255, 186, 130, 0.1);
            transform: scale(1.05);
        }

        .control-btn svg {
            width: 18px;
            height: 18px;
            color: var(--orange);
        }

        .energy-gain {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.15) 0%, rgba(255, 232, 214, 0.15) 100%);
            border-radius: 8px;
            border: 1px solid rgba(255, 186, 130, 0.3);
        }

        .energy-gain svg {
            width: 16px;
            height: 16px;
            color: var(--orange);
        }

        .energy-gain span {
            font-size: 12px;
            font-weight: 700;
            color: var(--orange);
        }



        /* ===== 守护者网络动画 ===== */
        .guardian-network-demo {
            position: relative;
            width: 100%;
            max-width: 520px;  /* 从 320px 增加到 520px */
            height: 520px;  /* 从 320px 增加到 520px */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .center-user {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
        }

        .center-user img {
            width: 96px;  /* 从 64px 增加到 96px */
            height: 96px;  /* 从 64px 增加到 96px */
            border-radius: 50%;
            border: 4px solid var(--orange);  /* 边框加粗 */
            box-shadow: 0 8px 32px rgba(255, 186, 130, 0.4);  /* 阴影增强 */
            animation: centerPulse 3s ease-in-out infinite;  /* 添加呼吸动画 */
        }

        @keyframes centerPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(255, 186, 130, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(255, 186, 130, 0.5); }
        }

        .center-user span {
            display: block;
            margin-top: 12px;  /* 增加间距 */
            font-size: 18px;  /* 从 14px 增加到 18px */
            font-weight: 700;  /* 字重增加 */
            color: var(--deep);
        }

        .guardian-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 420px;  /* 从 280px 增加到 420px */
            height: 420px;  /* 从 280px 增加到 420px */
        }

        .guardian-node {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-180px);  /* 从 -120px 增加到 -180px */
            text-align: center;
            animation: guardianFloat 4s ease-in-out infinite;  /* 动画时间延长 */
            animation-delay: var(--delay);
        }

        @keyframes guardianFloat {
            0%, 100% { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-180px); }
            50% { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-188px); }  /* 浮动幅度增大 */
        }

        .guardian-node img {
            width: 64px;  /* 从 48px 增加到 64px */
            height: 64px;  /* 从 48px 增加到 64px */
            border-radius: 50%;
            border: 3px solid #fff;  /* 边框加粗 */
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);  /* 阴影增强 */
            transition: all 0.3s ease;  /* 添加过渡效果 */
        }

        .guardian-node:hover img {
            transform: scale(1.15);  /* 悬停放大 */
            box-shadow: 0 8px 24px rgba(255, 186, 130, 0.3);  /* 悬停时橙色光晕 */
        }

        .guardian-name {
            display: block;
            margin-top: 10px;  /* 增加间距 */
            font-size: 15px;  /* 从 12px 增加到 15px */
            color: var(--gray);
            font-weight: 600;  /* 字重增加 */
        }

        .connection-lines {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .line {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 180px;  /* 从 120px 增加到 180px */
            height: 3px;  /* 从 2px 增加到 3px */
            background: linear-gradient(90deg, rgba(255, 186, 130, 0.8) 0%, transparent 100%);  /* 渐变增强 */
            transform-origin: left center;
            animation: lineGlow 3s ease-in-out infinite;  /* 添加光线流动动画 */
        }

        @keyframes lineGlow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .line-1 { transform: rotate(0deg) translateY(-50%); }
        .line-2 { transform: rotate(120deg) translateY(-50%); }
        .line-3 { transform: rotate(240deg) translateY(-50%); }

        /* ===== 专注计时器演示 ===== */
        .focus-timer-demo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            padding: 20px;
        }

        .timer-circle {
            position: relative;
            width: 180px;
            height: 180px;
        }

        .timer-svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .timer-bg {
            fill: none;
            stroke: rgba(255, 186, 130, 0.2);
            stroke-width: 8;
        }

        .timer-progress {
            fill: none;
            stroke: var(--orange);
            stroke-width: 8;
            stroke-linecap: round;
            transition: stroke-dashoffset 1s linear;
        }

        .timer-display {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .timer-display .time {
            display: block;
            font-size: 36px;
            font-weight: 700;
            color: var(--deep);
            font-family: 'Courier New', monospace;
        }

        .timer-display .label {
            display: block;
            font-size: 12px;
            color: var(--orange);
            margin-top: 4px;
            font-weight: 600;
        }

        .energy-gain {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.1) 0%, rgba(255, 232, 214, 0.1) 100%);
            border-radius: 12px;
            border: 2px solid rgba(255, 186, 130, 0.3);
            animation: energyPulse 2s infinite;
        }

        @keyframes energyPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .energy-gain svg {
            width: 24px;
            height: 24px;
            color: var(--orange);
        }

        .energy-gain span {
            font-size: 16px;
            font-weight: 700;
            color: var(--orange);
        }

        .achievement-badges {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .badge {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(255, 186, 130, 0.1) 0%, rgba(255, 232, 214, 0.1) 100%);
            border: 2px solid rgba(255, 186, 130, 0.3);
            transition: all 0.3s ease;
        }

        .badge:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 4px 12px rgba(255, 186, 130, 0.3);
        }

        .badge svg {
            width: 24px;
            height: 24px;
            color: var(--orange);
        }

        .badge-1 { animation: badgeFloat 3s ease-in-out infinite; }
        .badge-2 { animation: badgeFloat 3s ease-in-out infinite 0.5s; }
        .badge-3 { animation: badgeFloat 3s ease-in-out infinite 1s; }

        @keyframes badgeFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
