﻿:root {
            --primary: rgb(241, 250, 140);
            --primary-hover: rgb(220, 230, 110);
            --bg-dark: #0f172a;
            --bg-card: #1e293b;
            --bg-body: #0b1329;
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
            --border-color: rgba(241, 250, 140, 0.15);
            --border-hover: rgba(241, 250, 140, 0.35);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-body); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 42px; 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(--primary); white-space: nowrap; letter-spacing: 0.5px; }
        
        
        .site-header { background-color: rgba(15, 23, 42, 0.95); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
        .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .desktop-nav { display: flex; align-items: center; gap: 30px; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-light); position: relative; padding: 8px 0; }
        .desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary); transition: width 0.3s ease; }
        .desktop-nav a:hover::after { width: 100%; }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        
        
        .btn-primary-sm { display: inline-flex; align-items: center; justify-content: center; background-color: var(--primary); color: #0f172a; font-weight: bold; padding: 8px 18px; border-radius: 6px; font-size: 14px; transition: all 0.3s ease; border: none; cursor: pointer; }
        .btn-primary-sm:hover { background-color: var(--primary-hover); transform: translateY(-1px); }
        .btn-primary-block { display: flex; align-items: center; justify-content: center; background-color: var(--primary); color: #0f172a; font-weight: bold; padding: 12px; border-radius: 8px; width: 100%; text-align: center; }
        
        
        .mobile-toggle-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; }
        .mobile-toggle-btn span { display: block; width: 100%; height: 2px; background-color: var(--text-light); transition: all 0.3s ease; }
        
        
        .mobile-drawer-mask { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1000; opacity: 0; transition: opacity 0.3s ease; }
        .mobile-drawer-mask.active { display: block; opacity: 1; }
        .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--bg-dark); z-index: 1001; transition: left 0.3s ease; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--border-color); }
        .mobile-drawer.active { left: 0; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
        .drawer-close-btn { font-size: 28px; background: none; border: none; color: var(--text-light); cursor: pointer; }
        .mobile-menu { display: flex; flex-direction: column; gap: 20px; }
        .mobile-menu a { font-size: 16px; font-weight: 500; display: block; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .mobile-menu a:hover { color: var(--primary); }
        .drawer-footer { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
        .drawer-footer p { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 15px; }

        
        .tag-banner { background: linear-gradient(135deg, rgba(241,250,140,0.1) 0%, rgba(15,23,42,0.8) 100%); padding: 60px 0; border-bottom: 1px solid var(--border-color); text-align: center; }
        .tag-banner h1 { font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 15px; }
        .tag-banner p { font-size: 15px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
        .tag-banner span { background-color: rgba(255,255,255,0.1); color: #fff; font-size: 13px; padding: 3px 12px; border-radius: 20px; margin-top: 10px; display: inline-block; }

        
        .breadcrumb { padding: 20px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.05); }
        .breadcrumb a { color: var(--text-muted); }
        .breadcrumb a:hover { color: var(--primary); }
        .breadcrumb span { margin: 0 10px; color: rgba(255,255,255,0.2); }

        
        .tag-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; padding: 50px 0 80px; }
        .tag-list-header { font-size: 24px; font-weight: 800; margin-bottom: 30px; display: flex; align-items: center; gap: 10px; border-left: 4px solid var(--primary); padding-left: 12px; }
        
        .tag-article-card { display: flex; gap: 20px; background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 20px; margin-bottom: 25px; transition: all 0.3s ease; }
        .tag-article-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(241,250,140,0.05); }
        .tag-art-img { width: 180px; height: 130px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background-color: rgba(255,255,255,0.05); }
        .tag-art-img img { width: 100%; height: 100%; object-fit: cover; }
        .tag-art-info { display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
        .tag-art-info h3 { font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--text-light); margin-bottom: 10px; }
        .tag-art-info h3 a:hover { color: var(--primary); }
        .tag-art-summary { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .tag-art-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; gap: 10px; }
        .tag-art-meta-left { display: flex; align-items: center; gap: 15px; }
        .read-more { font-weight: bold; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; }

        
        .pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; padding: 20px 0; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 8px; background-color: var(--bg-card); border: 1px solid var(--border-color); font-size: 14px; font-weight: 600; transition: all 0.3s ease; }
        .pagination a:hover { background-color: var(--primary); color: #0f172a; border-color: var(--primary); }
        .pagination .active { background-color: var(--primary); color: #0f172a; border-color: var(--primary); }

        
        .sidebar-widget { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; margin-bottom: 30px; }
        .sidebar-widget h3 { font-size: 18px; font-weight: bold; color: var(--primary); margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 12px; }

        
        .site-footer { background-color: #080e1a; border-top: 1px solid var(--border-color); padding: 80px 0 0; }
        .footer-container { display: grid; grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr; gap: 40px; margin-bottom: 50px; }
        .footer-brand .logo { margin-bottom: 20px; }
        .brand-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
        .contact-info p { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
        .contact-info p span { color: var(--text-light); }
        .footer-nav-col h4, .footer-tags-col h4 { font-size: 16px; font-weight: bold; color: var(--text-light); margin-bottom: 25px; position: relative; }
        .footer-nav-col h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background-color: var(--primary); }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; color: var(--text-muted); }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
        .footer-tag-cloud a { font-size: 12px; background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 20px; color: var(--text-muted); }
        .footer-tag-cloud a:hover { color: #000; background-color: var(--primary); border-color: var(--primary); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 30px 0; font-size: 13px; color: var(--text-muted); }
        .footer-bottom-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
        .warning-text { color: #f43f5e; font-size: 12px; max-width: 600px; text-align: right; }

        
        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .mobile-toggle-btn { display: flex; }
            .tag-layout { grid-template-columns: 1fr; }
            .footer-container { grid-template-columns: 1fr 1fr; }
            .warning-text { text-align: left; }
        }
        @media (max-width: 576px) {
            .tag-article-card { flex-direction: column; }
            .tag-art-img { width: 100%; height: 160px; }
            .footer-container { grid-template-columns: 1fr; }
            .footer-bottom-container { flex-direction: column; text-align: center; }
            .warning-text { text-align: center; }
        }