﻿:root {
      --primary: #1D7BFF;
      --accent: rgb(80,250,123);
      --bg-dark: #070c19;
      --bg-card: #111827;
      --text-main: #f3f4f6;
      --text-muted: #9ca3af;
      --border-color: rgba(255, 255, 255, 0.08);
      --text-light-silver: #e2e8f0;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: -apple-system, sans-serif;
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: color 0.3s; }

    
    header {
      background: rgba(7, 12, 25, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      height: 70px;
    }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
    }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 38px; }
    .logo span { font-size: 18px; font-weight: 800; color: var(--text-light-silver); }
    .nav-menu { display: flex; align-items: center; gap: 24px; }
    .nav-menu a { color: var(--text-muted); font-size: 15px; }
    .nav-menu a:hover { color: var(--accent); }
    .menu-toggle-btn { display: none; background: none; border: none; color: var(--text-main); font-size: 24px; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 1001; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: var(--bg-card); transition: 0.3s; z-index: 1002; padding: 24px; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
    .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 24px; }
    .drawer-menu { display: flex; flex-direction: column; gap: 20px; }

    
    .tag-hero {
      background: linear-gradient(135deg, rgba(29,123,255,0.08) 0%, rgba(7,12,25,0.9) 100%);
      padding: 80px 20px;
      text-align: center;
    }
    .tag-hero h1 { font-size: 34px; color: var(--text-light-silver); margin-bottom: 16px; }
    .tag-hero p { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 15px; }

    .tag-body { max-width: 1000px; margin: 60px auto 100px; padding: 0 20px; }
    .tag-grid-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 40px; }
    .tag-grid-box h2 { font-size: 22px; color: var(--text-light-silver); margin-bottom: 30px; border-left: 4px solid var(--accent); padding-left: 12px; }
    
    .tags-cloud-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
    }
    .tag-item-bubble {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-color);
      padding: 10px 20px;
      border-radius: 50px;
      color: var(--text-light-silver);
      font-size: 15px;
      font-weight: 500;
      transition: all 0.3s;
    }
    .tag-item-bubble:hover {
      background: rgba(29, 123, 255, 0.1);
      border-color: var(--primary);
      transform: scale(1.05);
    }
    .tag-item-bubble span {
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 50%;
    }

    
    footer {
      background: #050811;
      border-top: 1px solid var(--border-color);
      padding: 80px 20px 40px;
      color: var(--text-muted);
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-brand p { margin-top: 15px; font-size: 14px; }
    .footer-group h4 { color: var(--text-light-silver); font-size: 16px; margin-bottom: 20px; }
    .footer-group ul { list-style: none; }
    .footer-group ul li { margin-bottom: 10px; }
    .footer-group ul li a { font-size: 14px; }
    .footer-group ul li a:hover { color: var(--accent); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid var(--border-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .menu-toggle-btn { display: block; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
    }