﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #1565D8;
      --accent: rgb(202,138,4);
      --bg-dark: #070A13;
      --bg-card: #0F1626;
      --bg-body: #07090E;
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --border-color: rgba(29, 123, 255, 0.15);
      --glass-bg: rgba(15, 22, 38, 0.7);
      --glass-border: rgba(255, 255, 255, 0.08);
      --max-width: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-body);
      color: var(--text-main);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(7, 10, 19, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--glass-border);
    }

    .header-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      display: block;
      height: 38px;
      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-main);
      white-space: nowrap;
      letter-spacing: -0.5px;
    }

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-desktop a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }

    .nav-desktop a:hover {
      color: var(--primary);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-action {
      background: var(--primary);
      color: #fff;
      padding: 8px 18px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
    }

    .btn-action:hover {
      background: var(--primary-hover);
      box-shadow: 0 0 15px rgba(29, 123, 255, 0.4);
    }

    .drawer-trigger {
      display: none;
      background: none;
      border: none;
      color: var(--text-main);
      cursor: pointer;
    }

    .drawer-trigger svg {
      width: 26px;
      height: 26px;
      fill: currentColor;
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: var(--bg-dark);
      z-index: 1002;
      box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      border-right: 1px solid var(--border-color);
    }

    .drawer.active {
      left: 0;
    }

    .drawer-header {
      padding: 20px;
      border-bottom: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .drawer-close {
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
    }

    .drawer-close svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    .nav-drawer {
      display: flex;
      flex-direction: column;
      padding: 20px;
      gap: 18px;
    }

    .nav-drawer a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .nav-drawer a:hover {
      color: var(--primary);
      padding-left: 5px;
    }

    .drawer-footer {
      margin-top: auto;
      padding: 20px;
      border-top: 1px solid var(--glass-border);
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .article-container {
      max-width: 900px;
      margin: 120px auto 80px;
      padding: 0 20px;
    }

    .breadcrumb-wrapper {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .breadcrumb-wrapper a:hover {
      color: var(--primary);
    }

    
    .article-header-block {
      margin-bottom: 30px;
      border-bottom: 1px solid var(--glass-border);
      padding-bottom: 24px;
    }

    .article-header-block h1 {
      font-size: clamp(24px, 4vw, 36px);
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .meta-row span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    
    .article-body-content {
      font-size: 16px;
      color: #E2E8F0;
      line-height: 1.8;
    }

    .article-body-content p {
      margin-bottom: 24px;
    }

    .article-body-content h2, .article-body-content h3 {
      color: #fff;
      margin-top: 40px;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .article-body-content img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 20px 0;
      border: 1px solid var(--glass-border);
    }

    
    .article-tags-wrap {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid var(--glass-border);
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .article-tags-wrap a {
      background: rgba(29, 123, 255, 0.08);
      border: 1px solid rgba(29, 123, 255, 0.2);
      color: var(--primary);
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 13px;
    }

    
    .prev-next-box {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding: 20px 0;
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
    }

    .prev-next-box a {
      background: var(--bg-card);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      padding: 16px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .prev-next-box a:hover {
      border-color: var(--primary);
      color: #fff;
    }

    .prev-next-box span {
      display: block;
      font-size: 11px;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: 6px;
      font-weight: 600;
    }

    
    .related-section {
      margin-top: 60px;
    }

    .related-title {
      font-size: 20px;
      color: #fff;
      margin-bottom: 24px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .related-card {
      background: var(--bg-card);
      border: 1px solid var(--glass-border);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .related-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      background: #1e293b;
    }

    .related-card-body {
      padding: 16px;
    }

    .related-card-body h4 {
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
    }

    .related-card-body h4 a:hover {
      color: var(--primary);
    }

    
    footer {
      background: #030509;
      border-top: 1px solid var(--glass-border);
      padding: 60px 20px 30px;
    }

    .footer-container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      margin-top: 15px;
      color: var(--text-muted);
      font-size: 14px;
      max-width: 280px;
    }

    .footer-links h4 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links ul li {
      margin-bottom: 12px;
    }

    .footer-links ul li a {
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-links ul li a:hover {
      color: var(--primary);
    }

    .footer-contact h4 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }

    .footer-contact p {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .footer-bottom {
      max-width: var(--max-width);
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    @media (max-width: 992px) {
      .related-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-desktop, .header-actions {
        display: none;
      }
      .drawer-trigger {
        display: block;
      }
      .prev-next-box {
        grid-template-columns: 1fr;
      }
      .related-grid {
        grid-template-columns: 1fr;
      }
      .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
    }