﻿:root { --primary: rgb(0, 122, 255); --primary-hover: #0062cc; --primary-light: rgba(0, 122, 255, 0.1); --bg-body: #f4f7fb; --bg-white: #ffffff; --text-main: #1e293b; --text-muted: #64748b; --border-color: #e2e8f0; --header-bg: #0b1120; --footer-bg: #040814; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background: var(--header-bg); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
        .header-inner { height: 70px; display: flex; align-items: center; justify-content: space-between; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: #fff; white-space: nowrap; }
        .desktop-nav { display: none; } .desktop-nav ul { display: flex; gap: 30px; } .desktop-nav a { color: #cbd5e1; font-size: 15px; font-weight: 500; position: relative; padding: 8px 0; } .desktop-nav a:hover { color: var(--primary); } .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: 0.3s; } .desktop-nav a:hover::after { width: 100%; }
        .header-right { display: flex; align-items: center; gap: 20px; } .btn-download-sm { display: none; background: var(--primary); color: #fff; padding: 8px 20px; border-radius: 20px; font-weight: 600; font-size: 14px; } .btn-download-sm:hover { background: var(--primary-hover); transform: translateY(-1px); } .menu-toggle { display: block; background: none; border: none; cursor: pointer; padding: 5px; } .menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }
        @media (min-width: 992px) { .desktop-nav, .btn-download-sm { display: block; } .menu-toggle { display: none; } }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(4px); } .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--header-bg); z-index: 999; transition: 0.4s; display: flex; flex-direction: column; } .drawer-active .drawer-overlay { opacity: 1; visibility: visible; } .drawer-active .mobile-drawer { left: 0; } .drawer-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; } .btn-close { background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; } .drawer-body { padding: 20px; overflow-y: auto; flex: 1; } .drawer-nav a { display: block; padding: 15px 0; color: #cbd5e1; border-bottom: 1px solid rgba(255,255,255,0.05); font-weight: 500; } .drawer-nav a:hover { color: var(--primary); padding-left: 10px; } .drawer-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); } .btn-primary { background: var(--primary); color: #fff; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 16px; display: inline-flex; justify-content: center; }
        .site-footer { background: var(--footer-bg); color: #94a3b8; padding: 60px 0 30px; border-top: 1px solid #1e293b; margin-top: 50px;} .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; } .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.8; } .footer-title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; } .footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--primary); } .footer-links li { margin-bottom: 12px; } .footer-links a { font-size: 14px; } .footer-links a:hover { color: var(--primary); padding-left: 5px; } .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 14px; } @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

        
        .tag-hero { background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%); padding: 60px 0; color: #fff; text-align: center; position: relative; overflow: hidden;}
        .tag-hero::before { content: '#'; position: absolute; font-size: 300px; color: rgba(255,255,255,0.03); right: 10%; top: -50px; font-weight: bold; line-height: 1; pointer-events: none;}
        .tag-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; position: relative; z-index: 1;}
        .tag-hero p { font-size: 16px; color: #94a3b8; max-width: 600px; margin: 0 auto; position: relative; z-index: 1;}

        .tag-container { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); margin-top: -30px; position: relative; z-index: 10; margin-bottom: 50px;}
        
        .tag-guide { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
        .tag-guide-icon { width: 40px; height: 40px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
        .tag-guide-text h3 { font-size: 18px; margin-bottom: 5px; }
        .tag-guide-text p { font-size: 13px; color: var(--text-muted); }

        .tag-cloud { display: flex; flex-wrap: wrap; gap: 15px; }
        .tag-item { display: inline-flex; align-items: center; background: var(--bg-body); border: 1px solid var(--border-color); padding: 10px 20px; border-radius: 30px; font-size: 15px; color: var(--text-main); font-weight: 500; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; }
        .tag-item .count { background: #e2e8f0; color: #475569; font-size: 12px; padding: 2px 8px; border-radius: 10px; margin-left: 10px; transition: 0.3s; }
        
        .tag-item:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,122,255,0.3); }
        .tag-item:hover .count { background: rgba(255,255,255,0.2); color: #fff; }

        .download-banner { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none"><rect width="100%" height="100%" fill="%230f172a"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>') center/cover; border-radius: 16px; padding: 40px; text-align: center; color: #fff; }
        .download-banner h2 { font-size: 24px; margin-bottom: 15px; }
        .download-banner p { color: #cbd5e1; margin-bottom: 25px; }