﻿:root {
      --primary-color: rgb(124, 58, 237);
      --primary-hover: rgb(109, 40, 217);
      --text-dark: #111827;
      --text-muted: #4b5563;
      --bg-light: #f9fafb;
      --border-color: #e5e7eb;
      --transition: all 0.3s ease;
      --max-width: 1200px;
    }
    * { 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-dark); background-color: #fff; line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    img { max-width: 100%; height: auto; }
    .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

    
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--text-dark); }

    
    header { background-color: #fff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
    .header-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
    .nav-menu { display: flex; gap: 30px; align-items: center; }
    .nav-menu a { font-weight: 500; color: var(--text-muted); font-size: 15px; }
    .nav-menu a:hover { color: var(--primary-color); }
    .mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
    .mobile-menu-btn svg { width: 24px; height: 24px; fill: var(--text-dark); }

    
    .drawer-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; pointer-events: none; transition: var(--transition); }
    .drawer-mask.active { opacity: 1; pointer-events: auto; }
    .mobile-drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: #fff; z-index: 1002; box-shadow: 5px 0 25px rgba(0,0,0,0.15); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; padding: 20px; }
    .mobile-drawer.active { transform: translateX(300px); }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
    .drawer-close { background: none; border: none; cursor: pointer; }
    .drawer-close svg { width: 20px; height: 20px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; overflow-y: auto; flex: 1; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-dark); padding: 10px 0; border-bottom: 1px solid #f3f4f6; }

    
    .tag-banner {
      background-color: #0b0f19;
      color: #fff;
      padding: 60px 0;
      text-align: center;
    }
    .tag-container {
      padding: 80px 0;
    }
    .cloud-box {
      background: #fff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }
    .cloud-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 8px;
      background: var(--bg-light);
      border: 1px solid var(--border-color);
      font-size: 15px;
      font-weight: 600;
    }
    .cloud-item:hover {
      background-color: var(--primary-color);
      color: #fff;
      border-color: var(--primary-color);
      transform: scale(1.05);
    }
    .cloud-count {
      font-size: 11px;
      background: rgba(0,0,0,0.06);
      padding: 2px 6px;
      border-radius: 4px;
      color: var(--text-muted);
    }
    .cloud-item:hover .cloud-count {
      background: rgba(255,255,255,0.2);
      color: #fff;
    }

    
    footer { background-color: #0b0f19; color: #9ca3af; padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.1); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand .logo span { color: #fff; }
    .footer-desc { margin-top: 15px; font-size: 14px; }
    .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: var(--primary-color); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }

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