        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }
        :root {
            --bg: #060b14;
            --ink: #e6ecf3;
            --muted: #7b8ba6;
            --primary: #2563eb;
            --primary-bright: #3b82f6;
            --accent: #06b6d4;
            --success: #10b981;
            --warning: #f59e0b;
            --rose: #f43f5e;
            --glass: rgba(255, 255, 255, .025);
            --glass-hover: rgba(255, 255, 255, .05);
            --line: rgba(255, 255, 255, .07);
            --line-bright: rgba(255, 255, 255, .12);
            --card-hover: rgba(37, 99, 235, .06);
            --glow-primary: rgba(37, 99, 235, .15);
            --glow-accent: rgba(6, 182, 212, .1);
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --ease: cubic-bezier(.22, 1, .36, 1);
            --font-display: 'Syne', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;
            --font-mono: 'DM Mono', monospace;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%
        }
        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale
        }
        ::selection {
            background: var(--primary-bright);
            color: #fff
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s var(--ease)
        }
        ul {
            list-style: none
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px)
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -.02em
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 70% 50% at 15% 85%, rgba(37, 99, 235, .05), transparent),
                radial-gradient(ellipse 55% 45% at 85% 15%, rgba(6, 182, 212, .04), transparent),
                radial-gradient(ellipse 40% 35% at 50% 50%, rgba(16, 185, 129, .02), transparent)
        }

        /* 导航栏（与首页一致） */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(20px) saturate(1.4);
            -webkit-backdrop-filter: blur(20px) saturate(1.4);
            border-bottom: 1px solid var(--line);
            background: rgba(6, 11, 20, .7)
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: .05em;
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 26px
        }
        .nav-right a {
            font-size: .8rem;
            font-weight: 500;
            color: var(--muted);
            position: relative;
            letter-spacing: .02em;
            white-space: nowrap
        }
        .nav-right a:hover {
            color: var(--ink)
        }
        .nav-right a.active {
            color: var(--accent)
        }
        .nav-download {
            padding: 8px 18px;
            border-radius: 6px;
            border: 1px solid rgba(59, 130, 246, .35);
            color: #3b82f6 !important;
            font-weight: 600;
            font-size: .8rem;
            transition: all .3s ease;
            white-space: nowrap
        }
        .nav-download:hover {
            background: rgba(59, 130, 246, .1);
            box-shadow: 0 0 20px rgba(59, 130, 246, .12)
        }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ink);
            font-size: 1.4rem;
            cursor: pointer;
            padding: 4px
        }

        /* 面包屑 */
        .breadcrumb {
            position: relative;
            z-index: 1;
            padding: 84px 0 0;
            font-family: var(--font-mono);
            font-size: .78rem;
            color: var(--muted)
        }
        .breadcrumb a {
            color: var(--muted)
        }
        .breadcrumb a:hover {
            color: var(--accent)
        }
        .breadcrumb .sep {
            margin: 0 8px;
            opacity: .4
        }

        /* 下载Hero */
        .dl-hero {
            position: relative;
            z-index: 1;
            padding: clamp(32px, 5vh, 60px) 0 clamp(60px, 10vh, 120px)
        }
        .dl-hero-inner {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: clamp(40px, 6vw, 100px);
            align-items: center
        }
        .dl-hero-text .overline {
            font-family: var(--font-mono);
            font-size: .78rem;
            font-weight: 400;
            color: var(--accent);
            letter-spacing: .2em;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px
        }
        .dl-hero-text .overline::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--accent)
        }
        .dl-hero-text h1 {
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            line-height: 1.05;
            margin-bottom: 20px
        }
        .dl-hero-text h1 .grad {
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .dl-hero-text p {
            color: var(--muted);
            font-size: 1rem;
            max-width: 440px;
            line-height: 1.8;
            margin-bottom: 36px
        }
        .dl-meta {
            display: flex;
            gap: 32px;
            flex-wrap: wrap
        }
        .dl-meta-item {
            font-family: var(--font-mono);
            font-size: .78rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 8px
        }
        .dl-meta-item .val {
            color: var(--ink);
            font-weight: 500
        }
        .dl-meta-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent)
        }
        .dl-hero-visual {
            position: relative
        }
        .dl-quad {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px
        }
        .dl-quad-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid var(--line);
            background: var(--glass);
            backdrop-filter: blur(12px);
            padding: clamp(20px, 2.5vw, 30px);
            transition: all .4s var(--ease);
            display: flex;
            flex-direction: column
        }
        .dl-quad-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .04), transparent 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity .3s ease
        }
        .dl-quad-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            opacity: 0;
            transition: opacity .4s ease
        }
        .dl-quad-card.c-win::after {
            background: linear-gradient(90deg, #3b82f6, rgba(59, 130, 246, .3))
        }
        .dl-quad-card.c-mac::after {
            background: linear-gradient(90deg, #8b5cf6, rgba(139, 92, 246, .3))
        }
        .dl-quad-card.c-ios::after {
            background: linear-gradient(90deg, #10b981, rgba(16, 185, 129, .3))
        }
        .dl-quad-card.c-and::after {
            background: linear-gradient(90deg, #f43f5e, rgba(244, 63, 94, .3))
        }
        .dl-quad-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, .1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .35)
        }
        .dl-quad-card:hover::before {
            opacity: 1
        }
        .dl-quad-card:hover::after {
            opacity: 1
        }
        .qc-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px
        }
        .qc-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, .06);
            flex-shrink: 0;
            font-size: 1.2rem
        }
        .qc-icon.i-win {
            background: rgba(37, 99, 235, .1)
        }
        .qc-icon.i-mac {
            background: rgba(139, 92, 246, .1)
        }
        .qc-icon.i-ios {
            background: rgba(16, 185, 129, .1)
        }
        .qc-icon.i-and {
            background: rgba(244, 63, 94, .1)
        }
        .qc-name {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700
        }
        .qc-ver {
            font-family: var(--font-mono);
            font-size: .72rem;
            color: var(--muted);
            margin-top: 2px
        }
        .qc-desc {
            color: var(--muted);
            font-size: .82rem;
            line-height: 1.6;
            margin-bottom: 18px;
            flex: 1
        }
        .qc-meta {
            font-family: var(--font-mono);
            font-size: .72rem;
            color: var(--muted);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 6px
        }
        .qc-meta .dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--muted)
        }
        .qc-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 11px;
            border-radius: 8px;
            font-weight: 600;
            font-size: .85rem;
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            transition: all .3s ease
        }
        .qc-btn.b-win {
            background: rgba(59, 130, 246, .08);
            border: 1px solid rgba(59, 130, 246, .2);
            color: #3b82f6
        }
        .qc-btn.b-win:hover {
            background: rgba(59, 130, 246, .16);
            box-shadow: 0 0 24px rgba(59, 130, 246, .12)
        }
        .qc-btn.b-mac {
            background: rgba(139, 92, 246, .08);
            border: 1px solid rgba(139, 92, 246, .2);
            color: #8b5cf6
        }
        .qc-btn.b-mac:hover {
            background: rgba(139, 92, 246, .16);
            box-shadow: 0 0 24px rgba(139, 92, 246, .12)
        }
        .qc-btn.b-ios {
            background: rgba(16, 185, 129, .08);
            border: 1px solid rgba(16, 185, 129, .2);
            color: #10b981
        }
        .qc-btn.b-ios:hover {
            background: rgba(16, 185, 129, .16);
            box-shadow: 0 0 24px rgba(16, 185, 129, .12)
        }
        .qc-btn.b-and {
            background: rgba(244, 63, 94, .08);
            border: 1px solid rgba(244, 63, 94, .2);
            color: #f43f5e
        }
        .qc-btn.b-and:hover {
            background: rgba(244, 63, 94, .16);
            box-shadow: 0 0 24px rgba(244, 63, 94, .12)
        }
        .dl-quad-glow {
            position: absolute;
            inset: -80px;
            z-index: -1;
            background: radial-gradient(ellipse at center, rgba(37, 99, 235, .04), rgba(6, 182, 212, .02), transparent 60%);
            filter: blur(50px);
            animation: orbFloat 8s ease-in-out infinite;
            pointer-events: none
        }
        @keyframes orbFloat {
            0%,
            100% {
                transform: scale(1)
            }
            50% {
                transform: scale(1.12)
            }
        }

        /* 平台详细区域 */
        .platforms {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 120px) 0
        }
        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: clamp(36px, 4vw, 56px);
            flex-wrap: wrap;
            gap: 16px
        }
        .section-head h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            line-height: 1.1
        }
        .section-head .mono {
            font-family: var(--font-mono);
            font-size: .82rem;
            color: var(--muted)
        }
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px
        }
        .plat-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            background: var(--glass);
            padding: clamp(24px, 2.5vw, 36px);
            transition: all .4s var(--ease);
            cursor: pointer;
            display: flex;
            flex-direction: column
        }
        .plat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .04), transparent 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity .3s ease
        }
        .plat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
            opacity: 0;
            transition: opacity .4s ease
        }
        .plat-card:hover {
            transform: translateY(-8px);
            border-color: rgba(37, 99, 235, .2);
            box-shadow: 0 24px 64px rgba(0, 0, 0, .4), 0 0 40px rgba(37, 99, 235, .04)
        }
        .plat-card:hover::before {
            opacity: 1
        }
        .plat-card:hover::after {
            opacity: 1
        }
        .plat-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, .06);
            transition: all .4s ease;
            font-size: 1.5rem
        }
        .plat-card:hover .plat-icon {
            box-shadow: 0 0 20px rgba(37, 99, 235, .12)
        }
        .plat-icon.win {
            background: rgba(37, 99, 235, .08)
        }
        .plat-icon.mac {
            background: rgba(139, 92, 246, .08)
        }
        .plat-icon.ios {
            background: rgba(16, 185, 129, .08)
        }
        .plat-icon.and {
            background: rgba(244, 63, 94, .08)
        }
        .plat-name {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px
        }
        .plat-ver {
            font-family: var(--font-mono);
            font-size: .75rem;
            color: var(--muted);
            margin-bottom: 16px
        }
        .plat-desc {
            color: var(--muted);
            font-size: .88rem;
            line-height: 1.6;
            margin-bottom: 24px;
            flex: 1
        }
        .plat-size {
            font-family: var(--font-mono);
            font-size: .75rem;
            color: var(--muted);
            margin-bottom: 16px
        }
        .plat-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            background: rgba(37, 99, 235, .06);
            border: 1px solid rgba(37, 99, 235, .15);
            color: #3b82f6;
            font-weight: 600;
            font-size: .88rem;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all .3s ease
        }
        .plat-btn:hover {
            background: rgba(37, 99, 235, .12);
            box-shadow: 0 0 24px rgba(37, 99, 235, .1)
        }

        /* 版本历史 */
        .history {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0
        }
        .version-timeline {
            position: relative;
            padding-left: 40px
        }
        .version-timeline::before {
            content: '';
            position: absolute;
            left: 12px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, #3b82f6, #06b6d4, transparent);
            opacity: .25
        }
        .version-item {
            position: relative;
            padding: 0 0 40px
        }
        .version-item:last-child {
            padding-bottom: 0
        }
        .version-item::before {
            content: '';
            position: absolute;
            left: -32px;
            top: 6px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            border: 2px solid #3b82f6;
            background: var(--bg);
            transition: all .3s ease
        }
        .version-item:hover::before {
            background: #3b82f6;
            box-shadow: 0 0 12px rgba(37, 99, 235, .4)
        }
        .version-head {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 10px
        }
        .version-tag {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700
        }
        .version-date {
            font-family: var(--font-mono);
            font-size: .75rem;
            color: var(--muted)
        }
        .version-badge {
            font-family: var(--font-mono);
            font-size: .68rem;
            padding: 3px 10px;
            border-radius: 4px;
            letter-spacing: .06em
        }
        .version-badge.latest {
            background: rgba(37, 99, 235, .1);
            border: 1px solid rgba(37, 99, 235, .2);
            color: #3b82f6
        }
        .version-badge.stable {
            background: rgba(255, 255, 255, .03);
            border: 1px solid var(--line);
            color: var(--muted)
        }
        .version-content {
            color: var(--muted);
            font-size: .9rem;
            line-height: 1.8
        }
        .version-content li {
            position: relative;
            padding-left: 16px;
            margin-bottom: 4px
        }
        .version-content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #3b82f6;
            opacity: .6
        }

        /* 下载统计横幅 */
        .dl-stats-strip {
            position: relative;
            z-index: 1;
            padding: clamp(30px, 4vh, 50px) 0
        }
        .dl-stats-inner {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center
        }
        .dl-stat-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: var(--glass);
            font-family: var(--font-mono);
            font-size: .8rem;
            color: var(--muted);
            letter-spacing: .03em;
            transition: all .3s ease
        }
        .dl-stat-badge:hover {
            border-color: rgba(37, 99, 235, .15);
            background: rgba(37, 99, 235, .02)
        }
        .dl-stat-badge .num {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -.02em
        }
        .dl-stat-badge .num.c {
            color: #3b82f6
        }
        .dl-stat-badge .num.v {
            color: #8b5cf6
        }
        .dl-stat-badge .num.l {
            color: #10b981
        }
        .dl-stat-badge .num.r {
            color: #f43f5e
        }

        /* FAQ CTA */
        .faq-cta {
            position: relative;
            z-index: 1;
            padding: clamp(60px, 8vh, 100px) 0
        }
        .faq-cta-inner {
            border-radius: var(--radius-xl);
            border: 1px solid var(--line);
            background: var(--glass);
            padding: clamp(40px, 5vw, 64px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden
        }
        .faq-cta-inner::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(37, 99, 235, .06), transparent 60%);
            pointer-events: none
        }
        .faq-cta-inner h3 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            line-height: 1.2
        }
        .faq-cta-inner p {
            color: var(--muted);
            font-size: .92rem;
            margin-top: 8px
        }
        .faq-cta-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0
        }
        .btn-glow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 8px;
            background: #2563eb;
            color: #fff;
            font-weight: 700;
            font-size: .9rem;
            font-family: var(--font-body);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all .3s ease
        }
        .btn-glow::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            border-radius: 10px;
            z-index: -1;
            opacity: 0;
            filter: blur(12px);
            transition: opacity .4s ease
        }
        .btn-glow:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(37, 99, 235, .25)
        }
        .btn-glow:hover::before {
            opacity: 1
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 8px;
            background: transparent;
            border: 1px solid var(--line-bright);
            color: var(--ink);
            font-weight: 600;
            font-size: .9rem;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all .3s ease
        }
        .btn-ghost:hover {
            border-color: rgba(255, 255, 255, .15);
            background: var(--glass-hover);
            transform: translateY(-2px)
        }

        /* 页脚 */
        .footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--line);
            padding: 50px 0 24px
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: clamp(20px, 3.5vw, 48px);
            margin-bottom: 36px
        }
        .footer-brand p {
            color: var(--muted);
            font-size: .84rem;
            max-width: 260px;
            line-height: 1.7;
            margin-top: 12px
        }
        .footer-col h4 {
            font-family: var(--font-mono);
            font-size: .72rem;
            font-weight: 500;
            color: var(--ink);
            margin-bottom: 16px;
            letter-spacing: .1em;
            text-transform: uppercase
        }
        .footer-col li {
            margin-bottom: 9px
        }
        .footer-col a {
            color: var(--muted);
            font-size: .84rem;
            transition: all .3s var(--ease)
        }
        .footer-col a:hover {
            color: #3b82f6;
            padding-left: 3px
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, .04);
            font-size: .74rem;
            color: var(--muted);
            font-family: var(--font-mono)
        }

        /* 滚动动画 */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: all .7s var(--ease)
        }
        .reveal.show {
            opacity: 1;
            transform: translateY(0)
        }
        .reveal-d1 {
            transition-delay: .1s
        }
        .reveal-d2 {
            transition-delay: .2s
        }
        .reveal-d3 {
            transition-delay: .3s
        }
        .reveal-d4 {
            transition-delay: .4s
        }
        .reveal-d5 {
            transition-delay: .5s
        }

        @media(max-width:1024px) {
            .dl-hero-inner {
                grid-template-columns: 1fr
            }
            .dl-quad {
                max-width: 100%
            }
            .platform-grid {
                grid-template-columns: 1fr 1fr
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr
            }
            .version-timeline {
                padding-left: 32px
            }
        }
        @media(max-width:768px) {
            .nav-right a:not(.nav-download) {
                display: none
            }
            .mobile-btn {
                display: block
            }
            .dl-quad {
                grid-template-columns: 1fr
            }
            .platform-grid {
                grid-template-columns: 1fr
            }
            .footer-grid {
                grid-template-columns: 1fr
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center
            }
            .faq-cta-inner {
                flex-direction: column;
                text-align: center
            }
            .faq-cta-actions {
                justify-content: center
            }
            .dl-stats-inner {
                flex-direction: column;
                align-items: center
            }
            .version-timeline {
                padding-left: 28px
            }
            .version-item::before {
                left: -24px;
                width: 7px;
                height: 7px
            }
        }
        @media(max-width:480px) {
            .dl-meta {
                flex-direction: column;
                gap: 12px
            }
            .dl-stat-badge {
                padding: 12px 16px;
                font-size: .72rem
            }
            .dl-stat-badge .num {
                font-size: 1.3rem
            }
            .section-head {
                flex-direction: column;
                align-items: flex-start
            }
        }