﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056b3;
      --accent: rgb(90,200,250);
      --deep-bg: #070b19;
      --card-bg: rgba(255, 255, 255, 0.03);
      --card-border: rgba(90, 200, 250, 0.15);
      --text-main: #f5f7fa;
      --text-muted: #8e9bb5;
      --white: #ffffff;
      --glass-bg: rgba(11, 20, 38, 0.8);
      --light-text-main: #111827;
      --light-text-muted: #4b5563;
    }

    * {
      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(--deep-bg);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo img {
      display: block;
      height: 36px;
      width: auto;
      max-width: 150px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      display: inline-block;
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--text-main);
      white-space: nowrap;
    }

    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--card-border);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .desktop-nav {
      display: flex;
      gap: 25px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .desktop-nav a:hover, .desktop-nav a.active {
      color: var(--accent);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-primary {
      background-color: var(--primary);
      color: var(--white);
      border: none;
    }
    .btn-primary:hover {
      background-color: var(--primary-hover);
      box-shadow: 0 0 15px rgba(29, 123, 255, 0.4);
    }
    .btn-secondary {
      background: transparent;
      color: var(--text-main);
      border: 1px solid var(--text-muted);
    }
    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .drawer-trigger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }
    .drawer-trigger span {
      display: block;
      width: 25px;
      height: 2px;
      background-color: var(--text-main);
      transition: 0.3s;
    }

    
    .drawer-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      z-index: 2000;
      transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .drawer-menu.active {
      left: 0;
    }
    .drawer-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
    }
    .drawer-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 280px;
      height: 100%;
      background-color: #0b1021;
      border-right: 1px solid var(--card-border);
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 28px;
      color: var(--text-main);
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      font-size: 16px;
      color: var(--text-muted);
      padding: 5px 0;
    }
    .drawer-nav a:hover {
      color: var(--accent);
    }
    .drawer-footer {
      margin-top: auto;
      font-size: 12px;
      color: var(--text-muted);
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
    }

    
    .hero {
      position: relative;
      padding: 100px 20px 80px;
      background: radial-gradient(circle at 50% 30%, rgba(29, 123, 255, 0.15) 0%, rgba(7, 11, 25, 0) 60%);
      display: flex;
      justify-content: center;
      text-align: center;
    }
    .hero-container {
      max-width: 1000px;
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(90, 200, 250, 0.1);
      border: 1px solid rgba(90, 200, 250, 0.3);
      color: var(--accent);
      border-radius: 30px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 25px;
      letter-spacing: 1px;
    }
    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .hero-title span {
      background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 35px;
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 60px;
    }
    
    
    .hero-visual-center {
      position: relative;
      margin: 0 auto;
      max-width: 800px;
      padding: 40px 0;
    }
    .visual-panel {
      background: rgba(11, 20, 38, 0.6);
      border: 1px solid rgba(90, 200, 250, 0.2);
      border-radius: 16px;
      padding: 10px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(29, 123, 255, 0.1);
    }
    .visual-panel img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
      opacity: 0.9;
    }
    
    .float-card {
      position: absolute;
      background: rgba(11, 20, 38, 0.9);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      padding: 15px;
      display: flex;
      align-items: center;
      gap: 12px;
      text-align: left;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      backdrop-filter: blur(8px);
      width: 200px;
    }
    .float-card .icon-wrap {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(29, 123, 255, 0.2);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }
    .float-card h4 {
      font-size: 14px;
      color: var(--white);
      margin-bottom: 2px;
    }
    .float-card p {
      font-size: 11px;
      color: var(--text-muted);
    }
    
    
    .card-top-left { top: 10%; left: -10%; }
    .card-top-right { top: 10%; right: -10%; }
    .card-bottom-left { bottom: 15%; left: -8%; }
    .card-bottom-right { bottom: 15%; right: -8%; }

    
    .features-section {
      padding: 80px 20px;
      background-color: #090e1d;
    }
    .section-title-wrap {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }
    .section-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 15px;
    }
    .section-desc {
      font-size: 16px;
      color: var(--text-muted);
    }
    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }
    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      padding: 30px;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      background: rgba(90, 200, 250, 0.05);
      border-color: rgba(90, 200, 250, 0.4);
    }
    .feature-icon {
      font-size: 36px;
      margin-bottom: 20px;
      display: inline-block;
    }
    .feature-card h3 {
      font-size: 20px;
      color: var(--white);
      margin-bottom: 10px;
    }
    .feature-card p {
      color: var(--text-muted);
      font-size: 14px;
    }

    
    .content-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .content-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
    }
    .main-posts h2, .sidebar h2 {
      font-size: 24px;
      color: var(--white);
      margin-bottom: 25px;
      border-left: 4px solid var(--accent);
      padding-left: 12px;
    }
    .post-card {
      display: flex;
      gap: 20px;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    .post-card:hover {
      border-color: rgba(90, 200, 250, 0.4);
      background: rgba(255,255,255,0.05);
    }
    .post-img {
      width: 180px;
      height: 120px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
    }
    .post-info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .post-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .post-title:hover {
      color: var(--accent);
    }
    .post-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .post-meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      gap: 15px;
    }

    
    .sidebar-widget {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 25px;
    }
    .sidebar-widget h3 {
      font-size: 18px;
      color: var(--white);
      margin-bottom: 15px;
    }
    .side-list {
      list-style: none;
    }
    .side-list li {
      margin-bottom: 15px;
      padding-bottom: 12px;
      border-bottom: 1px dashed rgba(255,255,255,0.1);
    }
    .side-list li:last-child {
      border-bottom: none;
    }
    .side-list a {
      font-size: 14px;
      color: var(--text-muted);
      display: block;
    }
    .side-list a:hover {
      color: var(--accent);
    }
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .tag-cloud a {
      font-size: 12px;
      padding: 6px 12px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 4px;
      color: var(--text-muted);
    }
    .tag-cloud a:hover {
      background: rgba(90, 200, 250, 0.15);
      border-color: var(--accent);
      color: var(--accent);
    }

    
    .site-footer {
      background-color: #050811;
      border-top: 1px solid var(--card-border);
      padding: 60px 20px 20px;
      color: var(--text-muted);
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p {
      margin-top: 15px;
      font-size: 14px;
    }
    .footer-links-group h4, .footer-contact h4 {
      color: var(--white);
      font-size: 16px;
      margin-bottom: 20px;
    }
    .footer-links-group ul {
      list-style: none;
    }
    .footer-links-group li {
      margin-bottom: 10px;
    }
    .footer-links-group a:hover {
      color: var(--accent);
    }
    .footer-contact p {
      font-size: 14px;
      margin-bottom: 10px;
    }
    .footer-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-tags a {
      font-size: 11px;
      background: rgba(255,255,255,0.05);
      padding: 4px 8px;
      border-radius: 4px;
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    
    @media (max-width: 991px) {
      .drawer-trigger { display: flex; }
      .desktop-nav { display: none; }
      .hero-title { font-size: 36px; }
      .features-grid { grid-template-columns: 1fr; }
      .content-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
      .hero-visual-center { max-width: 100%; padding: 20px 0; }
      .float-card {
        position: static;
        width: 100%;
        margin-top: 15px;
      }
    }