﻿:root {
      --primary: rgb(52,168,83);
      --primary-hover: rgb(40,140,70);
      --glacier-blue: #1D7BFF;
      --glacier-deep: #0A2540;
      --silver-white: #F8FAFC;
      --dark-navy: #0d131a;
      --text-main: #333333;
      --text-muted: #666666;
      --border-color: #E2E8F0;
      --container-width: 1200px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background-color: var(--silver-white); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
    
    
    .site-header { background: rgba(13, 25, 41, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .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: #FFF; white-space: nowrap; }
    .desktop-nav { display: flex; gap: 24px; }
    .desktop-nav a { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; padding: 6px 12px; border-radius: 4px; }
    .desktop-nav a:hover { color: #FFF; background: rgba(255,255,255,0.1); }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: #FFF; margin: 5px 0; transition: 0.3s; }
    
    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; pointer-events: none; transition: 0.3s; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #0A2540; z-index: 1002; transition: 0.3s; display: flex; flex-direction: column; padding: 20px; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
    .drawer-close { font-size: 28px; color: #FFF; background: none; border: none; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 15px; }
    .drawer-nav a { color: #FFF; font-size: 16px; padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }

    
    .page-header { background: linear-gradient(135deg, var(--glacier-deep) 0%, #112240 100%); color: #FFF; padding: 50px 0; text-align: center; }
    .page-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
    .page-header p { font-size: 16px; color: rgba(255,255,255,0.6); }

    
    .tag-index-container { background: #FFF; margin: 60px auto; max-width: 900px; padding: 50px; border-radius: 16px; border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
    .tag-intro { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; border-bottom: 1px solid var(--border-color); padding-bottom: 25px; }
    
    .tags-cloud-flex { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
    .tag-large-item { display: inline-flex; align-items: center; gap: 8px; background: #F1F5F9; color: var(--text-main); font-weight: 600; font-size: 15px; padding: 10px 20px; border-radius: 8px; transition: 0.3s; border: 1px solid transparent; }
    .tag-large-item:hover { background: rgba(52,168,83,0.1); color: var(--primary); border-color: var(--primary); transform: translateY(-1px); }
    .tag-count-bubble { font-size: 12px; background: rgba(0,0,0,0.05); color: var(--text-muted); padding: 2px 6px; border-radius: 20px; font-weight: normal; }
    .tag-large-item:hover .tag-count-bubble { background: var(--primary); color: #FFF; }

    
    .site-footer { background: #0A192F; color: #A0AEC0; padding: 80px 0 30px; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand p { line-height: 1.6; margin-bottom: 20px; }
    .footer-col h5 { font-size: 16px; font-weight: 700; color: #FFF; margin-bottom: 20px; position: relative; }
    .footer-col h5::after { content: ''; display: block; width: 30px; height: 2px; background: var(--primary); margin-top: 8px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a:hover { color: #FFF; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
    .footer-bottom p { font-size: 13px; }
    .footer-meta-links { display: flex; gap: 20px; }

    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .nav-toggle { display: block; }
      .tag-index-container { padding: 25px; margin: 30px auto; }
      .footer-grid { grid-template-columns: 1fr; }
    }