﻿:root {
      --primary: rgb(255, 45, 85);
      --primary-hover: rgb(230, 30, 70);
      --primary-rgb: 255, 45, 85;
      --text-light: #F3F4F6;
      --text-muted: #9CA3AF;
      --text-dark: #1F2937;
      --body-bg: #F4F6F9;
      --card-bg: #FFFFFF;
      --glacier-cyan: #00F2FE;
    }

    * { 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(--body-bg);
      color: var(--text-dark);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

    
    header {
      background: rgba(11, 15, 25, 0.95);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: #FFF; white-space:nowrap; }
    .nav-menu { display: flex; align-items: center; gap: 30px; }
    .nav-menu a { color: var(--text-light); font-size: 15px; font-weight: 500; padding: 8px 0; border-bottom: 2px solid transparent; }
    .nav-menu a:hover { color: var(--glacier-cyan); border-bottom-color: var(--glacier-cyan); }
    .nav-trigger { display: none; background: none; border: none; color: #FFF; font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: #0B0F19; z-index: 2001; box-shadow: 5px 0 25px rgba(0,0,0,0.5); transition: all 0.3s ease; display: flex; flex-direction: column; padding: 24px; }
    .drawer.active { left: 0; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
    .drawer-close { background: none; border: none; color: #FFF; font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; overflow-y: auto; }
    .drawer-nav a { color: var(--text-light); font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .drawer-nav a:hover { color: var(--glacier-cyan); padding-left: 10px; }

    
    .page-banner {
      background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
      color: #FFF;
      padding: 60px 20px;
      text-align: center;
    }
    .page-banner h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }

    
    .tag-list-wrap {
      max-width: 1000px;
      margin: 50px auto;
      padding: 0 20px;
    }
    .tag-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .tag-card {
      background: #FFF;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
    }
    .tag-card-img {
      height: 180px;
      width: 100%;
    }
    .tag-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .tag-card-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }
    .tag-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .tag-card-summary { font-size: 14px; color: #6B7280; line-height: 1.6; margin-bottom: 15px; }
    .tag-card-meta { display: flex; justify-content: space-between; font-size: 12px; color: #9CA3AF; border-top: 1px solid #F3F4F6; padding-top: 12px; }

    
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 50px;
    }
    .pagination a, .pagination span {
      padding: 8px 16px;
      border-radius: 6px;
      background: #FFF;
      border: 1px solid #E5E7EB;
      font-size: 14px;
      font-weight: 500;
      color: #4B5563;
    }
    .pagination a:hover {
      background: var(--primary);
      color: #FFF;
      border-color: var(--primary);
    }
    .pagination .is-current {
      background: var(--primary);
      color: #FFF;
      border-color: var(--primary);
    }

    
    footer {
      background: #0B0F19;
      color: var(--text-light);
      padding: 80px 20px 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
    .footer-col h4 { font-size: 16px; font-weight: 700; color: #FFF; margin-bottom: 24px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { color: var(--text-muted); font-size: 14px; }
    .footer-col ul li a:hover { color: var(--primary); }
    .footer-info-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-links-bottom { display: flex; gap: 20px; }

    @media (max-width: 1024px) {
      .footer-container { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .nav-trigger { display: block; }
      .tag-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    }