        :root {
            --bg-primary: #080c1a;
            --bg-secondary: #0d1330;
            --bg-card: rgba(255, 255, 255, 0.04);
            --bg-card-hover: rgba(255, 255, 255, 0.07);
            --border-glass: rgba(255, 255, 255, 0.08);
            --border-active: rgba(124, 58, 237, 0.25);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.75);
            --text-muted: rgba(255, 255, 255, 0.45);
            --accent-purple: #7c3aed;
            --accent-blue: #3b82f6;
            --accent-cyan: #06b6d4;
            --accent-pink: #ec4899;
            --accent-green: #10b981;
            --accent-amber: #f59e0b;
            --gradient-main: linear-gradient(135deg, #7c3aed, #3b82f6);
            --gradient-warm: linear-gradient(135deg, #ec4899, #f59e0b);
            --gradient-cool: linear-gradient(135deg, #06b6d4, #3b82f6);
            --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(59, 130, 246, 0.3));
            --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.15), 0 0 120px rgba(59, 130, 246, 0.08);
            --shadow-card: 0 0 40px rgba(124, 58, 237, 0.08);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }
        body {
            font-family: var(--font-family);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        ::-webkit-scrollbar {
            width: 5px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-purple);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #9b6dff;
        }

        canvas#particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        .app {
            position: relative;
            z-index: 1;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .container-narrow {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 14px 0;
            background: rgba(8, 12, 26, 0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glass);
            transition: all var(--transition-smooth);
        }
        header.scrolled {
            background: rgba(8, 12, 26, 0.94);
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
            padding: 10px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 800;
            font-size: 21px;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            flex-shrink: 0;
            transition: opacity var(--transition-fast);
        }
        .logo:hover {
            opacity: 0.85;
        }
        .logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: var(--gradient-main);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 900;
            color: #fff;
            box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
        }
        .logo:hover .logo-icon {
            transform: rotate(-6deg) scale(1.06);
        }
        .logo span {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-wrap: wrap;
        }
        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all var(--transition-fast);
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        nav a:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.06);
        }
        nav a.active {
            color: #fff;
            background: rgba(124, 58, 237, 0.2);
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.08);
            position: relative;
        }
        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 2px;
            border-radius: 2px;
            background: var(--gradient-main);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-download-small {
            padding: 8px 18px;
            border-radius: 8px;
            background: var(--gradient-main);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 28px rgba(124, 58, 237, 0.22);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .btn-download-small:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 44px rgba(124, 58, 237, 0.4);
        }
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 101;
        }
        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all var(--transition-smooth);
        }
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        @media (max-width: 820px) {
            .mobile-toggle {
                display: flex;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 14px 0 6px;
                gap: 2px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 12px 16px;
                font-size: 15px;
                text-align: center;
            }
            nav a.active::after {
                display: none;
            }
            .header-actions .btn-download-small {
                display: none;
            }
            .header-actions .btn-download-small.mobile-show {
                display: inline-flex;
            }
        }
        @media (min-width: 821px) {
            .header-actions .btn-download-small.mobile-show {
                display: none;
            }
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            padding: 140px 0 50px;
            position: relative;
            text-align: center;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 55%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.25), transparent);
            opacity: 0.6;
        }
        .page-hero .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--accent-cyan);
            background: rgba(6, 182, 212, 0.07);
            padding: 4px 14px;
            border-radius: 50px;
            border: 1px solid rgba(6, 182, 212, 0.08);
            margin-bottom: 14px;
        }
        .page-hero h1 {
            font-size: clamp(34px, 5vw, 52px);
            font-weight: 800;
            letter-spacing: -1.2px;
            margin-bottom: 10px;
            line-height: 1.1;
        }
        .page-hero h1 .highlight {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-hero .hero-subtitle {
            font-size: clamp(15px, 1.1vw, 17px);
            color: var(--text-secondary);
            max-width: 620px;
            margin: 0 auto 12px;
            line-height: 1.7;
        }

        /* ===== PULSE BAR ===== */
        .pulse-bar-section {
            padding: 30px 0 50px;
            position: relative;
            z-index: 2;
        }
        .pulse-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }
        @media (max-width: 768px) {
            .pulse-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
        }
        @media (max-width: 480px) {
            .pulse-bar {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
        }
        .pulse-item {
            padding: 16px 18px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            display: flex;
            align-items: center;
            gap: 12px;
            backdrop-filter: blur(8px);
            transition: all var(--transition-smooth);
            cursor: default;
        }
        .pulse-item:hover {
            border-color: var(--border-active);
            background: var(--bg-card-hover);
            box-shadow: var(--shadow-card);
            transform: translateY(-2px);
        }
        .pulse-icon-wrap {
            width: 40px;
            height: 40px;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            position: relative;
        }
        .pulse-icon-wrap.purple {
            background: rgba(124, 58, 237, 0.12);
        }
        .pulse-icon-wrap.cyan {
            background: rgba(6, 182, 212, 0.1);
        }
        .pulse-icon-wrap.green {
            background: rgba(16, 185, 129, 0.1);
        }
        .pulse-icon-wrap.amber {
            background: rgba(245, 158, 11, 0.1);
        }
        .pulse-icon-wrap .live-dot {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22d3ee;
            animation: blink-dot 1.5s ease-in-out infinite;
        }
        @keyframes blink-dot {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.15;
            }
        }
        .pulse-info .pulse-value {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1;
        }
        .pulse-info .pulse-label {
            font-size: 10px;
            color: var(--text-muted);
            margin-top: 2px;
            letter-spacing: 0.3px;
        }

        /* ===== DOWNLOAD OPTIONS ===== */
        .download-options {
            padding: 40px 0 70px;
            position: relative;
        }
        .section-heading {
            text-align: center;
            margin-bottom: 36px;
        }
        .section-heading .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--accent-cyan);
            background: rgba(6, 182, 212, 0.07);
            padding: 4px 14px;
            border-radius: 50px;
            border: 1px solid rgba(6, 182, 212, 0.08);
            margin-bottom: 12px;
        }
        .section-heading h2 {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 700;
            letter-spacing: -0.8px;
            margin-bottom: 8px;
        }
        .section-heading h2 .highlight {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-heading p {
            color: var(--text-secondary);
            font-size: 14px;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .download-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 1024px) {
            .download-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 540px) {
            .download-grid {
                grid-template-columns: 1fr;
                max-width: 360px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        .download-card {
            padding: 30px 20px 24px;
            border-radius: var(--radius-lg);
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(8px);
            transition: all var(--transition-smooth);
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .download-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-glow);
            opacity: 0;
            transition: opacity 0.5s ease;
            border-radius: var(--radius-lg);
            pointer-events: none;
        }
        .download-card:hover {
            transform: translateY(-6px);
            border-color: rgba(124, 58, 237, 0.2);
            box-shadow: var(--shadow-glow);
        }
        .download-card:hover::before {
            opacity: 1;
        }
        .download-card.featured {
            border-color: rgba(124, 58, 237, 0.18);
            background: rgba(124, 58, 237, 0.04);
        }
        .download-card.featured::after {
            content: '推荐';
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            background: var(--gradient-main);
            color: #fff;
            z-index: 2;
            letter-spacing: 0.5px;
            box-shadow: 0 0 18px rgba(124, 58, 237, 0.3);
        }
        .download-card .dc-icon {
            font-size: 40px;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            display: block;
            transition: transform var(--transition-smooth);
        }
        .download-card:hover .dc-icon {
            transform: scale(1.1) translateY(-3px);
        }
        .download-card h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 3px;
            position: relative;
            z-index: 1;
        }
        .download-card .platform-desc {
            color: var(--text-secondary);
            font-size: 12px;
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
        }
        .download-card .version-info {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.03);
            padding: 3px 10px;
            border-radius: 50px;
            display: inline-block;
        }
        .download-card .btn-download {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: 11px;
            background: var(--gradient-main);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all var(--transition-smooth);
            box-shadow: 0 0 26px rgba(124, 58, 237, 0.2);
            position: relative;
            z-index: 1;
            width: 100%;
            justify-content: center;
            white-space: nowrap;
        }
        .download-card .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 44px rgba(124, 58, 237, 0.38);
        }
        .download-card .btn-download.outline {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-glass);
            box-shadow: none;
        }
        .download-card .btn-download.outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 36px rgba(0, 0, 0, 0.35);
        }

        /* ===== INSTALL STEPS ===== */
        .install-steps {
            padding: 30px 0 70px;
            position: relative;
        }
        .install-steps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.18), transparent);
            pointer-events: none;
        }
        .steps-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 12px;
        }
        @media (max-width: 720px) {
            .steps-row {
                grid-template-columns: 1fr;
                max-width: 380px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        .step-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 22px 18px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            transition: all var(--transition-smooth);
            cursor: default;
            position: relative;
        }
        .step-card:hover {
            border-color: rgba(124, 58, 237, 0.2);
            background: var(--bg-card-hover);
            transform: translateX(3px);
            box-shadow: var(--shadow-card);
        }
        .step-num {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--gradient-main);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 17px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
        }
        .step-content h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        .step-content p {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .step-content a {
            color: var(--accent-cyan);
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        .step-content a:hover {
            color: #67e8f9;
        }

        /* ===== VERSION HIGHLIGHTS ===== */
        .version-highlights {
            padding: 30px 0 70px;
            position: relative;
        }
        .version-highlights::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.18), transparent);
            pointer-events: none;
        }
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 12px;
        }
        @media (max-width: 720px) {
            .highlights-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        .highlight-card {
            padding: 24px 20px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            text-align: center;
            transition: all var(--transition-smooth);
            cursor: default;
            position: relative;
            overflow: hidden;
        }
        .highlight-card:hover {
            border-color: rgba(124, 58, 237, 0.18);
            background: var(--bg-card-hover);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }
        .highlight-card .hl-emoji {
            font-size: 36px;
            display: block;
            margin-bottom: 10px;
            transition: transform var(--transition-smooth);
        }
        .highlight-card:hover .hl-emoji {
            transform: scale(1.15);
        }
        .highlight-card h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .highlight-card p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .highlight-card .hl-badge {
            display: inline-block;
            margin-top: 8px;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 50px;
            background: rgba(124, 58, 237, 0.1);
            color: #b794f4;
            border: 1px solid rgba(124, 58, 237, 0.15);
        }

        /* ===== SYSTEM REQ ===== */
        .system-req {
            padding: 30px 0 60px;
            position: relative;
        }
        .system-req::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.18), transparent);
            pointer-events: none;
        }
        .req-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 10px;
        }
        @media (max-width: 820px) {
            .req-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .req-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        .req-item {
            padding: 18px 16px;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            transition: all var(--transition-smooth);
            text-align: center;
            cursor: default;
        }
        .req-item:hover {
            border-color: rgba(124, 58, 237, 0.15);
            background: var(--bg-card-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
        }
        .req-item .req-icon {
            font-size: 24px;
            display: block;
            margin-bottom: 6px;
        }
        .req-item h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        .req-item p {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ===== SAFE DOWNLOAD ===== */
        .safe-download {
            padding: 20px 0 70px;
            position: relative;
        }
        .safe-download::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.18), transparent);
            pointer-events: none;
        }
        .safe-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            padding: 26px 32px;
            border-radius: var(--radius-lg);
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            backdrop-filter: blur(12px);
            transition: all var(--transition-smooth);
        }
        .safe-wrap:hover {
            border-color: rgba(124, 58, 237, 0.14);
            box-shadow: var(--shadow-glow);
        }
        .safe-left {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .safe-left .safe-icon {
            width: 46px;
            height: 46px;
            border-radius: 13px;
            background: var(--gradient-main);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 0 28px rgba(124, 58, 237, 0.2);
        }
        .safe-text h4 {
            font-size: 14px;
            font-weight: 600;
        }
        .safe-text p {
            font-size: 11px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .safe-right {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .safe-right .safe-tag {
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 10px;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-glass);
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .safe-right .safe-tag.verified {
            background: rgba(34, 211, 238, 0.05);
            border-color: rgba(34, 211, 238, 0.1);
            color: #22d3ee;
        }
        @media (max-width: 640px) {
            .safe-wrap {
                padding: 20px 16px;
                flex-direction: column;
                align-items: flex-start;
            }
            .safe-right {
                width: 100%;
            }
        }

        /* ===== FOOTER ===== */
        footer {
            padding: 36px 0 28px;
            border-top: 1px solid var(--border-glass);
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }
        .footer-inner .copy {
            font-size: 12px;
            color: var(--text-muted);
        }
        .footer-inner .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-inner .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 12px;
            transition: color var(--transition-fast);
        }
        .footer-inner .footer-links a:hover {
            color: var(--text-primary);
        }
        @media (max-width: 640px) {
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .footer-inner .footer-links {
                justify-content: center;
            }
        }

        /* ===== SCROLL TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-glass);
            color: var(--text-secondary);
            font-size: 16px;
            cursor: pointer;
            backdrop-filter: blur(12px);
            transition: all var(--transition-smooth);
            opacity: 0;
            transform: translateY(16px);
            pointer-events: none;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .scroll-top:hover {
            background: rgba(124, 58, 237, 0.14);
            border-color: rgba(124, 58, 237, 0.28);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 0 28px rgba(124, 58, 237, 0.14);
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        @keyframes fade-up {
            0% {
                opacity: 0;
                transform: translateY(22px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-up {
            animation: fade-up 0.7s ease both;
        }
        .fade-up-delay-1 {
            animation-delay: 0.1s;
        }
        .fade-up-delay-2 {
            animation-delay: 0.2s;
        }
        .fade-up-delay-3 {
            animation-delay: 0.3s;
        }