﻿:root {
      --primary: #7C3AED;
      --primary-hover: #6D28D9;
      --primary-rgb: 124, 58, 237;
      --bg-dark: #120A2A;
      --bg-card: rgba(255, 255, 255, 0.03);
      --purple-blue: #312E81;
      --fog-white: #F5F3FF;
      --accent-pink: #EC4899;
      --text-main: #F5F3FF;
      --text-muted: #9CA3AF;
      --border: rgba(255, 255, 255, 0.08);
      --glass-blur: blur(16px);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    img { max-width: 100%; height: auto; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    
    
    .site-header { position: fixed; top: 0; left: 0; right: 0; height: 80px; background: rgba(18, 10, 42, 0.8); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border-bottom: var(--border); z-index: 100; }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, #FFF 0%, var(--accent-pink) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .desktop-nav { display: flex; gap: 32px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    .desktop-nav a:hover, .desktop-nav a.active { color: var(--text-main); text-shadow: 0 0 10px rgba(124, 58, 237, 0.5); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; border-radius: 8px; transition: all 0.3s; cursor: pointer; }
    .btn-primary-sm { background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%); color: #fff; padding: 10px 20px; box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3); border: none; }
    .btn-primary-sm:hover { opacity: 0.9; transform: translateY(-2px); }
    .menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; width: 24px; }
    .menu-toggle span { display: block; width: 100%; height: 2px; background: var(--text-main); transition: all 0.3s; }
    .drawer-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 300px; background: var(--bg-dark); border-right: var(--border); z-index: 999; padding: 30px 24px; display: flex; flex-direction: column; transition: all 0.3s ease-in-out; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
    .drawer-close { background: none; border: none; color: var(--text-main); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 24px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-muted); }
    .drawer-nav a:hover { color: var(--text-main); }

    
    .page-header { padding: 140px 0 60px; background: linear-gradient(180deg, rgba(124, 58, 237, 0.08) 0%, transparent 100%); border-bottom: var(--border); }
    .breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
    .breadcrumb a { color: var(--text-muted); }
    .breadcrumb a:hover { color: #fff; }
    .page-title { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px; }
    .page-desc { font-size: 15px; color: var(--text-muted); max-width: 600px; }

    
    .content-section { padding: 60px 0 100px; }
    .content-grid { display: grid; grid-template-columns: 2.8fr 1.2fr; gap: 40px; }
    
    
    .articles-stream { display: flex; flex-direction: column; gap: 30px; }
    .list-article-card { background: rgba(255, 255, 255, 0.01); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1fr 1.5fr; transition: all 0.3s; }
    .list-article-card:hover { transform: translateY(-4px); border-color: rgba(124, 58, 237, 0.3); }
    .list-article-img { aspect-ratio: 4/3; background: rgba(255,255,255,0.05); }
    .list-article-img img { width: 100%; height: 100%; object-fit: cover; }
    .list-article-info { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
    .list-article-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
    .list-article-h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.4; }
    .list-article-summary { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
    .list-article-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 12px; }
    .list-tag { background: rgba(124, 58, 237, 0.1); color: #E9D5FF; padding: 2px 8px; border-radius: 4px; font-size: 11px; }

    
    .pagination-wrap { margin-top: 40px; display: flex; gap: 8px; justify-content: center; }
    .pagination-btn { padding: 10px 18px; border-radius: 8px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); font-size: 14px; color: var(--text-muted); cursor: pointer; }
    .pagination-btn.active, .pagination-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

    
    .sidebar-widget { background: rgba(255, 255, 255, 0.01); border: 1px solid var(--border); border-radius: 20px; padding: 24px; margin-bottom: 30px; }
    .sidebar-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 18px; border-left: 3px solid var(--accent-pink); padding-left: 12px; }
    .sidebar-articles-list { display: flex; flex-direction: column; gap: 16px; }
    .sidebar-article-item { display: flex; gap: 12px; align-items: center; }
    .sidebar-article-thumb { width: 64px; height: 48px; border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.05); }
    .sidebar-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .sidebar-article-title { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    
    
    .tag-cloud-sidebar { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-cloud-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--text-muted); padding: 4px 10px; border-radius: 6px; font-size: 12px; }
    .tag-cloud-item:hover { border-color: var(--accent-pink); color: #fff; }

    
    .site-footer { background: #090514; border-top: var(--border); padding: 80px 0 40px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
    .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
    .footer-h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 24px; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-size: 14px; color: var(--text-muted); }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { border-top: var(--border); padding-top: 40px; text-align: center; }
    .footer-disclaimer { font-size: 12px; color: rgba(255, 255, 255, 0.25); line-height: 1.8; max-width: 1000px; margin: 0 auto 30px; }
    .footer-copy { font-size: 13px; color: var(--text-muted); }
    .footer-copy a { color: var(--accent-pink); margin-left: 10px; }

    @media (max-width: 991px) {
      .content-grid { grid-template-columns: 1fr; }
      .list-article-card { grid-template-columns: 1fr; }
      .list-article-img { aspect-ratio: 16/9; }
    }
    @media (max-width: 768px) {
      .desktop-nav, .header-actions .btn-primary-sm { display: none; }
      .menu-toggle { display: flex; }
      .footer-grid { grid-template-columns: 1fr; }
    }