﻿:root { --primary-color: rgb(90,200,250); --text-dark: #1e293b; --text-normal: #475569; --bg-body: #f8fafc; --bg-white: #ffffff; --border-color: #e2e8f0; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-body); color: var(--text-normal); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { background-color: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
        .header .container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 36px; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: var(--text-dark); }
        .nav-desktop { display: flex; gap: 30px; } .nav-desktop a { font-weight: 500; color: var(--text-dark); }
        .menu-btn { display: none; font-size: 24px; background: none; border: none; cursor: pointer; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 999; transition: all 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; } .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px 0; overflow-y: auto; } .drawer-nav a { display: block; padding: 15px 20px; border-bottom: 1px solid var(--border-color); }

        .tag-hero { padding: 60px 0; text-align: center; background: var(--bg-white); border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
        .tag-hero h1 { font-size: 36px; color: var(--text-dark); margin-bottom: 15px; font-weight: 800; }
        .tag-hero p { font-size: 16px; color: var(--text-light); max-width: 700px; margin: 0 auto; }

        .tag-cloud-container { background: var(--bg-white); padding: 50px; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); margin-bottom: 60px; }
        .tag-list { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: inline-flex; align-items: center; padding: 10px 20px; background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 30px; font-size: 15px; font-weight: 500; color: var(--text-dark); }
        .tag-item:hover { background: var(--primary-color); color: white; border-color: var(--primary-color); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(90,200,250,0.2); }
        .tag-count { background: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 10px; font-size: 12px; margin-left: 8px; color: inherit; }

        .footer { background: #0f172a; color: #94a3b8; padding: 60px 0 20px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-about .logo span { color: white; }
        .footer-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 10px; }
        .footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }
        .footer-meta-links { display: flex; gap: 15px; }

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