﻿:root { --primary: rgb(225,112,85); --primary-hover: rgb(200, 90, 65); --primary-light: rgba(225,112,85, 0.1); --text-dark: #2d3436; --text-gray: #636e72; --bg-body: #f8f9fa; --bg-white: #ffffff; --border: #eaedf1; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'PingFang SC', sans-serif; background: var(--bg-body); color: var(--text-dark); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        
        .site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { font-size: 20px; font-weight: 800; color: #111; white-space: nowrap; }
        .desktop-nav ul { display: flex; gap: 24px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; }
        .desktop-nav a:hover { color: var(--primary); }
        .header-actions { display: flex; gap: 12px; align-items: center; }
        .btn { padding: 10px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.3s; display: inline-block; }
        .btn-primary { background: var(--primary); color: #fff; border: 1px solid var(--primary); }
        .btn-primary:hover { background: var(--primary-hover); }
        .btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        
        .mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 999; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; }
        .drawer-body { padding: 20px; overflow-y: auto; flex-grow: 1; }
        .mobile-nav li { margin-bottom: 16px; font-weight: 500; }
        .drawer-footer { padding: 20px; border-top: 1px solid var(--border); }

        .site-footer { background: #1e272e; color: #d2dae2; padding: 70px 0 20px; font-size: 14px; margin-top: 60px; }
        .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .brand-col .logo { background: #fff; padding: 8px 16px; border-radius: 8px; margin-bottom: 20px; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li, .footer-contact li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; }

        
        .page-header { background: #fff; padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border); }
        .page-header h1 { font-size: 36px; font-weight: 800; color: #111; margin-bottom: 16px; }
        .page-header p { font-size: 16px; color: var(--text-gray); max-width: 600px; margin: 0 auto; }

        .tag-cloud-container { padding: 60px 0; background: var(--bg-body); }
        .tag-cloud-wrap { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        
        .tag-item { display: inline-flex; align-items: center; padding: 10px 20px; background: var(--primary-light); color: var(--primary); border-radius: 30px; font-size: 16px; font-weight: 500; border: 1px solid transparent; }
        .tag-item:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px var(--primary-light); }
        .tag-count { background: rgba(255,255,255,0.8); color: var(--primary); font-size: 12px; font-weight: bold; padding: 2px 8px; border-radius: 12px; margin-left: 8px; }
        .tag-item:hover .tag-count { color: #fff; background: rgba(0,0,0,0.2); }

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