
        .text-brand { color: #e8a81a !important; }
        .bg-brand { background-color: #e8a81a !important; }
        
        /* 页面载入和滚动平滑动效 (Smooth Scroll & Entrance Animations) */
        @keyframes slideUpFade {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal-item { opacity: 0; }
        .reveal-item.active { animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

        /* 磨砂玻璃头部导航栏 (Glassmorphism Sticky Header) */
        .glass-header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        /* 技术参数表格悬停动画效果 (Specification Table Interactive Rows) */
        .spec-row { transition: all 0.2s ease; }
        .spec-row:hover { background-color: #fefce8 !important; transform: scale(1.005); z-index: 10; position: relative; }
        
        .spec-row:nth-child(4n-3), .spec-row:nth-child(4n-2) { background-color: #fafaf9; }
        .spec-row:nth-child(4n-1), .spec-row:nth-child(4n) { background-color: #ffffff; }

        .feature-card { transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
        
        /* 核心特征 hover 动效 (Description Bullet Points Hover Effect) */
        .desc-point { transition: all 0.3s ease; border-left: 3px solid transparent; }
        .desc-point:hover { background: #fffcf5; border-left-color: #e8a81a; padding-left: 0.5rem; }

        /* 性能卡片进入动画过渡 (Performance Card item transitions) */
        .performance-item { transition: all 0.4s ease; }

        /* 动画延迟时间线 (Dynamic Delays) */
        .delay-100 { animation-delay: 100ms; }
        .delay-200 { animation-delay: 200ms; }
        .delay-300 { animation-delay: 300ms; }
    