        :root {
            --bg: #060d1a;
            --bg-elevated: #0c1525;
            --bg-card: #111b2e;
            --bg-card-hover: #182538;
            --border: rgba(255, 255, 255, 0.05);
            --border-strong: rgba(255, 255, 255, 0.10);
            --electric: #5b8def;
            --electric-light: #80b5ff;
            --electric-soft: rgba(91, 141, 239, 0.12);
            --electric-glow: rgba(91, 141, 239, 0.06);
            --cyan: #3dd6c8;
            --cyan-soft: rgba(61, 214, 200, 0.12);
            --purple: #8b6fdf;
            --purple-soft: rgba(139, 111, 223, 0.12);
            --text: #e4e8f0;
            --text-secondary: #9ba0b0;
            --text-muted: #6b7080;
            --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
            --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
            --font-mono: 'DM Mono', 'Courier New', monospace;
            --font-sans: system-ui, -apple-system, 'Segoe UI', sans-serif;
        }
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.75;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: radial-gradient(ellipse at 70% 20%, rgba(91, 141, 239, 0.04) 0%, transparent 55%),
                radial-gradient(ellipse at 25% 60%, rgba(139, 111, 223, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 85%, rgba(61, 214, 200, 0.03) 0%, transparent 45%);
            pointer-events: none;
            z-index: 0;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 2.5rem;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 1rem;
            z-index: 200;
            background: var(--electric);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0 0 6px 6px;
            font-family: var(--font-sans);
            font-size: 0.85rem;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(6, 13, 26, 0.88);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 66px;
            gap: 1rem;
        }
        .logo {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            text-decoration: none;
        }
        .logo-img {
            height: 2.2rem;
            width: auto;
            display: block;
            flex-shrink: 0;
        }
        .logo-text .brand {
            font-family: var(--font-display);
            font-size: 1.45rem;
            color: var(--text);
            letter-spacing: -0.01em;
            line-height: 1;
        }
        .logo-text .brand::after {
            content: '.';
            color: var(--electric);
            font-style: italic;
            margin-left: 1px;
        }
        .site-nav ul {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .site-nav a {
            font-family: var(--font-mono);
            font-size: 0.74rem;
            color: var(--text-muted);
            padding: 0.4rem 0.85rem;
            border-radius: 6px;
            transition: all 0.22s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .site-nav a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.03);
        }
        .site-nav a[aria-current="page"] {
            color: var(--electric);
            background: var(--electric-soft);
        }
        main {
            position: relative;
            z-index: 1;
            padding-bottom: 4rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            font-family: var(--font-mono);
            font-size: 0.78rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .btn-outline {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-strong);
        }
        .btn-outline:hover {
            border-color: var(--electric);
            color: var(--electric);
            transform: translateY(-1px);
        }

        .page-hero {
            padding: 4rem 0 2rem;
            text-align: center;
        }
        .page-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 5vw, 4rem);
            font-weight: 400;
            line-height: 1.15;
            color: var(--text);
            letter-spacing: -0.02em;
            margin-bottom: 0.8rem;
        }
        .page-hero h1 em {
            font-style: italic;
            color: var(--electric);
        }
        .page-hero p {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .badge {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            background: var(--cyan-soft);
            color: var(--cyan);
            padding: 0.2rem 0.7rem;
            border-radius: 4px;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

 /* 分类标签容器 */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 2.2rem 0 3.5rem;
    padding: 0 0.5rem;
}

/* 单个标签 */
.category-tab {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(17, 27, 46, 0.7);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    cursor: pointer;
    letter-spacing: 0.04em;
    user-select: none;
    backdrop-filter: blur(6px);
}

.category-tab:hover {
    color: var(--text);
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 选中状态 */
.category-tab.active {
    color: var(--cyan);
    background: var(--cyan-soft);
    border-color: var(--cyan);
    box-shadow: 0 0 12px rgba(61, 214, 200, 0.15);
    font-weight: 600;
    pointer-events: none;
}
        /* 问答板块 */
        .faq-category {
            margin-bottom: 3rem;
        }
        .faq-category h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            color: var(--text);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
            letter-spacing: -0.01em;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.6rem;
        }
        .faq-item {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.25s ease;
        }
        .faq-item:hover {
            border-color: var(--border-strong);
        }
        .faq-item summary {
            padding: 1.1rem 1.3rem;
            font-family: var(--font-body);
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--text);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            user-select: none;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: '+';
            font-family: var(--font-mono);
            font-size: 1.05rem;
            color: var(--cyan);
            transition: transform 0.3s ease;
        }
        .faq-item[open] summary::after {
            content: '−';
            transform: rotate(180deg);
        }
        .faq-answer {
            padding: 0 1.3rem 1.1rem;
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.85;
        }
        .faq-answer strong {
            color: var(--text);
        }
        .faq-answer code {
            background: var(--bg-card);
            padding: 0.1rem 0.4rem;
            border-radius: 3px;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--electric);
        }

       /* 速查表整体容器 */
.quick-ref {
    background: linear-gradient(145deg, rgba(12, 21, 37, 0.9) 0%, rgba(17, 27, 46, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin: 3.5rem 0;
    backdrop-filter: blur(10px);
}

.quick-ref h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.01em;
}

/* 卡片网格 */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

/* 单个方案卡片 */
.ref-item {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 1.2rem 1rem;
    border-left: 3px solid var(--cyan);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.ref-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left, rgba(61, 214, 200, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}
.ref-item:hover::before {
    opacity: 1;
}

.ref-item:hover {
    border-left-color: var(--electric);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ref-item h4 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--cyan);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    position: relative;
}

.ref-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
}

        /* 误区卡片 */
        .myth-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }
        .myth-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
        }
        .myth-card .myth-icon {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }
        .myth-card h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 0.3rem;
        }
        .myth-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 3rem 0;
            position: relative;
            z-index: 1;
        }
        footer .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer-left {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.05rem;
            color: var(--text);
        }
        .footer-logo em {
            color: var(--electric);
            font-style: italic;
        }
        .footer-copy {
            font-family: var(--font-mono);
            font-size: 0.68rem;
            color: var(--text-muted);
        }
        .footer-links {
            display: flex;
            gap: 1.6rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--electric);
        }

        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .myth-cards {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 600px) {
            .container {
                padding: 0 1rem;
            }
            header .container {
                flex-direction: column;
                height: auto;
                padding-top: 0.6rem;
                padding-bottom: 0.6rem;
                gap: 0.3rem;
            }
            .site-nav a {
                font-size: 0.65rem;
                padding: 0.28rem 0.45rem;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            footer .container {
                flex-direction: column;
                text-align: center;
            }
            .footer-left {
                flex-direction: column;
                gap: 0.3rem;
            }
            .footer-links {
                justify-content: center;
                gap: 1rem;
            }
        }