﻿:root {
      --primary-color: rgb(255,45,85);
      --dark-bg: #060b26;
      --silver-white: #f5f7fa;
      --text-dark: #1f2937;
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--silver-white); color: var(--text-dark); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    
    
    .site-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; height: 70px; display: flex; align-items: center; }
    .header-container { width: 1200px; max-width: 95%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    
    .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(--text-dark); white-space: nowrap; }
    
    .nav-menu { display: flex; gap: 24px; align-items: center; }
    .nav-menu a { font-size: 15px; font-weight: 500; color: #4b5563; padding: 8px 12px; border-radius: 6px; }
    .nav-menu a:hover { color: var(--primary-color); background: rgba(255,45,85,0.05); }
    
    
    .menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }
    .mobile-drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 2000; transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
    .mobile-drawer.active { left: 0; }
    .drawer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); }
    .drawer-content { position: absolute; top: 0; left: 0; width: 300px; height: 100%; background: #fff; padding: 24px; display: flex; flex-direction: column; gap: 30px; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f3f4f6; padding-bottom: 15px; }
    .close-drawer { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-dark); }
    .drawer-nav { display: flex; flex-direction: column; gap: 16px; }
    .drawer-nav a { font-size: 16px; font-weight: 600; padding: 10px 14px; border-radius: 8px; color: #374151; }
    .drawer-nav a:hover { background: rgba(255,45,85,0.08); color: var(--primary-color); }
    
    
    .breadcrumb-area { background: #f1f5f9; padding: 15px 0; border-bottom: 1px solid #e2e8f0; }
    .breadcrumb-container { width: 1200px; max-width: 95%; margin: 0 auto; font-size: 14px; color: #64748b; }
    .breadcrumb-container a { color: var(--text-dark); }
    
    
    .tag-index-main { width: 1200px; max-width: 95%; margin: 60px auto 100px; }
    .tag-hero-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
    .tag-hero-header h1 { font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 15px; }
    .tag-hero-header p { font-size: 16px; color: #64748b; }
    
    .tag-matrix-box { background: #fff; border-radius: 16px; padding: 50px; box-shadow: var(--card-shadow); border: 1px solid #f1f5f9; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
    .matrix-tag-item { font-size: 14px; font-weight: 600; background: #f1f5f9; color: #374151; padding: 10px 20px; border-radius: 50px; border: 1px solid #e2e8f0; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
    .matrix-tag-item:hover { transform: translateY(-3px); background: var(--primary-color); border-color: var(--primary-color); color: #fff; box-shadow: 0 4px 15px rgba(255,45,85,0.2); }
    .matrix-tag-count { font-size: 11px; background: rgba(0,0,0,0.06); color: #64748b; padding: 2px 6px; border-radius: 10px; }
    .matrix-tag-item:hover .matrix-tag-count { background: rgba(255,255,255,0.2); color: #fff; }
    
    
    .site-footer { background: #0f172a; color: #94a3b8; padding: 80px 0 30px; border-top: 1px solid #1e293b; font-size: 14px; }
    .footer-grid { width: 1200px; max-width: 95%; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-about .logo span { color: #fff; }
    .footer-about p { margin: 20px 0; line-height: 1.8; color: #64748b; }
    .footer-col h4 { color: #f8fafc; font-size: 16px; font-weight: 700; margin-bottom: 24px; position: relative; }
    .footer-col h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--primary-color); }
    .footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links-list a:hover { color: #fff; padding-left: 5px; }
    .footer-bottom { border-top: 1px solid #1e293b; padding-top: 30px; width: 1200px; max-width: 95%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 12px; color: #64748b; }
    
    @media(max-width: 992px) {
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media(max-width: 768px) {
      .nav-menu { display: none; }
      .menu-toggle { display: block; }
      .tag-matrix-box { padding: 24px; }
      .footer-grid { grid-template-columns: 1fr; }
    }