﻿:root { --primary: rgb(202, 138, 4); --bg-body: #f8fafc; --bg-surface: #ffffff; --bg-dark: #1e293b; --text-main: #0f172a; --text-muted: #64748b; --border: #e2e8f0; --radius: 8px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { background: var(--bg-dark); color: #fff; position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: #fff; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { color: #cbd5e1; font-weight: 500; }
        .desktop-nav a:hover { color: var(--primary); }
        .menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-surface); z-index: 1000; transition: 0.3s transform; display: flex; flex-direction: column; }
        .drawer.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; background: var(--bg-dark); }
        .drawer-close { background: none; border: none; font-size: 28px; color: #fff; cursor: pointer; }
        .drawer-body { flex: 1; overflow-y: auto; padding: 20px 0; }
        .drawer-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid #f1f5f9; }

        .tag-hero { background: var(--bg-surface); border-bottom: 1px solid var(--border); padding: 60px 0; text-align: center; }
        .tag-hero h1 { font-size: 36px; margin-bottom: 15px; display: flex; justify-content: center; align-items: center; gap: 10px; }
        .tag-hero h1::before { content: '🏷️'; }
        .tag-hero p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

        .tag-container { padding: 60px 0 100px; }
        .tag-box { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid var(--border); }
        .tags-wrapper { display: flex; flex-wrap: wrap; gap: 15px; }
        .tag-item { display: inline-flex; align-items: center; padding: 10px 20px; background: #f8fafc; border: 1px solid var(--border); border-radius: 30px; font-size: 15px; font-weight: 500; transition: 0.3s; }
        .tag-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(202,138,4,0.3); }
        .tag-count { background: rgba(0,0,0,0.1); border-radius: 10px; padding: 2px 8px; font-size: 12px; margin-left: 8px; }

        .footer { background: #0f172a; color: #cbd5e1; padding: 50px 0 20px; border-top: 5px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 15px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 14px; }

        @media (max-width: 768px) { .desktop-nav { display: none; } .menu-toggle { display: block; } .footer-grid { grid-template-columns: 1fr; } .tag-box { padding: 20px; } }