﻿:root {
            --primary: rgb(209,213,219);
            --primary-dark: #9ca3af;
            --primary-light: #f3f4f6;
            --accent: #f59e0b;
            --accent-red: #ef4444;
            --dark: #111827;
            --gray-900: #111827;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-500: #6b7280;
            --gray-100: #f3f4f6;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.05);
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: #f9fafb; color: var(--gray-800); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        li { list-style: none; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        
        .site-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; transition: all 0.3s ease; }
        .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .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; line-height: 1; color: var(--gray-900); white-space: nowrap; letter-spacing: -0.5px; }
        
        .desktop-nav { display: flex; align-items: center; gap: 32px; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--gray-600); }
        .desktop-nav a:hover, .desktop-nav a.active { color: var(--gray-900); }
        
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .nav-btn { background: var(--gray-900); color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; }
        .nav-btn:hover { background: var(--gray-700); }
        
        .mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 6px; }
        .mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-900); transition: 0.3s; }

        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; pointer-events: auto; }
        .drawer-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #fff; z-index: 999; transition: all 0.3s ease; display: flex; flex-direction: column; padding: 24px; box-shadow: var(--shadow-lg); }
        .drawer-menu.active { left: 0; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--gray-500); }
        .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
        .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--gray-700); }
        .drawer-nav a:hover { color: var(--gray-900); padding-left: 4px; }
        .drawer-footer { margin-top: auto; border-top: 1px solid var(--border); padding-top: 20px; font-size: 12px; color: var(--gray-400); }

        
        .page-banner { padding: 48px 0; background: var(--primary-light); border-bottom: 1px solid var(--border); text-align: center; }
        .page-banner h1 { font-size: 32px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
        .page-banner p { font-size: 16px; color: var(--gray-500); max-width: 600px; margin: 0 auto; }

        
        .tag-hub-container { padding: 60px 0; max-width: 900px; margin: 0 auto; }
        .tag-hub-intro { background: #fff; padding: 32px; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 48px; }
        .tag-hub-intro h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--gray-900); }
        .tag-hub-intro p { font-size: 14px; color: var(--gray-600); }

        .tag-block-wrap { background: #fff; padding: 48px; border-radius: 20px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
        .tag-large-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
        .tag-cloud-item { background: var(--primary-light); color: var(--gray-700); padding: 10px 20px; border-radius: 50px; font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--border); }
        .tag-cloud-item:hover { background: var(--gray-900); color: #fff; border-color: var(--gray-900); transform: translateY(-2px); }
        .tag-cloud-item span { font-size: 12px; font-weight: 500; color: var(--gray-400); }
        .tag-cloud-item:hover span { color: var(--primary); }

        
        .site-footer { background: var(--gray-900); color: #fff; border-top: 1px solid var(--gray-800); padding: 80px 0 32px; }
        .footer-container { display: grid; grid-template-cols: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 48px; margin-bottom: 48px; }
        .footer-brand .logo { margin-bottom: 20px; }
        .footer-brand .logo span { color: #fff; }
        .brand-desc { color: var(--gray-500); font-size: 14px; line-height: 1.6; }
        .footer-link-group h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #fff; }
        .footer-link-group ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-link-group a { color: var(--gray-400); font-size: 14px; }
        .footer-link-group a:hover { color: #fff; }
        .footer-contact p { color: var(--gray-400); font-size: 14px; margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 32px; }
        .footer-bottom-container { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--gray-500); }

        @media (max-width: 992px) {
            .footer-container { grid-template-cols: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .tag-block-wrap { padding: 24px; }
            .footer-container { grid-template-cols: 1fr; gap: 32px; }
            .footer-bottom-container { flex-direction: column; gap: 16px; text-align: center; }
        }