﻿:root {
      --primary-color: rgb(48, 209, 88);
      --bg-dark: #0a0e17;
      --bg-card: #131a26;
      --text-main: #ffffff;
      --text-muted: #8a99ad;
      --border-color: rgba(255, 255, 255, 0.1);
      --max-width: 1200px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: 0.3s; }
    .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

    
    .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(10, 14, 23, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); height: 72px; }
    .header-container { display: flex; justify-content: space-between; align-items: center; height: 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: 18px; font-weight: 800; color: #fff; }
    .desktop-nav { display: flex; gap: 30px; }
    .desktop-nav a { font-size: 15px; color: var(--text-muted); }
    .desktop-nav a:hover { color: var(--primary-color); }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; border: none; }
    .btn-primary { background-color: var(--primary-color); color: #000; }
    .menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s; }
    .drawer-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--bg-card); z-index: 2000; transition: 0.3s; padding: 20px; display: flex; flex-direction: column; }
    .drawer-menu.active { left: 0; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer-close { background: none; border: none; color: #fff; font-size: 28px; }

    
    .inner-banner { padding: 120px 0 50px 0; background: linear-gradient(180deg, rgba(48,209,88,0.08) 0%, transparent 100%); text-align: center; }
    .inner-title { font-size: 32px; font-weight: 800; }

    
    .section { padding: 60px 0; }
    .tags-container { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 40px; }
    .tags-list { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
    .tag-cloud-item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border-color); background: rgba(255,255,255,0.02); transition: 0.3s; font-size: 15px; }
    .tag-cloud-item:hover { border-color: var(--primary-color); background: rgba(48,209,88,0.1); transform: translateY(-2px); }
    .tag-cloud-item span { font-size: 12px; background: var(--border-color); color: var(--text-muted); padding: 2px 8px; border-radius: 20px; }

    
    .site-footer { background: #06090f; padding: 80px 0 30px 0; border-top: 1px solid var(--border-color); color: var(--text-muted); }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-col h5 { color: var(--text-main); font-size: 16px; margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a:hover { color: var(--primary-color); }
    .footer-about p { font-size: 14px; margin-top: 15px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; font-size: 13px; }

    @media(max-width: 768px) {
      .desktop-nav { display: none; }
      .menu-toggle { display: flex; }
      .tags-container { padding: 25px; }
    }