﻿:root {
      --primary-color: rgb(80,250,123);
      --primary-hover: #3efb7b;
      --bg-dark: #0b0f19;
      --bg-card: #151c2c;
      --bg-card-hover: #1e293b;
      --text-light: #f8fafc;
      --text-muted: #94a3b8;
      --border-color: rgba(80,250,123,0.15);
      --border-hover: rgba(80,250,123,0.4);
      --gradient-bg: linear-gradient(135deg, #0b0f19 0%, #111827 100%);
      --accent-glow: rgba(80,250,123,0.25);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background: var(--bg-dark);
      color: var(--text-light);
      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;
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    header {
      background: rgba(11, 15, 25, 0.95);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }
    .header-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .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-color);
      white-space: nowrap;
      letter-spacing: 0.5px;
    }
    .nav-list {
      display: flex;
      align-items: center;
      gap: 30px;
    }
    .nav-list a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-light);
      padding: 8px 0;
      position: relative;
    }
    .nav-list a:hover, .nav-list a.active {
      color: var(--primary-color);
    }
    .nav-list a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      transition: width 0.3s ease;
    }
    .nav-list a:hover::after, .nav-list a.active::after {
      width: 100%;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
    }
    .btn-primary {
      background: var(--primary-color);
      color: #0b0f19;
      box-shadow: 0 4px 15px var(--accent-glow);
    }
    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(80,250,123,0.4);
    }
    .btn-outline {
      background: transparent;
      color: var(--primary-color);
      border: 1px solid var(--primary-color);
    }
    .btn-outline:hover {
      background: rgba(80,250,123,0.1);
      transform: translateY(-2px);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 24px;
      cursor: pointer;
    }
    
    .drawer-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(5px);
      z-index: 1999;
      display: none;
    }
    .drawer-backdrop.active {
      display: block;
    }
    .drawer-menu {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100%;
      background: var(--bg-card);
      z-index: 2000;
      box-shadow: 5px 0 25px rgba(0,0,0,0.5);
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .drawer-menu.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: 28px;
      cursor: pointer;
    }
    .drawer-close:hover {
      color: var(--primary-color);
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-light);
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drawer-nav a:hover {
      color: var(--primary-color);
      padding-left: 5px;
    }
    
    .hero {
      position: relative;
      padding: 100px 0 120px;
      background: radial-gradient(circle at 80% 20%, rgba(80,250,123,0.1) 0%, transparent 50%), var(--gradient-bg);
      border-bottom: 1px solid var(--border-color);
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -10%;
      left: -10%;
      width: 40%;
      height: 40%;
      background: radial-gradient(circle, rgba(80,250,123,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }
    .hero-content h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }
    .hero-content h1 span {
      color: var(--primary-color);
      text-shadow: 0 0 15px rgba(80,250,123,0.3);
    }
    .hero-content p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 35px;
      line-height: 1.8;
    }
    .hero-actions {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .visual-wrapper {
      position: relative;
      width: 100%;
      max-width: 450px;
      aspect-ratio: 1;
      background: linear-gradient(135deg, rgba(80,250,123,0.2) 0%, rgba(21,28,44,0.8) 100%);
      border-radius: 24px;
      padding: 30px;
      border: 1px solid var(--border-color);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .visual-badge {
      align-self: flex-start;
      background: rgba(80,250,123,0.1);
      color: var(--primary-color);
      border: 1px solid var(--primary-color);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
    }
    .visual-main {
      text-align: center;
    }
    .visual-main .num {
      font-size: 72px;
      font-weight: 900;
      color: var(--primary-color);
      line-height: 1;
      text-shadow: 0 0 30px rgba(80,250,123,0.5);
    }
    .visual-main .label {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 10px;
      letter-spacing: 2px;
    }
    .visual-footer {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 15px;
      font-size: 13px;
      color: var(--text-muted);
    }
    
    .stats-bar {
      background: var(--bg-card);
      border-bottom: 1px solid var(--border-color);
      padding: 40px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .stat-item {
      text-align: center;
    }
    .stat-item .value {
      font-size: 36px;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 5px;
    }
    .stat-item .label {
      font-size: 14px;
      color: var(--text-muted);
    }
    
    .features {
      padding: 100px 0;
      background: var(--bg-dark);
    }
    .sec-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
    }
    .sec-header h2 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 15px;
    }
    .sec-header h2 span {
      color: var(--primary-color);
    }
    .sec-header p {
      color: var(--text-muted);
      font-size: 16px;
    }
    .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: 16px;
      padding: 40px 30px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .feature-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary-color);
      box-shadow: 0 10px 30px rgba(80,250,123,0.1);
    }
    .feature-icon {
      width: 60px;
      height: 60px;
      background: rgba(80,250,123,0.05);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      border: 1px solid var(--border-color);
    }
    .feature-icon svg {
      width: 30px;
      height: 30px;
      fill: var(--primary-color);
    }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .feature-card p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }
    
    .articles-section {
      padding: 100px 0;
      background: var(--bg-dark);
      border-top: 1px solid var(--border-color);
    }
    .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: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .article-card:hover {
      border-color: var(--primary-color);
      transform: translateY(-5px);
    }
    .article-thumb {
      width: 100%;
      aspect-ratio: 1.6;
      background: #111827;
      position: relative;
      overflow: hidden;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .article-card:hover .article-thumb img {
      transform: scale(1.05);
    }
    .article-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary-color);
      color: #0b0f19;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase;
    }
    .article-info {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .article-info h3 {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-info p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 15px;
    }
    .read-more {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-color);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .read-more:hover {
      color: var(--primary-hover);
    }
    
    .cta {
      padding: 100px 0;
      background: radial-gradient(circle at center, rgba(80,250,123,0.15) 0%, transparent 70%), var(--bg-card);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      text-align: center;
    }
    .cta-content {
      max-width: 700px;
      margin: 0 auto;
    }
    .cta h2 {
      font-size: 40px;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .cta h2 span {
      color: var(--primary-color);
    }
    .cta p {
      color: var(--text-muted);
      font-size: 18px;
      margin-bottom: 40px;
    }
    
    footer {
      background: #070a12;
      padding: 80px 0 30px;
      font-size: 14px;
      color: var(--text-muted);
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 50px;
      margin-bottom: 60px;
    }
    .footer-brand .logo {
      margin-bottom: 20px;
    }
    .footer-brand p {
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .footer-links h4 {
      color: var(--text-light);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links ul li {
      margin-bottom: 12px;
    }
    .footer-links ul li a:hover {
      color: var(--primary-color);
      padding-left: 3px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
      }
      .hero-actions {
        justify-content: center;
      }
      .hero-visual {
        order: -1;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .features-grid, .article-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .nav-list, .header-actions .btn-outline {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .hero-content h1 {
        font-size: 36px;
      }
      .features-grid, .article-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }