﻿:root {
      --primary-color: rgb(251,188,5);
      --primary-dark: rgb(220,160,4);
      --bg-dark: #0b0f19;
      --bg-card: #151d30;
      --text-main: #f3f4f6;
      --text-muted: #9ca3af;
      --border-color: rgba(251,188,5, 0.15);
      --white: #ffffff;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-main);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    
    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: rgba(11, 15, 25, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
    }
    .logo span {
      display: inline-block;
      font-size: 20px;
      font-weight: 800;
      color: var(--primary-color);
    }
    .nav-desktop { display: flex; align-items: center; gap: 24px; }
    .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-main); padding: 6px 12px; border-radius: 4px; }
    .nav-desktop a:hover { color: var(--primary-color); background-color: rgba(251,188,5, 0.08); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .btn-cta-nav { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: #111; font-weight: bold; padding: 8px 20px; border-radius: 20px; font-size: 14px; }
    .drawer-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; width: 24px; }
    .drawer-toggle span { display: block; width: 100%; height: 2px; background-color: var(--primary-color); }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.75); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s ease; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--bg-dark); border-right: 1px solid var(--border-color); z-index: 2000; padding: 24px; display: flex; flex-direction: column; gap: 30px; transition: left 0.3s ease; }
    .drawer-menu.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; font-size: 28px; color: var(--primary-color); cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-main); padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .btn-cta-drawer { margin-top: 20px; text-align: center; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: #111; font-weight: bold; padding: 12px; border-radius: 8px; }

    
    .tag-hero-section { background: linear-gradient(180deg, rgba(21, 29, 48, 0.6) 0%, rgba(11, 15, 25, 0) 100%); padding: 50px 20px 30px; border-bottom: 1px solid var(--border-color); }
    .tag-hero-inner { max-width: 1200px; margin: 0 auto; }
    .tag-breadcrumbs { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; }
    .tag-breadcrumbs a:hover { color: var(--primary-color); }
    .tag-headline { font-size: 32px; color: var(--white); }
    .tag-headline span { color: var(--primary-color); }

    
    .tag-list-layout { max-width: 1200px; margin: 40px auto 80px; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
    .tag-articles-feed { display: flex; flex-direction: column; gap: 24px; }
    .tag-rich-card { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; display: flex; gap: 20px; transition: transform 0.3s ease; }
    .tag-rich-card:hover { transform: translateY(-4px); }
    .tag-rich-img { width: 180px; background-size: cover; background-position: center; flex-shrink: 0; }
    .tag-rich-content { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
    .tag-rich-content h2 { font-size: 18px; color: var(--white); margin-bottom: 8px; }
    .tag-rich-content h2 a:hover { color: var(--primary-color); }
    .tag-rich-content p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
    .tag-rich-meta { display: flex; align-items: center; gap: 15px; font-size: 11px; color: var(--text-muted); }

    
    .sidebar-inner { display: flex; flex-direction: column; gap: 30px; }
    .sidebar-widget { background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
    .sidebar-widget h3 { font-size: 18px; color: var(--white); margin-bottom: 15px; border-bottom: 1px solid rgba(251,188,5, 0.2); padding-bottom: 8px; }
    .sidebar-widget p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    
    .pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
    .pagination a, .pagination span { display: inline-block; padding: 8px 16px; background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 6px; font-size: 14px; color: var(--text-main); }
    .pagination .active { background-color: var(--primary-color); color: #111; font-weight: bold; }

    
    .site-footer { background-color: #060911; border-top: 1px solid var(--border-color); padding: 60px 20px 20px; }
    .footer-container { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
    .site-footer h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; border-bottom: 1px solid rgba(251,188,5, 0.2); padding-bottom: 8px; }
    .site-footer ul { list-style: none; }
    .site-footer ul li { margin-bottom: 12px; }
    .site-footer ul li a { color: var(--text-muted); font-size: 14px; }
    .site-footer ul li a:hover { color: var(--primary-color); }
    .footer-contact p { color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: var(--text-muted); font-size: 12px; }

    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .drawer-toggle { display: flex; }
      .tag-list-layout { grid-template-columns: 1fr; }
      .tag-rich-card { flex-direction: column; }
      .tag-rich-img { width: 100%; height: 160px; }
      .footer-container { grid-template-columns: 1fr; }
    }