﻿:root { --primary: rgb(52,168,83); --primary-hover: #2b8b44; --primary-light: rgba(52,168,83,0.08); --text-main: #1e293b; --text-muted: #64748b; --bg-body: #f8fafc; --bg-white: #ffffff; --border-light: #e2e8f0; --shadow-sm: 0 1px 3px rgba(0,0,0,0.1); --radius-md: 12px; }
        * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: sans-serif; color: var(--text-main); background: var(--bg-body); 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; }
        
        
        .header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 100; padding: 15px 0; } .header .container { display: flex; align-items: center; justify-content: space-between; } .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-weight: 500; font-size: 15px; color: var(--text-muted); position: relative; } .nav-desktop a:hover { color: var(--primary); }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; } .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; } .drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; } .drawer-mask.active { opacity: 1; visibility: visible; } .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.3s; display: flex; flex-direction: column; overflow-y: auto; } .mobile-drawer.active { left: 0; } .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; } .drawer-close { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; } .drawer-nav a { display: block; padding: 15px 20px; font-size: 16px; border-bottom: 1px solid var(--border-light); }
        .footer { background: #1e293b; color: #cbd5e1; padding: 60px 0 30px; mt-auto; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; } .footer-brand .logo span { color: #fff; } .footer-title { color: #fff; font-size: 16px; margin-bottom: 20px; } .footer-links li { margin-bottom: 12px; } .footer-links a:hover { color: var(--primary); } .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; opacity: 0.6; }

        
        .page-header { background: var(--bg-white); padding: 50px 0; border-bottom: 1px solid var(--border-light); text-align: center; margin-bottom: 50px; }
        .page-header h1 { font-size: 32px; margin-bottom: 15px; }
        .page-header p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        .tag-cloud-container { background: var(--bg-white); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); margin-bottom: 60px; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: inline-flex; align-items: center; background: var(--bg-body); border: 1px solid var(--border-light); padding: 10px 20px; border-radius: 30px; font-size: 15px; transition: 0.3s; }
        .tag-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(52,168,83,0.3); }
        .tag-name { font-weight: 500; }
        .tag-count { margin-left: 8px; font-size: 12px; background: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 10px; }
        .tag-item:hover .tag-count { background: rgba(255,255,255,0.2); }

        .guide-box { display: flex; gap: 30px; background: linear-gradient(135deg, #fff, #f0fdf4); padding: 30px; border-radius: var(--radius-md); border: 1px solid var(--border-light); margin-bottom: 50px; align-items: center; }
        .guide-icon { width: 60px; height: 60px; background: var(--primary-light); color: var(--primary); border-radius: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .guide-icon svg { width: 32px; height: 32px; fill: currentColor; }
        .guide-text h3 { font-size: 20px; margin-bottom: 10px; }
        .guide-text p { color: var(--text-muted); font-size: 14px; }

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