﻿:root {
            --primary: rgb(244,63,94);
            --primary-hover: rgb(225,29,72);
            --primary-light: rgba(244,63,94,0.08);
            --dark: #0f172a;
            --slate: #475569;
            --light: #f8fafc;
            --border: #e2e8f0;
            --shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--dark); background: #f8fafc; line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s; }
        img { max-width: 100%; height: auto; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        
        
        header { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
        .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .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 { display: inline-block; font-size: 20px; font-weight: 800; color: var(--dark); }
        .nav-desktop { display: flex; align-items: center; gap: 32px; }
        .nav-desktop a { font-size: 15px; font-weight: 600; color: var(--slate); }
        .nav-desktop a:hover { color: var(--primary); }
        .nav-btn { background: var(--primary); color: #fff !important; padding: 10px 24px !important; border-radius: 8px; }
        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; }

        
        .drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 999; transition: 0.4s ease-in-out; visibility: hidden; }
        .drawer.active { left: 0; visibility: visible; }
        .drawer-overlay { position: absolute; width: 100%; height: 100%; background: rgba(15,23,42,0.6); backdrop-filter: blur(4px); }
        .drawer-content { position: absolute; width: 300px; height: 100%; background: #fff; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; transition: 0.4s; transform: translateX(-100%); }
        .drawer.active .drawer-content { transform: translateX(0); }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; }
        .drawer-menu { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
        .drawer-menu a { font-size: 16px; font-weight: 600; color: var(--dark); padding: 10px 12px; border-radius: 6px; }

        
        .tag-banner { background: var(--dark); color: #fff; padding: 60px 0; margin-bottom: 48px; }
        .tag-banner h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
        .tag-banner p { font-size: 16px; opacity: 0.7; }

        .tag-container { background: #fff; border-radius: 20px; padding: 48px; border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 80px; }
        .tag-intro { font-size: 16px; color: var(--slate); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
        
        .tag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .tag-item { display: flex; flex-direction: column; justify-content: space-between; background: var(--light); padding: 24px; border-radius: 12px; border: 1px solid var(--border); transition: 0.3s; }
        .tag-item:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
        .tag-name { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
        .tag-item:hover .tag-name { color: var(--primary); }
        .tag-count { font-size: 13px; color: var(--slate); }

        
        footer { background: #0f172a; color: rgba(255,255,255,0.7); padding: 80px 0 32px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 0.6fr); gap: 48px; margin-bottom: 64px; }
        .footer-col h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 24px; position: relative; }
        .footer-col h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 24px; height: 2px; background: var(--primary); }
        .footer-desc { line-height: 1.8; margin-top: 16px; }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a:hover { color: var(--primary); padding-left: 4px; }
        .footer-contact { display: flex; flex-direction: column; gap: 12px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
        .footer-copy { font-size: 13px; }
        .footer-meta { display: flex; gap: 24px; font-size: 13px; }
        .footer-meta a:hover { color: var(--primary); }

        @media (max-width: 1024px) {
            .tag-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .nav-toggle { display: block; }
            .tag-grid { grid-template-columns: repeat(2, 1fr); }
            .tag-container { padding: 24px; }
            .footer-grid { grid-template-columns: 1fr; }
        }