﻿:root { --primary: rgb(0,184,148); --primary-hover: rgb(0,150,120); --primary-light: rgba(0,184,148,0.1); --bg-body: #f8fafc; --bg-white: #ffffff; --text-main: #0f172a; --text-body: #334155; --border-color: #e2e8f0; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif; background: var(--bg-body); color: var(--text-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); } ul { list-style: none; } img { max-width: 100%; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .site-header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; } .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: none; } .desktop-nav a { padding: 8px 16px; font-weight: 500; color: var(--text-main); } .desktop-nav a:hover { color: var(--primary); }
        @media (min-width: 992px) { .desktop-nav { display: flex; gap: 10px; align-items: center; } .mobile-menu-toggle { display: none; } }
        .mobile-menu-toggle { background: none; border: none; cursor: pointer; color: var(--text-main); padding: 8px; }
        .mobile-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 998; } .mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 999; transition: var(--transition); display: flex; flex-direction: column; } .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); background: #f8fafc; } .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: 16px 24px; color: var(--text-main); border-left: 4px solid transparent; } .drawer-nav a:hover { background: var(--primary-light); color: var(--primary); border-left-color: var(--primary); }

        .tag-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%); color: #fff; padding: 60px 0; text-align: center; border-radius: 0 0 24px 24px; margin-bottom: 40px; }
        .tag-hero h1 { font-size: 32px; margin-bottom: 16px; }
        .tag-hero p { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 0 auto; }

        .tag-cloud-wrapper { background: #fff; padding: 50px; border-radius: 16px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); margin-bottom: 60px; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
        .tag-item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 30px; color: var(--text-main); font-weight: 500; transition: var(--transition); }
        .tag-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,184,148,0.3); }
        .tag-count { font-size: 12px; background: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 12px; }
        .tag-item:hover .tag-count { background: rgba(255,255,255,0.2); }

        .site-footer { background: #1e293b; color: #94a3b8; padding: 80px 0 0 0; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
        .footer-logo span { color: #fff; } .footer-links h3 { color: #fff; font-size: 18px; margin-bottom: 24px; } .footer-links ul li { margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid #334155; padding: 24px 0; text-align: center; font-size: 14px; }