﻿:root { --primary: rgb(255,204,0); --primary-hover: rgb(255, 220, 50); --bg-dark: #0b0c10; --bg-card: #151821; --bg-lighter: #1e222d; --text-main: #ffffff; --text-muted: #9499a8; --border-color: rgba(255,204,0,0.15); }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'PingFang SC', sans-serif; background: var(--bg-dark); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .site-header { background: rgba(11, 12, 16, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .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; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
        .desktop-nav a:hover { color: var(--primary); }
        .header-actions { display: flex; gap: 15px; }
        .btn-entry { background: var(--primary); color: #111; padding: 8px 20px; border-radius: 4px; font-weight: bold; font-size: 14px; }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
        .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 999; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-card); z-index: 1000; transition: 0.4s; border-right: 1px solid var(--border-color); }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
        .drawer-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.02); }
        
        .site-footer { background: #07080a; padding: 60px 0 20px; border-top: 1px solid rgba(255,204,0,0.1); margin-top: 80px;}
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { font-size: 18px; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); display: inline-block;}
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: var(--text-muted); font-size: 14px; }
        .footer-col ul li a:hover { color: var(--primary); }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 13px; }

        
        .tag-hero { text-align: center; padding: 80px 0; background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1200&q=80') center/cover; position: relative; }
        .tag-hero::before { content: ''; position: absolute; inset: 0; background: rgba(11,12,16,0.85); backdrop-filter: blur(5px); }
        .tag-hero-inner { position: relative; z-index: 1; }
        .tag-hero h1 { font-size: 36px; margin-bottom: 15px; }
        .tag-hero p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }
        
        .tag-cloud-wrap { padding: 60px 0; min-height: 40vh; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: flex; align-items: center; padding: 10px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 30px; transition: 0.3s; font-size: 15px; }
        .tag-item:hover { background: var(--primary); color: #111; border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,204,0,0.3); }
        .tag-item .count { background: rgba(255,255,255,0.1); color: var(--text-muted); font-size: 12px; padding: 2px 8px; border-radius: 10px; margin-left: 10px; transition: 0.3s; }
        .tag-item:hover .count { background: rgba(0,0,0,0.2); color: #111; }
        
        @media (max-width: 768px) {
            .desktop-nav, .header-actions { display: none; }
            .menu-toggle { display: flex; }
            .footer-grid { grid-template-columns: 1fr; }
            .tag-hero { padding: 50px 0; }
            .tag-hero h1 { font-size: 28px; }
        }