
        /* 增强版呼吸灯特效 */
        .glow-effect {
            animation: neonBreathe 3s ease-in-out infinite alternate;
            border-radius: 0.75rem;
        }
        @keyframes neonBreathe {
            from { box-shadow: 0 0 10px rgba(59, 130, 246, 0.4), 0 0 20px rgba(59, 130, 246, 0.2); }
            to { box-shadow: 0 0 25px rgba(59, 130, 246, 0.8), 0 0 50px rgba(59, 130, 246, 0.4); }
        }
        /* 强制覆盖建站系统默认对齐的类 */
        .force-center {
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    