﻿:root { --primary: rgb(101,163,13); --bg-body: #f3f4f6; --text-main: #1f2937; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .site-header { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 24px; }
        .mobile-toggle { display: none; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; display: none; }
        .drawer-overlay.active { display: block; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 1000; transition: 0.3s; padding: 20px; }
        .mobile-drawer.active { left: 0; }

        .tag-hero { background: #fff; padding: 60px 0; text-align: center; border-bottom: 1px solid #e5e7eb; margin-bottom: 40px; }
        .tag-hero h1 { font-size: 32px; margin-bottom: 15px; color: var(--primary); }
        .tag-hero p { color: #6b7280; font-size: 16px; max-width: 600px; margin: 0 auto; }

        .tag-cloud-wrap { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 60px; display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: inline-flex; align-items: center; padding: 10px 20px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 30px; font-size: 15px; transition: 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.1); padding: 2px 8px; border-radius: 12px; font-size: 12px; margin-left: 8px; }

        .site-footer { background: #1f2937; color: #e5e7eb; padding: 60px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-bottom { background: #111827; padding: 20px 0; text-align: center; font-size: 14px; }

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