﻿:root { --primary-color: rgb(189,147,249); --primary-hover: #cda8fa; --bg-base: #111116; --bg-card: #1a1a24; --text-main: #f8f8f2; --text-muted: #8b8b9f; --border-color: rgba(255, 255, 255, 0.08); --radius-md: 12px; --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; background-color: var(--bg-base); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul, li { list-style: none; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; font-size: 16px; font-weight: 600; border-radius: 8px; cursor: pointer; transition: var(--transition); }
        .btn-primary { background-color: var(--primary-color); color: #000; box-shadow: 0 4px 16px rgba(189,147,249,0.3); }

        
        .header { position: fixed; top: 0; left: 0; right: 0; height: 72px; background: rgba(17, 17, 22, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); z-index: 100; display: flex; align-items: center; }
        .header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 36px; 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: var(--text-main); white-space: nowrap; }
        .nav-desktop { display: flex; align-items: center; gap: 32px; }
        .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
        .nav-desktop a:hover { color: var(--primary-color); }
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .menu-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 24px; cursor: pointer; }

        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-base); border-right: 1px solid var(--border-color); z-index: 1000; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; }
        .drawer.active { transform: translateX(300px); }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { padding: 24px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 28px; cursor: pointer; }
        .drawer-nav { padding: 24px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 16px 0; font-size: 16px; border-bottom: 1px solid var(--border-color); color: var(--text-main); }

        
        .page-banner { margin-top: 72px; padding: 80px 0; background: linear-gradient(135deg, rgba(189,147,249,0.05) 0%, var(--bg-base) 100%); text-align: center; border-bottom: 1px solid var(--border-color); }
        .page-title { font-size: 40px; font-weight: bold; margin-bottom: 16px; }
        .page-desc { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        
        .tag-container { padding: 80px 0; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
        .tag-item { padding: 12px 24px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 30px; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
        .tag-item:hover { background: var(--primary-color); color: #000; border-color: var(--primary-color); transform: translateY(-3px); box-shadow: 0 4px 12px rgba(189,147,249,0.3); }
        .tag-name { font-weight: 600; font-size: 16px; }
        .tag-count { font-size: 12px; background: rgba(0,0,0,0.2); padding: 2px 8px; border-radius: 10px; }

        
        .footer { background: #0a0a0f; border-top: 1px solid var(--border-color); padding: 80px 0 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
        .footer-brand p { color: var(--text-muted); margin-top: 20px; font-size: 14px; max-width: 320px; }
        .footer-title { font-size: 16px; font-weight: 600; margin-bottom: 24px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
        .footer-links a:hover { color: var(--primary-color); }
        .footer-bottom { padding-top: 32px; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); }

        @media (max-width: 768px) {
            .nav-desktop, .header-actions .btn { display: none; }
            .menu-toggle { display: block; }
            .tag-item { padding: 10px 20px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
        }