﻿:root {
            --primary: rgb(175,82,222);
            --primary-light: rgb(245,235,255);
            --primary-hover: rgb(150,60,200);
            --dark-bg: rgb(15, 8, 25);
            --dark-card: rgb(26, 17, 40);
            --text-main: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --border-color: #eaeaea;
            --bg-light: #f8f9fa;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); line-height: 1.6; background-color: #ffffff; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        li { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
        
        
        .header { background: #ffffff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
        .header-inner { 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: 20px; font-weight: 800; line-height: 1; color: var(--primary); white-space: nowrap; letter-spacing: -0.5px; }
        
        .nav-desktop { display: flex; align-items: center; gap: 30px; }
        .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-light); }
        .nav-desktop a:hover, .nav-desktop a.active { color: var(--primary); }
        .nav-btn { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #ffffff !important; padding: 10px 22px; border-radius: 6px; font-weight: 600; font-size: 14px; transition: background 0.3s ease; }
        .nav-btn:hover { background: var(--primary-hover); }
        
        .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1010; }
        .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); margin-bottom: 5px; transition: all 0.3s ease; }
        .hamburger span:last-child { margin-bottom: 0; }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        
        
        .drawer { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: #ffffff; z-index: 1009; transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 5px 0 25px rgba(0,0,0,0.15); display: flex; flex-direction: column; padding: 30px 20px; }
        .drawer.active { left: 0; }
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); z-index: 1008; display: none; opacity: 0; transition: opacity 0.3s ease; }
        .drawer-overlay.active { display: block; opacity: 1; }
        .drawer .logo { margin-bottom: 40px; }
        .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
        .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--text-main); padding: 8px 0; border-bottom: 1px solid var(--bg-light); }
        .drawer-nav a:hover { color: var(--primary); }
        .drawer-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border-color); font-size: 12px; color: var(--text-muted); }

        
        .inner-banner { background: radial-gradient(circle at 100% 0%, var(--dark-card) 0%, var(--dark-bg) 100%); color: #ffffff; padding: 50px 0; position: relative; }
        .breadcrumbs { font-size: 13px; color: #bca8d8; margin-bottom: 15px; display: flex; align-items: center; gap: 6px; }
        .breadcrumbs a:hover { color: #ffffff; }
        .banner-title { font-size: 28px; font-weight: 800; line-height: 1.3; }

        
        .tag-index-wrap { padding: 60px 0; }
        .tag-index-intro { text-align: center; max-width: 700px; margin: 0 auto 50px; }
        .tag-index-intro h2 { font-size: 26px; font-weight: 800; color: var(--text-main); margin-bottom: 15px; }
        .tag-index-intro p { font-size: 15px; color: var(--text-light); }

        .tag-index-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .tag-index-card { background: #ffffff; border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; text-align: center; transition: all 0.3s ease; display: block; }
        .tag-index-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 16px rgba(175,82,222,0.06); }
        .tag-index-name { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
        .tag-index-count { font-size: 12px; color: var(--primary); background: var(--primary-light); padding: 2px 10px; border-radius: 100px; display: inline-block; font-weight: 600; }

        
        .footer { background: #11091c; color: #d0c5df; padding: 70px 0 30px; border-top: 3px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
        .footer-info .logo span { color: #ffffff; }
        .footer-desc { font-size: 13px; line-height: 1.6; margin: 20px 0; color: #a291b8; }
        .footer-title { font-size: 15px; font-weight: 700; color: #ffffff; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        .footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--primary); }
        .footer-links { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { font-size: 13px; color: #a291b8; }
        .footer-links a:hover { color: #ffffff; padding-left: 5px; }
        .footer-warning { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 30px; font-size: 11px; line-height: 1.8; color: #7f6e94; text-align: justify; }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 30px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; font-size: 12px; color: #7f6e94; }
        .footer-map-links { display: flex; gap: 15px; }

        @media (max-width: 991px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        @media (max-width: 576px) {
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
        }