﻿:root {
      --primary: rgb(219,39,119);
      --primary-hover: rgb(190,24,93);
      --dark-bg: #0B0F19;
      --card-bg: #111827;
      --border-color: rgba(255,255,255,0.08);
      --text-muted: #94A3B8;
      --text-light: #F8FAFC;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background-color: #030712; color: var(--text-light); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(11, 15, 25, 0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color);
    }
    .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; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; }
    .nav-menu { display: flex; align-items: center; gap: 32px; }
    .nav-menu a { font-size: 15px; color: var(--text-muted); }
    .menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

    
    .nav-drawer {
      position: fixed; top: 0; left: -280px; width: 280px; height: 100vh;
      background: var(--dark-bg); z-index: 1000; padding: 30px 20px;
      box-shadow: 4px 0 24px rgba(0,0,0,0.5); transition: left 0.3s ease;
      display: flex; flex-direction: column; gap: 30px;
    }
    .nav-drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
    .drawer-menu { display: flex; flex-direction: column; gap: 20px; }
    .drawer-menu a { font-size: 18px; color: var(--text-muted); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .drawer-overlay {
      position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
      background: rgba(0,0,0,0.6); z-index: 999; display: none; backdrop-filter: blur(4px);
    }
    .drawer-overlay.active { display: block; }

    .breadcrumbs { max-width: 1000px; margin: 100px auto 0; padding: 20px; font-size: 14px; color: var(--text-muted); }
    .breadcrumbs a:hover { color: var(--primary); }

    .art-container { max-width: 1000px; margin: 0 auto; padding: 0 20px 100px; }
    .art-header { margin-bottom: 40px; }
    .art-header h1 { font-size: 34px; font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
    .art-meta-box { display: flex; gap: 24px; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
    
    .art-content { font-size: 17px; line-height: 1.8; color: #E2E8F0; margin-bottom: 60px; }
    .art-content p { margin-bottom: 24px; }
    .art-content img { max-width: 100%; border-radius: 8px; margin: 20px 0; }

    .tag-links-box { margin-bottom: 40px; border-bottom: 1px solid var(--border-color); padding-bottom: 24px; }
    .tag-links-box span { font-weight: bold; margin-right: 12px; }
    .tag-badge { background: rgba(219,39,119,0.1); color: var(--primary); padding: 6px 14px; border-radius: 20px; font-size: 13px; margin-right: 8px; }

    .nav-sibling { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 60px; padding: 20px 0; border-bottom: 1px solid var(--border-color); }
    .sibling-link { max-width: 48%; }
    .sibling-link span { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
    .sibling-link a { font-weight: bold; font-size: 15px; color: #fff; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .sibling-link a:hover { color: var(--primary); }

    
    .related-section h3 { font-size: 22px; margin-bottom: 30px; }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .related-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; transition: all 0.3s; }
    .related-card:hover { border-color: var(--primary); transform: translateY(-3px); }
    .related-img { width: 100%; height: 150px; object-fit: cover; }
    .related-body { padding: 16px; }
    .related-title { font-size: 15px; font-weight: bold; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

    
    footer { background: #030712; border-top: 1px solid var(--border-color); padding: 80px 20px 30px; }
    .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-col h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 24px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--text-muted); }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .menu-btn { display: block; }
      .nav-sibling { flex-direction: column; }
      .sibling-link { max-width: 100%; }
      .related-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    }