﻿:root {
            --primary: rgb(2,132,199);
            --primary-hover: rgb(2,100,160);
            --bg-body: #f8fafc;
            --bg-card: #ffffff;
            --text-main: #0f172a;
            --text-sub: #475569;
            --border: #e2e8f0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, sans-serif; }
        body { background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }

        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); }
        .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 70px; display: flex; justify-content: space-between; align-items: center; }
        .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(--primary); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; ul { list-style: none; display: flex; gap: 30px; } }
        .desktop-nav a { font-weight: 500; font-size: 16px; }
        .header-action { display: flex; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; }
        .btn-primary { background: var(--primary); color: #fff; }
        .mobile-toggle { display: none; font-size: 24px; cursor: pointer; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px; flex: 1; ul { list-style: none; } }
        .drawer-nav a { display: block; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }

        .tag-hero { background: var(--bg-card); padding: 60px 20px; text-align: center; border-bottom: 1px solid var(--border); }
        .tag-hero h1 { font-size: 36px; margin-bottom: 15px; color: var(--primary); }
        .tag-hero p { color: var(--text-sub); max-width: 600px; margin: 0 auto; }

        .container { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
        
        .tag-cloud-wrap { background: var(--bg-card); padding: 40px; border-radius: 16px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
        .tag-header { margin-bottom: 30px; display: flex; align-items: center; gap: 15px; }
        .tag-header i { font-size: 24px; color: var(--primary); }
        .tag-header h2 { font-size: 24px; }

        .tag-grid { display: flex; flex-wrap: wrap; gap: 15px; }
        .tag-item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--bg-body); border: 1px solid var(--border); border-radius: 30px; font-size: 15px; transition: all 0.3s; }
        .tag-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
        .tag-count { background: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 10px; font-size: 12px; }
        .tag-item:hover .tag-count { background: rgba(255,255,255,0.2); }

        .footer { background: #0f172a; color: #cbd5e1; padding: 80px 20px 30px; margin-top: 60px;}
        .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
        .footer-brand p { margin-top: 20px; max-width: 300px; line-height: 1.8; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 20px; }
        .footer-nav { list-style: none; }
        .footer-nav li { margin-bottom: 12px; }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 14px; }

        @media (max-width: 768px) { .desktop-nav, .header-action { display: none; } .mobile-toggle { display: block; } .tag-cloud-wrap { padding: 20px; } .footer-grid { grid-template-columns: 1fr; } }