:root {
            --primary: #dc8f5b;
            --primary-dark: #b86e3d;
            --primary-light: #f7dfcb;
            --bg: #faf7f2;
            --surface: #ffffff;
            --surface-muted: #f3ece4;
            --text: #2c2520;
            --text-muted: #6e645d;
            --radius: 18px;
            --shadow: 0 10px 30px rgba(30, 25, 21, 0.05);
            --shadow-hover: 0 16px 40px rgba(220, 143, 91, 0.15);
            --transition: 0.15s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* 顶部导航栏 - 完全复用规范结构 */
        header.zest {
            background-color: rgba(250, 247, 242, 0.92);
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(220, 143, 91, 0.12);
        }

        .mantle {
            max-width: 1320px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .vulp {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .vulp img {
            height: 38px;
            width: auto;
            display: block;
        }

        .orbit {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

        .tail {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text);
            transition: color var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }

        .tail:hover,
        .tail.active {
            color: var(--primary-dark);
        }

        .tail.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.6rem;
            background-color: #1e1915;
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 99px;
            box-shadow: 0 4px 14px rgba(30, 25, 21, 0.12);
            transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
            min-width: 0;
        }

        .spark:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(220, 143, 91, 0.25);
        }

        /* 主内容容器 */
        main {
            display: block;
            width: 100%;
        }

        /* 1. Hero Showcase / Intro Section */
        section.flare {
            padding: 4.5rem 2rem 3.5rem;
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }

        .pathway {
            flex: 1 1 480px;
            min-width: 0;
            word-break: break-word;
        }

        .beacon {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            font-size: 0.85rem;
            font-weight: 700;
            border-radius: 99px;
            margin-bottom: 1.25rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        h1.trace-flare {
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: #1e1915;
            margin-bottom: 1.25rem;
            white-space: normal;
        }

        p.glow-flare {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .strike-kindle {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .strike {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.9rem 2.2rem;
            background-color: var(--primary);
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 99px;
            box-shadow: 0 6px 20px rgba(220, 143, 91, 0.25);
            transition: all var(--transition);
            min-width: 0;
        }

        .strike:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(220, 143, 91, 0.35);
        }

        .strike-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.9rem 2rem;
            background-color: var(--surface);
            color: var(--text);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 99px;
            border: 1px solid rgba(220, 143, 91, 0.3);
            box-shadow: var(--shadow);
            transition: all var(--transition);
            min-width: 0;
        }

        .strike-secondary:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .ignite {
            flex: 1 1 500px;
            min-width: 0;
        }

        /* 模拟极具交互质感的浏览器界面展示构件 */
        .swish-flare-frame {
            background-color: var(--surface);
            border-radius: var(--radius);
            padding: 1.25rem;
            border: 1px solid rgba(220, 143, 91, 0.2);
            box-shadow: var(--shadow);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .swish-flare-frame:hover {
            box-shadow: var(--shadow-hover);
        }

        .fury-topbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--surface-muted);
            margin-bottom: 1rem;
        }

        .kindle-dots {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .wisp-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #e6c5b0;
        }

        .wisp-dot:nth-child(1) { background-color: #ee6a5d; }
        .wisp-dot:nth-child(2) { background-color: #f5bd4f; }
        .wisp-dot:nth-child(3) { background-color: #61c454; }

        .fury-searchmock {
            flex: 1;
            min-width: 0;
            background-color: var(--bg);
            border-radius: 8px;
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sphere-demo-stage {
            background: linear-gradient(135deg, #fff5ed 0%, #f7ece1 100%);
            border-radius: 12px;
            padding: 1.5rem;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .fury-orbit-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .wisp-tab {
            padding: 0.4rem 1rem;
            border-radius: 6px;
            font-size: 0.82rem;
            font-weight: 600;
            background-color: rgba(255, 255, 255, 0.7);
            color: var(--text-muted);
        }

        .wisp-tab.active {
            background-color: var(--primary);
            color: #ffffff;
        }

        .kindle-preview-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
        }

        .shard-mini {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            border: 1px solid rgba(220, 143, 91, 0.1);
        }

        .den-mini {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background-color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.6rem;
        }

        .trace-mini {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.2rem;
        }

        .glow-mini {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* 2. Feature List / Capability Div Section */
        div.focal {
            max-width: 1320px;
            margin: 2rem auto 4rem;
            padding: 4rem 2rem;
            background-color: var(--surface);
            border-radius: calc(var(--radius) * 1.5);
            box-shadow: var(--shadow);
            border: 1px solid rgba(220, 143, 91, 0.15);
        }

        .sphere-zest {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 3.5rem;
            word-break: break-word;
        }

        h2.trace-section {
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 800;
            color: #1e1915;
            margin-bottom: 1rem;
            line-height: 1.25;
            white-space: normal;
        }

        p.glow-section {
            font-size: 1.05rem;
            color: var(--text-muted);
        }

        .kindle-capabilities {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .ember-tool {
            background-color: var(--bg);
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid rgba(220, 143, 91, 0.12);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .ember-tool:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }

        .den-swish {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }

        .trace-tool {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.75rem;
        }

        .glow-tool {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 1.5rem;
        }

        .kindle-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .beacon-sub {
            font-size: 0.78rem;
            font-weight: 600;
            padding: 0.3rem 0.75rem;
            background-color: var(--surface);
            color: var(--primary-dark);
            border-radius: 99px;
            border: 1px solid rgba(220, 143, 91, 0.2);
        }

        /* 深度定制解构栏 */
        .swish-deepdive {
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, #fbf3ea 0%, #f4e7d8 100%);
            border-radius: var(--radius);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .pathway-deep {
            flex: 1 1 400px;
            min-width: 0;
        }

        .trace-deep {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #1e1915;
        }

        .glow-deep {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* 3. Visual Gallery Cases / Proof Article Section */
        article.aurora {
            max-width: 1320px;
            margin: 0 auto 5rem;
            padding: 0 2rem;
        }

        .kindle-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .shard-case {
            background-color: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid rgba(220, 143, 91, 0.15);
            box-shadow: var(--shadow);
            transition: all var(--transition);
        }

        .shard-case:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .swish-preview-box {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            margin-bottom: 1.25rem;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        /* 主题变体 1: 极客暗黑 */
        .theme-cyber {
            background: linear-gradient(135deg, #18191c 0%, #2b2d35 100%);
            color: #7289da;
        }
        /* 主题变体 2: 莫兰迪日系 */
        .theme-morandi {
            background: linear-gradient(135deg, #e8dfd8 0%, #d5c7bc 100%);
            color: #5c4b43;
        }
        /* 主题变体 3: 暮光落日 */
        .theme-sunset {
            background: linear-gradient(135deg, #3a1c29 0%, #6b2d3e 100%);
            color: #ff9e7d;
        }

        .fury-case-zest {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .beacon-case {
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.25rem 0.6rem;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
        }

        .kindle-mock-bars {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .fury-line {
            height: 8px;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.15);
        }

        .fury-line.w-80 { width: 80%; }
        .fury-line.w-60 { width: 60%; }
        .fury-line.w-90 { width: 90%; }

        .trace-case {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .glow-case {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* 页脚区域 - 页脚品牌区只使用文字 */
        footer.cinder {
            background-color: #1e1915;
            color: #d1c7bd;
            padding: 4rem 2rem 2.5rem;
            border-top: 1px solid rgba(220, 143, 91, 0.2);
        }

        .ground {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            justify-content: space-between;
        }

        .warp-brand {
            flex: 1 1 300px;
            min-width: 0;
            word-break: break-word;
        }

        .trace-warp-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.01em;
            margin-bottom: 1rem;
        }

        .glow-warp {
            font-size: 0.9rem;
            color: #9e9389;
            line-height: 1.7;
        }

        .kindle-warp-links {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            flex: 2 1 500px;
            min-width: 0;
            justify-content: flex-end;
        }

        .warp-col {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            min-width: 130px;
        }

        .trace-col {
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .tail-warp {
            font-size: 0.88rem;
            color: #9e9389;
            transition: color var(--transition);
        }

        .tail-warp:hover {
            color: var(--primary);
        }

        .fury-copyright {
            max-width: 1320px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.85rem;
            color: #7a7067;
            text-align: center;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .kindle-capabilities {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            }
            .kindle-gallery {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mantle {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            .orbit {
                gap: 1rem;
                width: 100%;
            }
            section.flare {
                padding: 2.5rem 1.5rem 2rem;
            }
            div.focal {
                padding: 2.5rem 1.5rem;
            }
            article.aurora {
                padding: 0 1.5rem;
            }
            .kindle-warp-links {
                justify-content: flex-start;
                gap: 2rem;
            }
        }

.orbit-zest {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.orbit-zest,
.orbit-zest *,
.orbit-zest *::before,
.orbit-zest *::after {
    box-sizing: border-box;
}

.orbit-zest [role="navigation"],
.orbit-zest div,
.orbit-zest section,
.orbit-zest article,
.orbit-zest aside,
.orbit-zest p,
.orbit-zest h1,
.orbit-zest h2,
.orbit-zest h3,
.orbit-zest h4,
.orbit-zest h5,
.orbit-zest h6,
.orbit-zest a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.orbit-zest p,
.orbit-zest h1,
.orbit-zest h2,
.orbit-zest h3,
.orbit-zest h4,
.orbit-zest h5,
.orbit-zest h6 {
    text-decoration: none;
}

.orbit-zest img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.orbit-zest {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.orbit-zest a.orbit-tail {
    --aisite-shell-nav-padding: 0.6rem 1.2rem;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.orbit-zest a.orbit-tail,
.orbit-zest a.orbit-tail:hover,
.orbit-zest a.orbit-tail:focus,
.orbit-zest a.orbit-tail:active,
.orbit-zest a.orbit-tail.active,
.orbit-zest a.orbit-tail[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.orbit-zest{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(250, 247, 242, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(220, 143, 91, 0.18);
            padding: 1rem 0;
        }

.orbit-zest .orbit-mantle{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

.orbit-zest .orbit-vulp{
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

.orbit-zest .orbit-vulp img{
            height: 38px;
            width: auto;
            display: block;
        }

.orbit-zest .orbit-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
        }

.orbit-zest .orbit-tail{
            padding: 0.6rem 1.2rem;
            font-size: 0.95rem;
            font-weight: 5rem;
            color: #2c2520;
            border-radius: 99px;
            transition: background-color 0.15s ease, color 0.15s ease;
        }

.orbit-zest .orbit-tail:hover{
            background-color: #f6e6d9;
            color: #b86e3d;
        }

.orbit-zest .orbit-tail.active{
            background-color: #dc8f5b;
            color: #ffffff;
            font-weight: 600;
        }

.orbit-zest .orbit-spark{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.6rem;
            background: linear-gradient(135deg, #dc8f5b, #b86e3d);
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 99px;
            box-shadow: 0 4px 14px rgba(220, 143, 91, 0.3);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

.orbit-zest .orbit-spark:hover{
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 143, 91, 0.45);
        }

@media (max-width: 768px){.orbit-zest .orbit-mantle{
                flex-direction: column;
                align-items: flex-start;
            }

.orbit-zest .orbit-orbit{
                width: 100%;
                justify-content: flex-start;
                gap: 0.4rem;
            }

.orbit-zest .orbit-tail{
                padding: 0.4rem 0.8rem;
                font-size: 0.88rem;
            }}

.orbit-zest {
    background: rgb(250, 247, 242);
    background-image: none;
}

.cinder-warp {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.cinder-warp,
.cinder-warp *,
.cinder-warp *::before,
.cinder-warp *::after {
    box-sizing: border-box;
}

.cinder-warp [role="navigation"],
.cinder-warp div,
.cinder-warp section,
.cinder-warp article,
.cinder-warp aside,
.cinder-warp p,
.cinder-warp h1,
.cinder-warp h2,
.cinder-warp h3,
.cinder-warp h4,
.cinder-warp h5,
.cinder-warp h6,
.cinder-warp a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.cinder-warp p,
.cinder-warp h1,
.cinder-warp h2,
.cinder-warp h3,
.cinder-warp h4,
.cinder-warp h5,
.cinder-warp h6 {
    text-decoration: none;
}

.cinder-warp img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.cinder-warp {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.cinder-warp a,
.cinder-warp a:hover,
.cinder-warp a:focus,
.cinder-warp a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.cinder-warp{
            background-color: #1e1915;
            color: #ffffff;
            padding: 4.5rem 2rem 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

.cinder-warp .cinder-cinder{
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3rem;
            margin-bottom: 3.5rem;
        }

.cinder-warp .cinder-ground-brand{
            grid-column: span 1;
        }

.cinder-warp .cinder-trace-warp-brand{
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: -0.01em;
        }

.cinder-warp .cinder-glow-warp{
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

.cinder-warp .cinder-trace-warp-col{
            font-size: 1rem;
            font-weight: 600;
            color: #dc8f5b;
            margin-bottom: 1.2rem;
        }

.cinder-warp .cinder-kindle-warp-links{
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

.cinder-warp .cinder-tail-warp{
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.15s ease;
        }

.cinder-warp .cinder-tail-warp:hover{
            color: #dc8f5b;
        }

.cinder-warp .cinder-ground-bottom{
            max-width: 1320px;
            margin: 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

@media (max-width: 768px){.cinder-warp .cinder-ground-bottom{
                flex-direction: column;
                align-items: flex-start;
            }}