﻿:root {
      --primary: rgb(13,148,136);
      --primary-dark: #0f766e;
      --primary-light: #f0fdfa;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --bg-white: #ffffff;
      --border: #e2e8f0;
      --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font); color: var(--text-dark); background-color: var(--bg-white); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
    
    
    header { background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
    .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px 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-dark); white-space: nowrap; }
    .nav-menu { display: flex; align-items: center; gap: 28px; }
    .nav-menu a { font-size: 15px; font-weight: 500; color: var(--text-dark); }
    .nav-menu a:hover { color: var(--primary); }
    .header-right { display: flex; align-items: center; gap: 16px; }
    .btn-header { background: var(--primary); color: white !important; padding: 8px 18px; border-radius: 6px; font-size: 14px; font-weight: 600; }
    .btn-header:hover { background: var(--primary-dark); }
    .menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }

    
    .drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; }
    .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-white); z-index: 999; box-shadow: 2px 0 10px rgba(0,0,0,0.1); transition: left 0.3s ease; display: flex; flex-direction: column; }
    .drawer.active { left: 0; }
    .drawer-overlay.active { display: block; }
    .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; cursor: pointer; color: var(--text-muted); }
    .drawer-nav { display: flex; flex-direction: column; padding: 20px; gap: 18px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-dark); }
    .drawer-nav a:hover { color: var(--primary); }

    
    .tag-index-banner { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 80px 20px; text-align: center; }
    .tag-index-banner h1 { font-size: 38px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
    .tag-index-banner p { font-size: 16px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

    .tag-wrapper { padding: 80px 20px; background: var(--bg-white); }
    .tag-container { max-width: 1000px; margin: 0 auto; }
    
    .tags-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
    .tags-card { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-light); border: 1px solid var(--border); border-radius: 8px; padding: 12px 24px; transition: all 0.2s ease; font-weight: 600; font-size: 15px; }
    .tags-card:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); transform: translateY(-1px); }
    .tags-count { font-size: 12px; color: var(--text-muted); background: var(--bg-white); border-radius: 20px; padding: 2px 8px; border: 1px solid var(--border); }
    .tags-card:hover .tags-count { border-color: rgba(13,148,136,0.3); color: var(--primary); }

    
    footer { background: #0f172a; color: #94a3b8; border-top: 1px solid #1e293b; font-size: 14px; }
    .footer-top { padding: 80px 20px 40px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-brand .logo span { color: white; }
    .footer-brand-p { font-size: 14px; line-height: 1.6; }
    .footer-title { color: white; font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a:hover { color: white; }
    .footer-bottom { border-top: 1px solid #1e293b; padding: 30px 20px; text-align: center; }
    .footer-bottom-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-disclaimer { max-width: 1200px; margin: 20px auto 0; font-size: 12px; line-height: 1.8; text-align: left; opacity: 0.6; padding: 0 20px; }

    @media (max-width: 768px) {
      .nav-menu, .header-right .btn-header { display: none; }
      .menu-btn { display: block; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom-container { flex-direction: column; text-align: center; }
    }