﻿:root {
      --primary: #D4AF37;
      --accent: #FACC15;
      --bg-dark: #080807;
      --bg-card: #14100A;
      --text-light: #FFF7ED;
      --text-muted: #A3A3A3;
      --highlight: #FDE68A;
      --font-family: 'Playfair Display', 'Noto Serif SC', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background-color: var(--bg-dark); color: var(--text-light); font-family: var(--font-family); line-height: 1.6; }

    
    .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(--primary); white-space: nowrap; letter-spacing: 1px; }

    
    .site-header { border-bottom: 1px solid rgba(212, 175, 55, 0.15); background: rgba(8, 8, 7, 0.95); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
    .header-container { max-width: 1400px; margin: 0 auto; padding: 15px 24px; display: flex; justify-content: space-between; align-items: center; }
    .desktop-nav { display: flex; gap: 32px; }
    .desktop-nav a { color: var(--text-light); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
    .desktop-nav a:hover { color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
    .btn-primary { background-color: var(--primary); color: var(--bg-dark); }
    .btn-primary:hover { background-color: var(--accent); box-shadow: 0 0 15px rgba(250, 204, 21, 0.4); }
    .btn-primary-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
    .btn-primary-outline:hover { background: var(--primary); color: var(--bg-dark); }
    .drawer-trigger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
    .drawer-trigger span { display: block; width: 24px; height: 2px; background-color: var(--primary); }

    
    .mobile-drawer-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .mobile-drawer-mask.active { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -320px; width: 320px; height: 100%; background: var(--bg-card); border-right: 1px solid rgba(212, 175, 55, 0.2); z-index: 2001; display: flex; flex-direction: column; padding: 24px; transition: all 0.3s ease; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid rgba(212, 175, 55, 0.1); }
    .drawer-close { background: none; border: none; color: var(--primary); font-size: 32px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { color: var(--text-light); text-decoration: none; font-size: 18px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .drawer-footer { margin-top: auto; color: var(--text-muted); font-size: 12px; }

    
    .breadcrumb-row {
      max-width: 900px;
      margin: 40px auto 0 auto;
      padding: 0 24px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .breadcrumb-row a {
      color: var(--primary);
      text-decoration: none;
    }

    
    .article-main-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 24px 80px 24px;
    }

    .article-header-block {
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
      padding-bottom: 30px;
      margin-bottom: 40px;
    }
    .article-h1 {
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 800;
      color: var(--text-light);
      line-height: 1.4;
      margin-bottom: 20px;
    }
    .article-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .article-meta-row span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .article-meta-row a {
      color: var(--primary);
      text-decoration: none;
    }

    
    .article-body-content {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 50px;
    }
    .article-body-content p {
      margin-bottom: 24px;
    }
    .article-body-content h2, .article-body-content h3 {
      color: var(--highlight);
      margin: 40px 0 20px 0;
      font-weight: 700;
    }
    .article-body-content h2 { font-size: 22px; border-left: 3px solid var(--primary); padding-left: 12px; }
    .article-body-content h3 { font-size: 18px; }
    .article-body-content img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      border: 1px solid rgba(212,175,55,0.1);
      margin: 20px 0;
    }

    
    .prev-next-block {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      border-top: 1px solid rgba(212, 175, 55, 0.15);
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
      padding: 30px 0;
      margin-bottom: 60px;
    }
    .prev-next-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .prev-next-label {
      font-size: 12px;
      color: var(--primary);
      text-transform: uppercase;
    }
    .prev-next-link {
      color: var(--text-light);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
    }
    .prev-next-link:hover {
      color: var(--primary);
    }

    
    .related-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--highlight);
      margin-bottom: 30px;
    }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .related-card {
      background: var(--bg-card);
      border: 1px solid rgba(212,175,55,0.08);
      padding: 24px;
      border-radius: 4px;
    }
    .related-card h4 {
      font-size: 15px;
      margin-bottom: 10px;
    }
    .related-card h4 a {
      color: var(--text-light);
      text-decoration: none;
    }
    .related-card h4 a:hover {
      color: var(--primary);
    }
    .related-time {
      font-size: 11px;
      color: var(--text-muted);
    }

    
    .site-footer { background: #050504; border-top: 1px solid rgba(212, 175, 55, 0.15); color: var(--text-muted); font-size: 14px; }
    .footer-container { max-width: 1400px; margin: 0 auto; padding: 80px 24px 40px 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
    .footer-brand .brand-desc { margin-top: 20px; line-height: 1.7; color: var(--text-muted); max-width: 320px; }
    .footer-col h4 { font-size: 16px; font-weight: 700; color: var(--text-light); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
    .footer-col ul li a:hover { color: var(--primary); }
    .footer-bottom { max-width: 1400px; margin: 0 auto; padding: 30px 24px; border-top: 1px solid rgba(212, 175, 55, 0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }

    
    @media (max-width: 991px) {
      .desktop-nav { display: none; }
      .drawer-trigger { display: flex; }
      .footer-container { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 575px) {
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }