﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #1162d9;
      --accent: rgb(132,204,22);
      --accent-hover: #72b012;
      --dark: #0B0F19;
      --dark-card: #131B2E;
      --light: #F8FAFC;
      --text-main: #1E293B;
      --text-muted: #64748B;
      --border: rgba(29, 123, 255, 0.15);
      --border-solid: #E2E8F0;
      --max-width: 1200px;
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: var(--font-sans);
      color: var(--text-main);
      background-color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .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;
    }
    
    .site-header {
      background-color: var(--dark);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .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);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .mobile-menu-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background-color: #fff;
    }
    
    .drawer-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.5);
      z-index: 998;
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .drawer-backdrop.active {
      display: block;
      opacity: 1;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100vh;
      background-color: var(--dark);
      z-index: 999;
      box-shadow: 4px 0 20px rgba(0,0,0,0.3);
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      padding: 20px;
    }
    .mobile-drawer.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
    }
    .drawer-header .logo span {
      color: #fff;
    }
    .drawer-close {
      font-size: 28px;
      color: #fff;
      background: none;
      border: none;
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      color: rgba(255,255,255,0.8);
      font-size: 16px;
      font-weight: 500;
    }
    .drawer-nav a:hover {
      color: var(--accent);
    }
    .drawer-footer {
      margin-top: auto;
      color: rgba(255,255,255,0.5);
      font-size: 12px;
    }

    
    .inner-banner {
      background: radial-gradient(circle at 50% 0%, #15223e 0%, var(--dark) 100%);
      color: #fff;
      padding: 60px 0;
      border-bottom: 1px solid var(--border);
    }
    .inner-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .breadcrumbs {
      font-size: 14px;
      color: #94a3b8;
    }
    .breadcrumbs a {
      color: var(--primary);
    }

    
    .tag-index-section {
      padding: 80px 0;
    }
    .tag-intro {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }
    .tag-intro h2 {
      font-size: 28px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 15px;
    }
    .tag-intro p {
      font-size: 15px;
      color: var(--text-muted);
    }
    .tag-large-cloud {
      background-color: #fff;
      border: 1px solid var(--border-solid);
      border-radius: 16px;
      padding: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }
    .tag-huge-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--light);
      border: 1px solid var(--border-solid);
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      transition: all 0.3s ease;
    }
    .tag-huge-item:hover {
      transform: scale(1.05);
      border-color: var(--primary);
      box-shadow: 0 4px 15px rgba(29,123,255,0.1);
    }
    .tag-count-indicator {
      font-size: 12px;
      background-color: var(--primary);
      color: #fff;
      padding: 2px 8px;
      border-radius: 20px;
    }

    
    .site-footer {
      background-color: var(--dark);
      color: #94a3b8;
      border-top: 1px solid var(--border);
      padding: 60px 0 30px;
    }
    .footer-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 40px;
    }
    .footer-brand .logo span {
      color: #fff;
    }
    .footer-desc {
      font-size: 14px;
      margin-top: 15px;
      line-height: 1.6;
    }
    .footer-social {
      margin-top: 20px;
      font-size: 13px;
    }
    .footer-links-col h4 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 20px;
    }
    .footer-links-col ul {
      list-style: none;
    }
    .footer-links-col ul li {
      margin-bottom: 12px;
    }
    .footer-links-col ul li a {
      font-size: 14px;
    }
    .footer-links-col ul li a:hover {
      color: var(--accent);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      margin-top: 40px;
      padding-top: 30px;
    }
    .footer-bottom-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .mobile-menu-toggle { display: flex; }
      .footer-container { grid-template-columns: 1fr; }
      .tag-large-cloud { padding: 20px; }
      .tag-huge-item { padding: 8px 16px; font-size: 13px; }
    }