﻿:root { --primary: rgb(34,197,94); --primary-dark: #16a34a; --primary-light: #dcfce7; --text-main: #111827; --text-body: #4b5563; --text-muted: #9ca3af; --bg-body: #f9fafb; --bg-surface: #ffffff; --border-color: #e5e7eb; --radius-md: 8px; --radius-lg: 12px; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-body); background-color: var(--bg-body); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; font-size: 16px; border-radius: var(--radius-md); cursor: pointer; }
        .btn-primary { background-color: var(--primary); color: white; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; color: var(--text-main); white-space: nowrap; }
        .site-header { background: rgba(255, 255, 255, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; color: var(--text-main); }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .mobile-menu-btn { 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; transition: 0.3s; z-index: 1001; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-surface); transition: 0.3s; z-index: 1002; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
        .site-footer { background: #111827; color: #9ca3af; padding: 60px 0 20px; margin-top: 60px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo span { color: white; }
        .footer-links h3 { color: white; font-size: 16px; margin-bottom: 20px; }
        .footer-links ul { list-style: none; }
        @media (max-width: 992px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .desktop-nav, .header-actions .btn { display: none; } .mobile-menu-btn { display: block; } .footer-grid { grid-template-columns: 1fr; } }

        
        .tag-hero { padding: 60px 0; background: linear-gradient(135deg, var(--primary-light), var(--bg-surface)); text-align: center; border-bottom: 1px solid var(--border-color); }
        .tag-hero h1 { font-size: 36px; color: var(--text-main); margin-bottom: 15px; }
        .tag-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        .tag-container { padding: 80px 0; background: var(--bg-surface); }
        .tag-cloud-wrapper { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 900px; margin: 0 auto; }
        .tag-item { display: flex; align-items: center; justify-content: space-between; padding: 15px 25px; background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 30px; font-size: 16px; font-weight: 500; color: var(--text-main); transition: 0.3s; min-width: 150px; }
        .tag-item:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 4px 10px rgba(34,197,94,0.3); }
        .tag-count { background: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 12px; font-size: 13px; margin-left: 10px; }
        .tag-item:hover .tag-count { background: rgba(255,255,255,0.2); }