﻿:root {
      --primary: #1D7BFF;
      --primary-rgb: 29, 123, 255;
      --bg-dark: #0B0F19;
      --bg-card: #151D30;
      --text-light: #F3F4F6;
      --text-muted: #9CA3AF;
      --border-color: rgba(255, 255, 255, 0.08);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--font-sans);
      background-color: var(--bg-dark);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    
    
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(11, 15, 25, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-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 {
      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;
      letter-spacing: 1px;
      background: linear-gradient(135deg, #FFF, var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-list {
      display: flex;
      gap: 30px;
      align-items: center;
    }
    .nav-list a {
      font-weight: 500;
      font-size: 15px;
      color: var(--text-muted);
    }
    .nav-list a:hover {
      color: var(--primary);
    }
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 24px;
      cursor: pointer;
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 998;
      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-card);
      z-index: 999;
      transition: all 0.3s ease;
      box-shadow: 5px 0 15px rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      padding: 24px;
    }
    .drawer.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .drawer-close {
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 24px;
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      font-size: 16px;
      color: var(--text-muted);
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drawer-nav a:hover {
      color: var(--primary);
    }

    
    .hero-layout-01 {
      position: relative;
      padding: 120px 20px 80px;
      background: radial-gradient(circle at 50% 10%, rgba(29, 123, 255, 0.15), transparent 60%);
      text-align: center;
      overflow: hidden;
    }
    .hero-inner {
      max-width: 1000px;
      margin: 0 auto;
    }
    .brand-badge {
      display: inline-block;
      background: rgba(29, 123, 255, 0.1);
      border: 1px solid rgba(29, 123, 255, 0.3);
      padding: 8px 18px;
      border-radius: 50px;
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 1px;
    }
    .hero-layout-01 h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 20px;
      color: #fff;
    }
    .hero-layout-01 h1 span {
      background: linear-gradient(135deg, #FFFFFF, #92C1FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-layout-01 .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 35px;
    }
    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 60px;
    }
    .btn {
      padding: 12px 30px;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .btn-primary {
      background-color: var(--primary);
      color: #fff;
      border: none;
      box-shadow: 0 4px 14px rgba(29, 123, 255, 0.4);
    }
    .btn-primary:hover {
      background-color: #0b62e0;
      transform: translateY(-2px);
    }
    .btn-secondary {
      background-color: transparent;
      color: var(--text-light);
      border: 1px solid var(--border-color);
    }
    .btn-secondary:hover {
      background-color: rgba(255,255,255,0.05);
      border-color: #fff;
    }

    
    .visual-wrapper {
      position: relative;
      margin-top: 40px;
      padding: 20px;
    }
    .hero-visual-panel {
      width: 100%;
      max-width: 800px;
      height: 400px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(21, 29, 48, 0.8), rgba(11, 15, 25, 0.9));
      border: 1px solid rgba(29, 123, 255, 0.2);
      border-radius: 12px;
      position: relative;
      z-index: 2;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
    .hero-visual-panel::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(29, 123, 255, 0.15) 0%, transparent 50%);
      pointer-events: none;
    }
    .tech-grid-box {
      border: 1px dashed rgba(29, 123, 255, 0.3);
      padding: 30px;
      border-radius: 8px;
      background: rgba(29, 123, 255, 0.02);
      text-align: center;
    }
    .floating-cards-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .float-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 24px;
      border-radius: 8px;
      text-align: left;
      transition: all 0.3s ease;
      position: relative;
    }
    .float-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
      box-shadow: 0 10px 20px rgba(29, 123, 255, 0.1);
    }
    .float-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .float-card h3 svg {
      color: var(--primary);
    }
    .float-card p {
      font-size: 13px;
      color: var(--text-muted);
    }

    
    section.features-section {
      padding: 100px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 50px;
      background: linear-gradient(135deg, #fff, var(--text-muted));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 40px 30px;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
    }
    .feature-icon {
      width: 50px;
      height: 50px;
      border-radius: 8px;
      background: rgba(29, 123, 255, 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .feature-card h3 {
      margin-bottom: 12px;
      color: #fff;
    }
    .feature-card p {
      color: var(--text-muted);
      font-size: 14px;
    }

    
    section.articles-section {
      padding: 100px 20px;
      background: rgba(21, 29, 48, 0.4);
      border-top: 1px solid var(--border-color);
    }
    .articles-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .article-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    .article-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
    }
    .article-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #1f2a45;
    }
    .article-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .article-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .article-summary {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .article-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 15px;
    }
    .read-more {
      font-size: 14px;
      color: var(--primary);
      font-weight: 600;
    }

    
    section.cta-section {
      padding: 100px 20px;
      text-align: center;
      background: radial-gradient(circle at center, rgba(29, 123, 255, 0.1), transparent 75%);
    }
    .cta-box {
      max-width: 800px;
      margin: 0 auto;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 60px 40px;
    }
    .cta-box h2 {
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 20px;
    }
    .cta-box p {
      color: var(--text-muted);
      font-size: 16px;
      margin-bottom: 30px;
    }

    
    footer {
      background: #060911;
      border-top: 1px solid var(--border-color);
      padding: 80px 20px 40px;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-about .logo {
      margin-bottom: 20px;
    }
    .footer-about p {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 20px;
    }
    .footer-links h4 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 20px;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links ul li {
      margin-bottom: 12px;
    }
    .footer-links ul li a {
      color: var(--text-muted);
      font-size: 14px;
    }
    .footer-links ul li a:hover {
      color: var(--primary);
    }
    .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;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .footer-meta {
      display: flex;
      gap: 20px;
    }

    @media (max-width: 992px) {
      .hero-layout-01 h1 { font-size: 36px; }
      .floating-cards-container { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .article-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-container { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-list { display: none; }
      .mobile-toggle { display: block; }
      .hero-btns { flex-direction: column; align-items: center; }
      .btn { width: 100%; text-align: center; }
      .hero-visual-panel { height: 280px; }
      .floating-cards-container { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .article-grid { grid-template-columns: 1fr; }
    }