:root {
            --gradient-magic: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
            --shadow-glowing: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
        }

        /* 渐变文本 */
        .text-seasalt {
            background-image: var(--gradient-magic);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 300% 100%;
            transition: all 0.2s ease-in-out;
        }

        /* 渐变按钮 */
        .bg-seasalt {
            background-image: var(--gradient-magic);
            background-size: 300% 100%;
            color: white;
            transition: all 0.2s ease-in-out;
            cursor: pointer;
        }
        .bg-seasalt:hover {
            background-position: 100% 0;
            box-shadow: var(--shadow-glowing);
        }

        /* 场景卡片高级 Hover 动效 */
        .service-card {
            background-color: white;
            border-radius: 1rem;
            border: 1px solid #e2e8f0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-magic);
            transform: scaleX(0);
            transition: transform 0.3s;
            transform-origin: left;
        }
        .service-card:hover {
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
            border-color: #cbd5e1;
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }

        /* 亮色滚动条 */
        .custom-scroll::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        .custom-scroll::-webkit-scrollbar-track {
            background: #f8fafc;
        }
        .custom-scroll::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }
        .custom-scroll::-webkit-scrollbar-thumb:hover {
            background: #40e495;
        }

        .jq-switch {
            position: relative;
            width: 2.25rem;
            height: 1.25rem;
            flex: 0 0 auto;
            appearance: none;
            border-radius: 9999px;
            border: 1px solid #cbd5e1;
            background: #e2e8f0;
            cursor: pointer;
            transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .jq-switch::after {
            content: "";
            position: absolute;
            top: 0.125rem;
            left: 0.125rem;
            width: 0.875rem;
            height: 0.875rem;
            border-radius: 9999px;
            background: #ffffff;
            box-shadow: 0 1px 2px rgba(15, 23, 42, 0.22);
            transition: transform 0.2s ease;
        }
        .jq-switch:checked {
            border-color: #10b981;
            background: #10b981;
        }
        .jq-switch:checked::after {
            transform: translateX(1rem);
        }
        .jq-switch:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
        }

        .code-shell {
            background:
                linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, rgba(37, 170, 225, 0.5), rgba(64, 228, 149, 0.55)) border-box;
            border: 1px solid transparent;
        }
        [jq-code-host] [jq-code-rendered="true"] {
            margin: 0;
            border: 0;
            border-radius: 0;
            box-shadow: none;
        }

        [jq-code-host] [jq-code-body] {
            max-height: 580px !important;
        }

        [jq-code-host] [jq-code-copy] {
            top: 0.75rem;
            right: 0.75rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
        }
	pre:before,
	textarea:before {
            background-color: rgba(64 228 149 / 0.6);
            border-radius: 50%;
            content: "";
            filter: blur(60px);
            opacity: 0.15;
            position: absolute;
            top: -8em;
            right: -10em;
            width: 25em;
            height: 25em;
            z-index: 0;
            transition: background-color 0.3;
        }
