﻿:root {
            --primary: rgb(48,209,88);
            --primary-dark: rgb(38,180,75);
            --bg-color: #f8f9fc;
            --text-main: #2c3e50;
            --text-light: #64748b;
            --white: #ffffff;
            --border-color: #e2e8f0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
        body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .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: 22px; font-weight: 800; line-height: 1; color: #111; white-space: nowrap; }
        
        .header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; font-size: 16px; transition: color 0.3s; }
        .desktop-nav a:hover { color: var(--primary); }
        .mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
        .mobile-toggle svg { width: 28px; height: 28px; fill: var(--text-main); }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 200; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); z-index: 201; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); }
        .drawer-close { background: none; border: none; cursor: pointer; }
        .drawer-close svg { width: 24px; height: 24px; fill: var(--text-main); }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; overflow-y: auto; }
        .drawer-nav a { font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid #f1f5f9; display: block; }

        .tag-hero { background: var(--white); padding: 60px 0; border-bottom: 1px solid var(--border-color); text-align: center; }
        .tag-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 15px; }
        .tag-hero p { font-size: 16px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

        .tag-cloud-sec { padding: 60px 0; }
        .tag-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { background: var(--white); border: 1px solid var(--border-color); padding: 12px 24px; border-radius: 30px; font-size: 15px; color: var(--text-main); transition: 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.02); display: flex; align-items: center; gap: 8px; }
        .tag-item span { background: rgba(48,209,88,0.1); color: var(--primary); font-size: 12px; padding: 2px 8px; border-radius: 12px; font-weight: 600; }
        .tag-item:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(48,209,88,0.1); }

        .footer { background: #1e293b; color: #cbd5e1; padding: 60px 0 20px; }
        .footer-inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 40px; }
        .footer-brand { flex: 1; min-width: 300px; max-width: 400px; }
        .footer-brand .logo span { color: var(--white); }
        .footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.8; }
        .footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
        .link-group h4 { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 20px; }
        .link-group ul { display: flex; flex-direction: column; gap: 12px; }
        .link-group a { font-size: 14px; transition: color 0.3s; }
        .link-group a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 13px; }

        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
        }