        :root {
            --bg-color: #ffffff;
            --text-main: #1a1a2e;
            --text-muted: #4a5568;
            --brand-color: #1a73e8;
            --brand-hover: #1557b0;
            --brand-light: #e8f0fe;
            --surface-light: #f7f8fa;
            --border-color: #e2e8f0;
            --accent-warm: #f59e0b;
            --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
            --card-shadow-hover: 0 10px 25px rgba(26, 115, 232, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text-main);
            background-color: var(--bg-color);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        header {
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 100;
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 24px;
        }
        .logo-box {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .logo-box:hover {
            opacity: 0.85;
        }
        .logo-box svg {
            width: 30px;
            height: 30px;
            fill: var(--brand-color);
        }
        .logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--brand-color);
            letter-spacing: -0.3px;
        }
        nav {
            display: flex;
            gap: 28px;
        }
        nav a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            transition: color 0.2s;
            font-size: 14.5px;
            position: relative;
        }
        nav a:hover,
        nav a.active {
            color: var(--brand-color);
        }
        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--brand-color);
            border-radius: 1px;
        }
        .guide-hero {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
            padding: 60px 24px 32px 24px;
        }
        .guide-hero h1 {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -1.2px;
            margin-bottom: 16px;
            color: #0f172a;
            line-height: 1.25;
        }
        .guide-hero p {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.75;
        }
        .layout-container {
            max-width: 860px;
            margin: 0 auto;
            padding: 0 24px 72px 24px;
        }
        .guide-content h2 {
            font-size: 26px;
            font-weight: 700;
            margin: 48px 0 22px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--brand-light);
            color: #0f172a;
            letter-spacing: -0.4px;
        }
        .guide-content h2:first-of-type {
            margin-top: 0;
        }
        .guide-content h3 {
            font-size: 19px;
            font-weight: 600;
            margin: 32px 0 14px 0;
            color: var(--brand-color);
        }
        .guide-content p {
            font-size: 15px;
            color: var(--text-main);
            margin-bottom: 18px;
            line-height: 1.8;
        }
        .placeholder-image {
            display: block;
            width: 100%;
            height: auto;
            min-height: 360px;
            background-color: #f3f4f6;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin: 28px 0;
            font-size: 14px;
            color: #9ca3af;
            text-align: center;
            font-style: italic;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 60px;
        }
        .step-box {
            background-color: #fafbfc;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 22px 24px;
            margin-bottom: 20px;
            transition: box-shadow 0.2s;
            border-left: 4px solid var(--brand-color);
        }
        .step-box:hover {
            box-shadow: var(--card-shadow);
        }
        .step-title {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0f172a;
        }
        .step-badge {
            background-color: var(--brand-color);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
        .tip-card {
            background-color: #fef9e7;
            border: 1px solid #fde68a;
            border-radius: var(--radius-sm);
            padding: 20px 24px;
            margin: 24px 0;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
        .tip-card::before {
            content: '💡';
            font-size: 20px;
            flex-shrink: 0;
        }
        .tip-card p {
            margin-bottom: 0;
            font-size: 14.5px;
            color: #92400e;
        }
        .video-placeholder {
            background-color: #111827;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            height: 220px;
            margin: 28px 0;
            position: relative;
            overflow: hidden;
        }
        .video-placeholder::after {
            content: '';
            position: absolute;
            width: 64px;
            height: 64px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
        }
        .video-placeholder::before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-left: 24px solid #fff;
            border-top: 14px solid transparent;
            border-bottom: 14px solid transparent;
            z-index: 1;
            transform: translateX(4px);
        }
        footer {
            border-top: 1px solid var(--border-color);
            padding: 64px 24px 36px 24px;
            background-color: #111827;
            color: #9ca3af;
        }
        .footer-grid {
            max-width: 1200px;
            margin: 0 auto 52px auto;
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 36px;
        }
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .guide-hero h1 {
                font-size: 30px;
            }
            nav {
                display: none;
            }
        }
        .footer-brand h4 {
            color: #fff;
            font-size: 17px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
        }
        .footer-brand h4 svg {
            width: 22px;
            height: 22px;
            fill: var(--brand-color);
        }
        .footer-brand p {
            font-size: 13.5px;
            line-height: 1.7;
            color: #9ca3af;
        }
        .footer-col h5 {
            color: #fff;
            font-size: 14px;
            margin-bottom: 18px;
            font-weight: 600;
            letter-spacing: 0.2px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 13.5px;
            transition: color 0.2s;
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 26px;
            border-top: 1px solid #1f2937;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }
        @media (max-width: 640px) {
            .footer-bottom {
                flex-direction: column;
                gap: 14px;
                text-align: center;
            }
        }
        .footer-bottom-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-bottom-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s;
        }
        .footer-bottom-links a:hover {
            color: #fff;
        }