﻿:root {
      --primary-color: rgb(255,149,0);
      --primary-hover: rgb(230,135,0);
      --primary-light: rgba(255,149,0,0.1);
      --bg-dark: #0A1128;
      --bg-deep: #050B1A;
      --glacier-blue: #1D7BFF;
      --glacier-light: #E0F2FE;
      --silver-white: #F8FAFC;
      --text-main: #334155;
      --text-muted: #64748B;
      --border-color: #E2E8F0;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-family); background-color: var(--silver-white); color: var(--text-main); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

    
    .site-header { background: rgba(10, 17, 40, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .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: 18px; font-weight: 800; color: #fff; }
    .desktop-nav { display: flex; align-items: center; gap: 30px; }
    .desktop-nav a { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; }
    .desktop-nav a:hover { color: var(--primary-color); }
    .header-actions { display: flex; align-items: center; gap: 15px; }
    .btn-login-shortcut { background: var(--primary-color); color: #fff !important; padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; }
    .menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

    
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: var(--bg-dark); z-index: 1000; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; padding: 25px; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
    .drawer-close { background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { color: #fff; font-size: 16px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); z-index: 999; display: none; }
    .drawer-overlay.active { display: block; }

    
    .inner-banner { background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-deep) 100%); color: #fff; padding: 60px 20px; text-align: center; }
    .inner-banner h1 { font-size: 36px; font-weight: 800; }

    
    .content-container { max-width: 1000px; margin: 60px auto; padding: 0 20px; }
    .tag-index-card { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
    .tag-index-card h2 { font-size: 24px; color: var(--bg-dark); margin-bottom: 30px; font-weight: 700; text-align: center; }
    
    .tag-cloud-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 30px; }
    .tag-link-btn { background: #F1F5F9; border: 1px solid var(--border-color); color: var(--text-main); padding: 12px 24px; border-radius: 50px; font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
    .tag-link-btn:hover { background: var(--primary-light); border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-2px); }
    .tag-count { font-size: 11px; background: rgba(0,0,0,0.05); padding: 2px 6px; border-radius: 10px; color: var(--text-muted); }

    
    .site-footer { background: var(--bg-deep); color: #94A3B8; padding: 80px 20px 30px; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-about { padding-right: 40px; }
    .footer-about .logo { margin-bottom: 20px; }
    .footer-about p { line-height: 1.6; margin-bottom: 20px; }
    .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 25px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .footer-disclaimer { max-width: 1200px; margin: 20px auto 0; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 11px; line-height: 1.8; color: #475569; }

    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .menu-toggle { display: block; }
      .tag-index-card { padding: 30px 20px; }
    }