﻿:root {
      --primary-color: rgb(15,157,88);
      --primary-hover: rgb(12,135,75);
      --bg-dark: #0a0f1d;
      --bg-card: #121829;
      --bg-light: #1a233a;
      --text-main: #ffffff;
      --text-muted: #8fa0dd;
      --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-main);
      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(10, 15, 29, 0.9);
      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;
      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: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--text-main);
      white-space: nowrap;
    }

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

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

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

    .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;
      border: none;
    }

    .btn-primary {
      background-color: var(--primary-color);
      color: #fff;
    }

    .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--primary-color);
      color: var(--primary-color);
    }

    .btn-outline:hover {
      background: rgba(15,157,88,0.1);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-main);
      font-size: 24px;
      cursor: pointer;
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .drawer {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100%;
      background: var(--bg-card);
      z-index: 2001;
      box-shadow: 5px 0 15px rgba(0,0,0,0.5);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      padding: 20px;
    }

    .drawer.active {
      left: 0;
    }

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

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
    }

    .drawer-close {
      background: none;
      border: none;
      color: var(--text-main);
      font-size: 24px;
      cursor: pointer;
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: auto;
    }

    .drawer-nav a {
      font-size: 16px;
      color: var(--text-muted);
      padding: 10px 0;
      border-bottom: 1px solid var(--border-color);
    }

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

    
    .hero {
      padding: 140px 20px 80px;
      background: radial-gradient(circle at top, rgba(15,157,88,0.15) 0%, rgba(10,15,29,1) 70%);
      text-align: center;
    }

    .hero-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      background: rgba(15,157,88,0.1);
      border: 1px solid rgba(15,157,88,0.3);
      color: var(--primary-color);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .hero p {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 35px;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 60px;
    }

    
    .dashboard-visual {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      position: relative;
      overflow: hidden;
    }

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

    .dashboard-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 16px;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      background-color: var(--primary-color);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--primary-color);
    }

    .market-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .market-card {
      background: var(--bg-light);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 16px;
      text-align: left;
    }

    .market-pair {
      font-weight: 700;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .market-price {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
    }

    .market-change {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    
    .trust-strip {
      background: rgba(18, 24, 41, 0.5);
      border-y: 1px solid var(--border-color);
      padding: 20px 0;
      text-align: center;
    }

    .trust-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .trust-number {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary-color);
    }

    .trust-label {
      font-size: 14px;
      color: var(--text-muted);
    }

    
    .features {
      padding: 100px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }

    .section-header h2 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .section-header p {
      color: var(--text-muted);
      font-size: 16px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 40px;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      border-color: rgba(15,157,88,0.4);
      box-shadow: 0 10px 30px rgba(15,157,88,0.05);
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      background: rgba(15,157,88,0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      margin-bottom: 24px;
      font-size: 24px;
    }

    .feature-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .feature-card p {
      color: var(--text-muted);
      font-size: 15px;
    }

    
    .steps {
      padding: 100px 20px;
      background-color: var(--bg-light);
    }

    .steps-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      position: relative;
    }

    .step-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 30px;
      position: relative;
    }

    .step-number {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 48px;
      font-weight: 800;
      color: rgba(15,157,88,0.15);
      line-height: 1;
    }

    .step-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .step-card p {
      color: var(--text-muted);
      font-size: 14px;
    }

    
    .articles {
      padding: 100px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .article-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s ease;
    }

    .article-card:hover {
      transform: translateY(-5px);
      border-color: rgba(15,157,88,0.3);
    }

    .article-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #1e293b;
    }

    .article-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .article-meta {
      display: flex;
      gap: 15px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .article-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .article-summary {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-footer {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--border-color);
      padding-top: 15px;
    }

    .article-tag {
      background: rgba(15,157,88,0.1);
      color: var(--primary-color);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
    }

    .article-link {
      color: var(--primary-color);
      font-size: 14px;
      font-weight: 600;
    }

    
    .cta {
      padding: 100px 20px;
      background: linear-gradient(135deg, var(--bg-light) 0%, rgba(15,157,88,0.1) 100%);
      border-top: 1px solid var(--border-color);
      text-align: center;
    }

    .cta-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta h2 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .cta p {
      color: var(--text-muted);
      font-size: 16px;
      margin-bottom: 35px;
    }

    
    footer {
      background-color: #050810;
      border-top: 1px solid var(--border-color);
      padding: 80px 20px 30px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 50px;
      margin-bottom: 60px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-brand p {
      color: var(--text-muted);
      font-size: 14px;
    }

    .footer-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #fff;
    }

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

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

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

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

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid var(--border-color);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-copyright {
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-warning {
      max-width: 1200px;
      margin: 20px auto 0;
      font-size: 11px;
      color: rgba(143,160,221,0.5);
      line-height: 1.6;
      border-top: 1px solid rgba(255,255,255,0.03);
      padding-top: 20px;
    }

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

    @media (max-width: 768px) {
      .nav-desktop, .header-actions {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .hero h1 {
        font-size: 32px;
      }
      .hero p {
        font-size: 15px;
      }
      .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }