﻿:root {
      --primary: #1D7BFF;
      --accent: rgb(234,67,53);
      --bg-dark: #0b0f19;
      --bg-dark-secondary: #111827;
      --text-white: #f9fafb;
      --text-gray: #9ca3af;
      --text-light: #d1d5db;
      --border-color: rgba(255, 255, 255, 0.08);
    }
    * { 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-dark);
      color: var(--text-light);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

    
    .site-header {
      background: rgba(11, 15, 25, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .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: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--text-white);
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      gap: 24px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-light);
    }
    .desktop-nav a:hover { color: var(--primary); }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }
    .btn-accent {
      background-color: var(--accent);
      color: #fff;
    }
    .btn-accent:hover {
      background-color: rgba(234, 67, 53, 0.85);
      box-shadow: 0 4px 14px rgba(234, 67, 53, 0.4);
    }
    .mobile-menu-trigger {
      display: none;
      background: none;
      border: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }
    .mobile-menu-trigger span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--text-white);
    }

    
    .mobile-drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.7);
      opacity: 0;
      visibility: hidden;
      z-index: 199;
    }
    .mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100vh;
      background: var(--bg-dark-secondary);
      border-right: 1px solid var(--border-color);
      z-index: 200;
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      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-white);
      font-size: 28px;
      cursor: pointer;
    }

    
    .tag-hero {
      padding: 80px 20px;
      background: radial-gradient(circle at 50% 100%, rgba(29, 123, 255, 0.1) 0%, rgba(11, 15, 25, 1) 100%);
      border-bottom: 1px solid var(--border-color);
      text-align: center;
    }
    .tag-hero h1 {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 12px;
    }
    .tag-hero p {
      max-width: 600px;
      margin: 0 auto;
      color: var(--text-gray);
    }
    .tag-cloud-section {
      padding: 80px 20px;
    }
    .tag-cloud-container {
      max-width: 1000px;
      margin: 0 auto;
      background: var(--bg-dark-secondary);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 50px;
    }
    .tag-list-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
    }
    .tag-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-color);
      color: var(--text-light);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 14px;
    }
    .tag-badge:hover {
      border-color: var(--primary);
      background: rgba(29, 123, 255, 0.05);
      color: var(--primary);
      transform: scale(1.05);
    }
    .tag-count {
      background: rgba(255,255,255,0.08);
      color: var(--text-gray);
      padding: 2px 6px;
      border-radius: 10px;
      font-size: 11px;
    }

    @media (max-width: 768px) {
      .desktop-nav, .header-actions { display: none; }
      .mobile-menu-trigger { display: flex; }
      .tag-cloud-container { padding: 24px; }
    }