﻿:root {
      --primary-color: #1D7BFF;
      --secondary-color: #00F0FF;
      --dark-bg: rgb(31,41,55);
      --darker-bg: #111827;
      --light-bg: #F3F4F6;
      --silver-white: #F9FAFB;
      --text-main: #111827;
      --text-muted: #6B7280;
      --border-color: #E5E7EB;
      --glass-border: rgba(255, 255, 255, 0.1);
    }
    * { 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: var(--silver-white); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }

    
    .header { background: var(--dark-bg); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--glass-border); }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { display: inline-block; font-size: 20px; font-weight: 800; color: #FFF; }
    .nav-menu { display: flex; align-items: center; gap: 24px; }
    .nav-menu a { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; }
    .nav-menu a:hover { color: var(--secondary-color); }
    .menu-toggle { display: none; background: none; border: none; color: #FFF; font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--dark-bg); z-index: 1001; transition: left 0.3s ease; }
    .drawer-header { padding: 20px; border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: #FFF; font-size: 24px; cursor: pointer; }
    .drawer-content { flex: 1; overflow-y: auto; padding: 20px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { color: #FFF; font-size: 16px; font-weight: 500; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .drawer.active { left: 0; }

    
    .tag-hero { background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%); color: #FFF; padding: 80px 20px; text-align: center; }
    .tag-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
    .tag-hero p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 800px; margin: 0 auto; }

    
    .tags-container { max-width: 1000px; margin: 60px auto; padding: 0 20px; }
    .tags-card { background: #FFF; border: 1px solid var(--border-color); border-radius: 16px; padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
    .tags-intro { margin-bottom: 40px; text-align: center; color: var(--text-muted); font-size: 15px; }
    
    
    .tag-cloud-wrapper { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
    .tag-cloud-item { display: inline-flex; align-items: center; background: var(--light-bg); border: 1px solid var(--border-color); border-radius: 8px; padding: 10px 20px; font-size: 15px; font-weight: 600; color: var(--text-main); transition: all 0.3s; }
    .tag-cloud-item:hover { background: var(--primary-color); border-color: var(--primary-color); color: #FFF; transform: translateY(-2px); }
    .tag-cloud-count { background: rgba(0,0,0,0.06); font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 8px; color: var(--text-muted); }
    .tag-cloud-item:hover .tag-cloud-count { background: rgba(255,255,255,0.2); color: #FFF; }

    
    .footer { background: var(--darker-bg); color: rgba(255,255,255,0.6); padding: 80px 20px 40px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand .logo span { color: #FFF; }
    .footer-desc { font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
    .footer-title { font-size: 15px; font-weight: 700; color: #FFF; margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); }
    .footer-links a:hover { color: var(--primary-color); }
    .footer-contact p { font-size: 13px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 15px; }

    @media (max-width: 991px) {
      .nav-menu { display: none; }
      .menu-toggle { display: block; }
      .footer-container { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .tags-card { padding: 30px 20px; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }