/* ============================================================
   APP Download Site - 主样式表（含暗色模式）
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #22C55E;
    --color-primary-dark: #16A34A;
    --color-primary-light: #4ADE80;
    --color-accent: #10B981;

    /* 亮色 */
    --bg:          #FFFFFF;
    --bg-alt:      #F8FAFC;
    --bg-hero:     linear-gradient(135deg, #ECFDF5 0%, #F8FAFC 50%, #EEF2FF 100%);
    --bg-card:     #FFFFFF;
    --bg-footer:   #0F172A;
    --text:        #1E293B;
    --text-light:  #64748B;
    --text-muted:  #94A3B8;
    --border:      #E2E8F0;
    --shadow-card: 0 4px 20px rgba(0,0,0,.08);

    --radius: 12px;
    --radius-lg: 20px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
    --max-width: 1120px;
}

/* ---- 暗色模式变量 ---- */
[data-theme="dark"] {
    --bg:          #0B1120;
    --bg-alt:      #111827;
    --bg-hero:     linear-gradient(135deg, #0C1A1A 0%, #0B1120 50%, #0F1F1A 100%);
    --bg-card:     #1E293B;
    --bg-footer:   #070D1A;
    --text:        #E2E8F0;
    --text-light:  #94A3B8;
    --text-muted:  #64748B;
    --border:      #334155;
    --shadow-card: 0 4px 20px rgba(0,0,0,.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue",
                 Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background var(--transition), color var(--transition);
}

/* 扩散动画进行时加速全局过渡 */
body.theme-transitioning,
body.theme-transitioning * {
    transition-duration: .15s !important;
}

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

img { max-width: 100%; display: block; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- 导航栏（透明，与 Hero 融为一体） ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

/* 滚动后加半透明背景 */
.navbar.scrolled {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(11,17,32,.88);
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-icon { font-size: 1.5rem; }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }

/* ---- VPSwitch 暗色切换按钮 ---- */
.VPSwitch {
    position: relative;
    border-radius: 11px;
    width: 40px;
    height: 22px;
    cursor: pointer;
    outline: none;
}

.VPSwitchAppearance {
    background-color: #f2f2f2;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,.04);
    transition: background-color .25s ease, box-shadow .25s ease;
}

.VPSwitch .check {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.08);
    transition: transform .25s cubic-bezier(.4,0,.2,1), background-color .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.VPSwitch .icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
}

.VPSwitch .icon svg {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    transition: opacity .25s ease, transform .4s cubic-bezier(.4,0,.2,1);
}

.VPSwitch .sun {
    color: #f59e0b;
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.VPSwitch .moon {
    color: #64748b;
    opacity: 0;
    transform: scale(0) rotate(-90deg);
}

/* 暗色模式 */
[data-theme="dark"] .VPSwitchAppearance {
    background-color: #1e293b;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.06);
}

[data-theme="dark"] .VPSwitch .check {
    transform: translateX(18px);
    background-color: #1e293b;
    box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 1px 4px rgba(0,0,0,.2);
}

[data-theme="dark"] .VPSwitch .sun {
    opacity: 0;
    transform: scale(0) rotate(90deg);
}

[data-theme="dark"] .VPSwitch .moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* hover 效果 */
.VPSwitch:hover .check {
    box-shadow: 0 1px 3px rgba(0,0,0,.18), 0 2px 8px rgba(99,102,241,.15);
}

[data-theme="dark"] .VPSwitch:hover .check {
    box-shadow: 0 1px 3px rgba(0,0,0,.35), 0 2px 8px rgba(73,197,176,.2);
}

/* focus 可见性 */
.VPSwitch:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 14px;
}

/* ---- 扩散变色动画（背景层，不遮挡内容） ---- */
body.theme-rippling {
    transition: none;
}

/* 利用 ::before 做背景扩散伪元素 */
body.theme-rippling::before {
    content: '';
    position: fixed;
    width: var(--ripple-size, 0);
    height: var(--ripple-size, 0);
    top: var(--ripple-y, 0);
    left: var(--ripple-x, 0);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: scale(0);
    will-change: transform, opacity;
}

body.theme-rippling.to-dark::before {
    background: #0B1120;
}

body.theme-rippling.to-light::before {
    background: #FFFFFF;
}

body.theme-rippling.ripple-active::before {
    animation: bg-ripple-expand .7s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes bg-ripple-expand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---------- 按钮 ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(43,168,160,.35);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(43,168,160,.45);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 12px 42px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* btn-download 样式在下方下载卡片区域定义 */

/* ---------- Hero + 下载 共享背景容器 ---------- */
.hero-features-wrapper {
    background: var(--bg-hero);
}

/* ---------- Hero ---------- */
.hero {
    padding: 140px 0 60px;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text { flex: 1; }

.hero-text h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -.4px;
    margin-bottom: 16px;
    display: inline-block;
    color: transparent;
    background: linear-gradient(135deg, #16A34A 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -.4px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.version-badge {
    display: inline-block;
    margin-left: 16px;
    padding: 4px 12px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(43,168,160,.1);
    border-radius: 20px;
    vertical-align: middle;
}

[data-theme="dark"] .version-badge {
    background: rgba(73,197,176,.15);
}

/* 手机 Mockup（已替换为图标展示） */
.hero-visual {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-showcase {
    position: relative;
    width: 290px;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 渐变光晕背景 */
.app-icon-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(34, 197, 94, .35) 0%,
        rgba(34, 197, 94, .2) 40%,
        rgba(74, 222, 128, .08) 70%,
        transparent 100%
    );
    filter: blur(20px);
    animation: glow-pulse 4s ease-in-out infinite;
}

[data-theme="dark"] .app-icon-glow {
    background: radial-gradient(circle,
        rgba(34, 197, 94, .5) 0%,
        rgba(34, 197, 94, .3) 40%,
        rgba(74, 222, 128, .12) 70%,
        transparent 100%
    );
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: .85; }
}

/* 图标盒子 */
.app-icon-box {
    position: relative;
    z-index: 1;
    width: 270px;
    height: 270px;
    border-radius: 48px;
    background: transparent;
    box-shadow:
        0 20px 50px rgba(34, 197, 94, .3),
        0 8px 20px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s ease, box-shadow .4s ease;
    overflow: hidden;
}

.app-icon-box:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 28px 60px rgba(34, 197, 94, .4),
        0 12px 28px rgba(0, 0, 0, .12);
}

.app-icon-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 48px;
}

/* 暗色模式下图标盒子更强的光效 */
[data-theme="dark"] .app-icon-box {
    box-shadow:
        0 20px 50px rgba(34, 197, 94, .4),
        0 8px 20px rgba(0, 0, 0, .3);
}

/* ---------- 下载区（与 Hero 共享背景，无分割线） ---------- */
.download-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 56px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ---------- 下载卡片全包围动画 ---------- */

/* 渐变边框动画层 */
.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px 28px;
    text-align: center;
    transition: transform .4s cubic-bezier(.4,0,.2,1),
                box-shadow .4s cubic-bezier(.4,0,.2,1),
                border-color .4s ease;
    position: relative;
    overflow: visible;
    z-index: 0;
}

/* 渐变光圈 - hover 时从四边包裹 */
.download-card::before,
.download-card::after {
    content: '';
    position: absolute;
    border-radius: var(--radius-lg);
    transition: opacity .5s ease, inset .5s ease;
    pointer-events: none;
    z-index: -1;
}

/* 外层渐变光晕 */
.download-card::before {
    inset: -2px;
    background: conic-gradient(
        from 0deg,
        #22C55E, #4ADE80, #86EFAC, #06B6D4, #22C55E
    );
    opacity: 0;
    filter: blur(0px);
}

/* 内层填充（遮住中间，只露边框） */
.download-card::after {
    inset: 0;
    background: var(--bg-card);
    opacity: 1;
}

/* hover 状态 */
.download-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, .15);
    border-color: transparent;
}

.download-card:hover::before {
    opacity: 1;
    animation: border-spin 3s linear infinite;
}

.download-card:hover::after {
    opacity: 1;
}

/* 渐变边框旋转动画 */
@keyframes border-spin {
    0%   { filter: blur(0px); background: conic-gradient(from 0deg,   #22C55E, #4ADE80, #86EFAC, #06B6D4, #22C55E); }
    25%  { filter: blur(1px); background: conic-gradient(from 90deg,  #22C55E, #4ADE80, #86EFAC, #06B6D4, #22C55E); }
    50%  { filter: blur(0px); background: conic-gradient(from 180deg, #22C55E, #4ADE80, #86EFAC, #06B6D4, #22C55E); }
    75%  { filter: blur(1px); background: conic-gradient(from 270deg, #22C55E, #4ADE80, #86EFAC, #06B6D4, #22C55E); }
    100% { filter: blur(0px); background: conic-gradient(from 360deg, #22C55E, #4ADE80, #86EFAC, #06B6D4, #22C55E); }
}

/* 下载按钮同步动效 */
.btn-download {
    background: var(--color-primary);
    color: #fff;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.btn-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .5s ease, height .5s ease;
}

.download-card:hover .btn-download::before {
    width: 300px;
    height: 300px;
}

.download-card:hover .btn-download {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(43,168,160,.4);
}

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43,168,160,.08);
    border-radius: 14px;
}

[data-theme="dark"] .card-icon {
    background: rgba(73,197,176,.12);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-primary);
}

.download-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-desc {
    font-size: .9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: .8rem;
    color: var(--text-muted);
}

.download-note {
    text-align: center;
    margin-top: 40px;
    font-size: .9rem;
    color: var(--text-muted);
}

/* ---------- 功能区 ---------- */
.features-section {
    padding: 60px 0 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: transform .4s cubic-bezier(.4,0,.2,1),
                box-shadow .4s cubic-bezier(.4,0,.2,1),
                border-color .4s ease;
    position: relative;
    overflow: hidden;
}

/* 功能卡片 hover 光效 */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
        rgba(34, 197, 94, .06) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}

.feature-card:hover {
    box-shadow: 0 16px 40px rgba(34, 197, 94, .1);
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, .2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---------- 关于区 ---------- */
.about-section {
    padding: 100px 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, .1);
    border-color: rgba(34, 197, 94, .2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.stat-card span {
    font-size: .9rem;
    color: var(--text-light);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, .08);
    border-color: rgba(34, 197, 94, .2);
}

.highlight-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.highlight-item p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- 页脚（仅备案信息，背景跟随 about） ---------- */
.footer {
    color: var(--text-muted);
    padding: 32px 0 24px;
}

.footer-inner {
    display: flex;
    justify-content: center;
}

.footer-copy {
    font-size: .8rem;
}

/* ---------- 入场动画 ---------- */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   响应式
   ============================================================ */

@media (max-width: 960px) {
    .download-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 { font-size: 3.5rem; line-height: 64px; }
    .tagline { font-size: 3.5rem; line-height: 64px; }
    .hero-text { order: 1; }
    .hero-visual { order: 0; margin-bottom: 20px; }
    .description { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
    /* 隐藏导航栏 */
    .navbar {
        display: none !important;
    }

    /* Hero - 紧凑布局，图标缩小 */
    .hero {
        padding: 48px 0 32px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .hero-text { order: 1; }
    .hero-visual { order: 0; flex: 0 0 auto; margin-bottom: 0; }

    .hero-text h1 { font-size: 1.75rem; line-height: 1.3; }
    .tagline { font-size: 1.15rem; line-height: 1.5; margin-bottom: 8px; }
    .description { font-size: .9rem; max-width: 100%; margin-bottom: 24px; }

    .app-icon-showcase { width: 100px; height: 100px; margin: 16px 0; }
    .app-icon-glow { width: 120px; height: 120px; filter: blur(12px); }
    .app-icon-box { width: 96px; height: 96px; border-radius: 22px; }
    .app-icon-main { border-radius: 22px; }

    .section-title { font-size: 1.5rem; }

    .download-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* 隐藏 features 区 */
    .features-section {
        display: none;
    }

    /* 下载卡片 - 双排紧凑 */
    .download-section { padding: 40px 0 32px; }

    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .download-card {
        padding: 18px 12px 16px;
        border-radius: 12px;
    }

    .download-card h3 {
        font-size: .95rem;
        margin-bottom: 4px;
    }

    .card-desc { display: none; }

    .card-icon {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .card-meta {
        gap: 6px;
        margin-bottom: 10px;
        font-size: .75rem;
    }

    .btn-download {
        padding: 8px 12px;
        font-size: .8rem;
        border-radius: 8px;
    }

    /* about-stats 一排 */
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-card strong {
        font-size: 1.5rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-card span {
        font-size: .8rem;
    }

    /* about-highlights 一排 */
    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .highlight-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        font-size: 1.4rem;
    }

    .highlight-item h4 {
        font-size: .9rem;
    }

    .highlight-item p {
        font-size: .8rem;
    }

    /* 图标尺寸已移至 hero 区 */

    /* 隐藏 about 区 */
    .about-section {
        display: none;
    }

    /* 底部仅保留备案号 */
    .footer-copyright {
        display: none;
    }

    /* 立即下载按钮底部间距 */
    .btn-lg {
        padding: 10px 32px;
        font-size: .95rem;
        margin-bottom: 16px;
    }

    .version-badge {
        display: block;
        margin: 16px auto 0;
        width: fit-content;
    }
}
