﻿:root { --primary: rgb(220,38,38); --primary-hover: rgb(185,28,28); --primary-light: rgba(220,38,38,0.1); --text-main: #1f2937; --text-muted: #6b7280; --bg-body: #f9fafb; --bg-white: #ffffff; --border-color: #e5e7eb; --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05); --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .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-main); white-space: nowrap; }
        .header { background: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 50; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .nav-links { display: none; }
        .nav-links a { font-size: 16px; font-weight: 500; padding: 10px 15px; border-radius: 6px; }
        .nav-links a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-btn { display: block; background: none; border: none; cursor: pointer; }
        .menu-btn svg { width: 28px; height: 28px; }
        @media (min-width: 768px) { .nav-links { display: flex; gap: 10px; } .menu-btn { display: none; } }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 90; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-white); z-index: 100; transition: var(--transition); }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .drawer-close { background: none; border: none; cursor: pointer; }
        .drawer-nav { padding: 20px; }
        .drawer-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-color); }

        .page-banner { background: #1f2937; padding: 60px 0; text-align: center; color: white; }
        .page-banner h1 { font-size: 32px; font-weight: 800; margin-bottom: 15px; }
        .page-banner p { font-size: 16px; color: #9ca3af; max-width: 600px; margin: 0 auto; }

        .tag-section { padding: 60px 0; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .tag-item { display: flex; align-items: center; background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 30px; padding: 10px 20px; font-size: 15px; font-weight: 600; color: var(--text-main); box-shadow: var(--shadow-sm); transition: var(--transition); }
        .tag-item:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(220,38,38,0.15); }
        .tag-count { background: var(--bg-body); color: var(--text-muted); font-size: 12px; padding: 2px 8px; border-radius: 10px; margin-left: 10px; font-weight: normal; }
        .tag-item:hover .tag-count { background: var(--primary-light); color: var(--primary); }

        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; margin-top: 60px;}
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
        .footer-brand .logo span { color: white; }
        .footer-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }