﻿:root {
            --primary-color: rgb(12, 74, 110);
            --primary-hover: rgb(15, 118, 110);
            --bg-color: #f8fafc;
            --card-bg: #ffffff;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --accent-color: #f43f5e;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { color: inherit; text-decoration: none; transition: color 0.3s; }
        a:hover { color: var(--primary-color); }
        
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        header { background: #fff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
        .header-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { font-size: 20px; font-weight: 800; color: var(--primary-color); white-space: nowrap; }
        
        .nav-desktop { display: flex; gap: 20px; align-items: center; }
        .nav-desktop a { font-weight: 500; font-size: 15px; color: var(--text-main); padding: 8px 12px; border-radius: 4px; }
        .nav-desktop a:hover { background-color: rgba(12, 74, 110, 0.05); color: var(--primary-color); }
        
        .menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-main); }
        
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; display: none; opacity: 0; transition: opacity 0.3s ease; }
        .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #fff; z-index: 1000; transition: left 0.3s ease; display: flex; flex-direction: column; box-shadow: 2px 0 10px rgba(0,0,0,0.1); }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border-color); }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-nav { display: flex; flex-direction: column; padding: 20px; gap: 15px; overflow-y: auto; }
        .drawer-nav a { font-size: 16px; font-weight: 500; padding: 10px; border-radius: 6px; }
        .drawer-nav a:hover { background: rgba(12,74,110,0.05); color: var(--primary-color); }
        .drawer.open { left: 0; }
        .drawer-overlay.open { display: block; opacity: 1; }

        
        .tags-hero { background: linear-gradient(135deg, var(--primary-color), #0f766e); color: white; padding: 40px 0; text-align: center; }
        .tags-hero h1 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
        .tags-hero p { font-size: 15px; opacity: 0.9; }

        .tags-container { max-width: 900px; margin: 40px auto 60px; background: #fff; border: 1px solid var(--border-color); border-radius: 8px; padding: 40px 30px; }
        .tags-info-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); text-align: center; }
        
        .tags-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
        .tags-grid a { display: inline-block; padding: 10px 20px; background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 30px; font-size: 14px; font-weight: 600; color: var(--text-main); transition: all 0.3s; }
        .tags-grid a:hover { background: var(--primary-color); color: #fff; border-color: var(--primary-color); transform: scale(1.05); }

        
        footer { background: #0f172a; color: #94a3b8; padding: 50px 0 20px; border-top: 4px solid var(--primary-color); font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo { margin-bottom: 15px; }
        .footer-logo span { color: #fff; }
        .footer-desc { line-height: 1.7; margin-bottom: 15px; font-size: 13px; }
        .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-links a { color: #94a3b8; }
        .footer-links a:hover { color: #fff; }
        .friend-links { border-top: 1px solid #334155; padding-top: 20px; margin-bottom: 20px; }
        .friend-title { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
        .friend-content { display: flex; flex-wrap: wrap; gap: 15px; }
        .friend-content a { color: #94a3b8; font-size: 13px; }
        .friend-content a:hover { color: #fff; }
        .footer-bottom { border-top: 1px solid #334155; padding-top: 20px; text-align: center; font-size: 12px; color: #64748b; }
        
        
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .menu-btn { display: block; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .tags-container { padding: 25px 15px; }
        }