﻿:root {
            --primary: rgb(108, 92, 231);
            --primary-light: #a29bfe;
            --primary-dark: #5b4bc4;
            --success: #00b894;
            --danger: #ff7675;
            --dark: #2d3436;
            --light: #f9f9fb;
            --border: #e1e2e6;
            --text: #636e72;
            --shadow: 0 10px 30px rgba(108, 92, 231, 0.08);
            --transition: all 0.3s ease;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--dark); background-color: #fff; line-height: 1.6; }
        a { color: inherit; text-decoration: none; transition: var(--transition); }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
        .header-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 18px; font-weight: 800; line-height: 1; color: #111; white-space: nowrap; }
        .nav-list { display: flex; align-items: center; gap: 30px; }
        .nav-list a { font-size: 15px; font-weight: 500; color: var(--dark); }
        .nav-list a:hover { color: var(--primary); }
        .header-btns { display: flex; align-items: center; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; }
        .btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
        .btn-outline:hover { background: rgba(108, 92, 231, 0.05); }
        .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2); }
        .btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
        .menu-btn { display: none; background: none; border: none; font-size: 24px; color: var(--dark); cursor: pointer; }

        
        .mobile-drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: var(--transition); }
        .mobile-drawer-overlay.active { opacity: 1; pointer-events: auto; }
        .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #fff; z-index: 999; box-shadow: 2px 0 20px rgba(0,0,0,0.1); transition: var(--transition); display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
        .drawer-close { background: none; border: none; font-size: 28px; color: var(--text); cursor: pointer; }
        .drawer-content { flex: 1; overflow-y: auto; padding: 20px; }
        .drawer-nav { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--dark); padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.03); }
        .drawer-nav a:hover { color: var(--primary); }
        .drawer-btns { display: flex; flex-direction: column; gap: 12px; }

        
        .page-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding: 50px 0; margin-bottom: 50px; }
        .banner-wrap h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
        .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; opacity: 0.85; }
        .breadcrumb a:hover { text-decoration: underline; }

        
        .tags-wrapper { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 40px; margin-bottom: 60px; box-shadow: var(--shadow); }
        .tags-intro { max-width: 700px; margin-bottom: 30px; }
        .tags-intro h3 { font-size: 22px; font-weight: 800; color: #1e1e24; margin-bottom: 12px; }
        .tags-intro p { font-size: 14px; color: var(--text); }
        .tags-cloud-main { display: flex; flex-wrap: wrap; gap: 15px; }
        .tag-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--light); border: 1px solid var(--border); padding: 8px 18px; border-radius: 6px; font-weight: 600; color: var(--dark); transition: var(--transition); }
        .tag-pill:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-1px); }
        .tag-count { font-size: 12px; background: rgba(0,0,0,0.05); color: var(--text); padding: 2px 6px; border-radius: 4px; }
        .tag-pill:hover .tag-count { background: rgba(255,255,255,0.2); color: #fff; }

        
        footer { background: #111116; color: #9e9eab; padding: 70px 0 30px; border-top: 5px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 15px; margin-bottom: 20px; }
        .footer-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; }
        .footer-links a:hover { color: #fff; padding-left: 4px; }
        .footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; font-size: 12px; }
        .footer-policy { display: flex; gap: 20px; }

        @media (max-width: 991px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-list, .header-btns .btn-outline { display: none; }
            .menu-btn { display: block; }
            .tags-wrapper { padding: 25px 20px; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }