﻿:root { --theme-color: rgb(0,0,0); --bg-base: #050505; --bg-card: #121212; --text-main: #ffffff; --text-sub: #a0a0a0; --accent-color: #d4af37; --border-color: #222222; --radius: 8px; --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--bg-base); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { position: sticky; top: 0; width: 100%; z-index: 100; background: rgba(5,5,5,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .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: var(--text-main); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; align-items: center; }
        .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-sub); transition: var(--transition); }
        .nav-desktop a:hover { color: var(--accent-color); }
        .menu-btn { display: none; background: none; border: none; color: var(--text-main); font-size: 24px; cursor: pointer; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-card); z-index: 999; box-shadow: 4px 0 20px rgba(0,0,0,0.5); transition: var(--transition); overflow-y: auto; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; color: var(--text-sub); font-size: 28px; cursor: pointer; }
        .drawer-nav { padding: 20px 0; }
        .drawer-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }

        .footer { background: var(--theme-color); border-top: 1px solid var(--border-color); padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
        .footer-desc { color: var(--text-sub); font-size: 14px; margin-top:20px; }
        .footer-title { font-size: 16px; font-weight: 600; margin-bottom: 25px; color: #fff; }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: var(--text-sub); font-size: 14px; }
        .footer-links a:hover { color: var(--accent-color); }
        .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 30px; display: flex; justify-content: space-between; color: #666; font-size: 13px; }

        
        .page-banner { background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-base) 100%); padding: 60px 0; border-bottom: 1px solid var(--border-color); text-align: center; }
        .page-title { font-size: 32px; font-weight: 700; margin-bottom: 15px; }
        .page-desc { color: var(--text-sub); max-width: 600px; margin: 0 auto; }
        
        .tag-cloud-section { padding: 60px 0 100px; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: inline-flex; align-items: center; padding: 10px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 30px; transition: var(--transition); color: var(--text-main); }
        .tag-item:hover { background: var(--accent-color); color: #000; border-color: var(--accent-color); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212,175,55,0.2); }
        .tag-name { font-weight: 500; font-size: 15px; }
        .tag-count { background: rgba(255,255,255,0.1); font-size: 12px; padding: 2px 8px; border-radius: 12px; margin-left: 10px; }
        .tag-item:hover .tag-count { background: rgba(0,0,0,0.2); }

        @media (max-width: 768px) {
            .nav-desktop { display: none; } .menu-btn { display: block; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
            .tag-item { padding: 8px 15px; }
        }