﻿:root {
      --primary-color: #1D7BFF;
      --primary-purple: rgb(126,34,206);
      --dark-bg: #0B111E;
      --silver-white: #F5F7FA;
      --dark-sea: #111827;
      --text-light: #F5F7FA;
      --text-dark: #0F172A;
      --text-muted: #64748B;
      --glass-bg: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(255, 255, 255, 0.08);
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

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

    body {
      font-family: var(--font-family);
      background-color: var(--silver-white);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    
    .site-header {
      background-color: var(--dark-bg);
      border-bottom: 1px solid var(--glass-border);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      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: 20px;
      font-weight: 800;
      line-height: 1;
      color: #fff;
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      gap: 30px;
    }
    .desktop-nav a {
      color: #D1D5DB;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.3s;
    }
    .desktop-nav 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-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .btn-primary {
      background-color: var(--primary-color);
      color: #fff;
      border: none;
    }
    .btn-primary:hover {
      background-color: #0062cc;
      transform: translateY(-2px);
    }
    .btn-outline {
      background-color: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,0.4);
    }
    .btn-outline:hover {
      background-color: rgba(255,255,255,0.1);
      border-color: #fff;
    }
    .btn-sm {
      padding: 8px 16px;
      font-size: 14px;
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 6px;
      padding: 5px;
    }
    .mobile-menu-btn span {
      display: block;
      width: 25px;
      height: 2px;
      background-color: #fff;
      transition: 0.3s;
    }

    
    .mobile-drawer-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.6);
      z-index: 1001;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .mobile-drawer-mask.active {
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -320px;
      width: 300px;
      height: 100vh;
      background-color: var(--dark-bg);
      border-right: 1px solid var(--glass-border);
      z-index: 1002;
      padding: 25px;
      display: flex;
      flex-direction: column;
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-drawer.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .drawer-close-btn {
      background: none;
      border: none;
      font-size: 28px;
      color: #fff;
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: auto;
    }
    .drawer-nav a {
      color: #D1D5DB;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
    }
    .drawer-nav a:hover {
      color: var(--primary-color);
    }
    .drawer-footer {
      border-top: 1px solid var(--glass-border);
      padding-top: 20px;
      color: #9CA3AF;
      font-size: 14px;
    }

    
    .hero-layout-01 {
      position: relative;
      background: radial-gradient(circle at 50% 30%, #1e293b 0%, var(--dark-bg) 70%);
      padding: 100px 20px 220px;
      text-align: center;
      overflow: hidden;
      color: #fff;
    }
    .hero-manifesto {
      max-width: 800px;
      margin: 0 auto;
      z-index: 5;
      position: relative;
    }
    .hero-tag {
      display: inline-block;
      background: rgba(29, 123, 255, 0.15);
      border: 1px solid var(--primary-color);
      color: #60A5FA;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 25px;
      letter-spacing: 1px;
    }
    .hero-title {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: 18px;
      color: #94A3B8;
      max-width: 650px;
      margin: 0 auto 35px;
      line-height: 1.6;
    }
    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 80px;
    }

    
    .hero-visual-wrapper {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      height: auto;
    }
    .hero-main-panel {
      background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 40px;
      backdrop-filter: blur(20px);
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
      position: relative;
      z-index: 2;
    }
    .hero-main-panel img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
    }
    .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 15px;
    }
    .panel-dots {
      display: flex;
      gap: 6px;
    }
    .panel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
    }
    .panel-dot:first-child { background: #EF4444; }
    .panel-dot:nth-child(2) { background: #F59E0B; }
    .panel-dot:last-child { background: #10B981; }
    .panel-title {
      font-size: 14px;
      color: #94A3B8;
    }

    
    .float-card {
      position: absolute;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid var(--primary-color);
      border-radius: 12px;
      padding: 16px 20px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.4);
      z-index: 10;
      text-align: left;
      width: 220px;
      backdrop-filter: blur(10px);
      transition: transform 0.3s ease;
    }
    .float-card:hover {
      transform: translateY(-5px);
    }
    .fc-title {
      font-size: 14px;
      font-weight: 700;
      color: #60A5FA;
      margin-bottom: 4px;
    }
    .fc-val {
      font-size: 20px;
      font-weight: 800;
      color: #FFFFFF;
    }
    .fc-desc {
      font-size: 12px;
      color: #94A3B8;
    }

    
    .fc-top-left { top: -20px; left: -80px; }
    .fc-top-right { top: -20px; right: -80px; }
    .fc-bottom-left { bottom: -20px; left: -80px; }
    .fc-bottom-right { bottom: -20px; right: -80px; }

    
    .trust-layer {
      background-color: var(--dark-sea);
      padding: 40px 20px;
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .trust-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      text-align: center;
    }
    .trust-item h3 {
      font-size: 32px;
      color: var(--primary-color);
      margin-bottom: 5px;
    }
    .trust-item p {
      font-size: 14px;
      color: #9CA3AF;
    }

    
    .section {
      padding: 90px 20px;
    }
    .section-title {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
    }
    .section-title h2 {
      font-size: 36px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 15px;
    }
    .section-title p {
      color: var(--text-muted);
      font-size: 16px;
    }

    
    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .feature-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 35px;
      transition: all 0.3s ease;
      position: relative;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05);
      border-color: var(--primary-color);
    }
    .feature-icon {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      background: rgba(29, 123, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      color: var(--primary-color);
      font-size: 24px;
      font-weight: bold;
    }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-dark);
    }
    .feature-card p {
      color: var(--text-muted);
      font-size: 15px;
    }

    
    .trading-assets {
      background-color: #fff;
      border-radius: 16px;
      padding: 40px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
      border: 1px solid #E2E8F0;
    }
    .assets-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .assets-table th {
      padding: 15px;
      border-bottom: 2px solid #E2E8F0;
      color: var(--text-muted);
      font-weight: 600;
    }
    .assets-table td {
      padding: 20px 15px;
      border-bottom: 1px solid #E2E8F0;
    }
    .asset-name {
      font-weight: 700;
      color: var(--text-dark);
    }
    .asset-badge {
      display: inline-block;
      padding: 4px 8px;
      background: #F1F5F9;
      color: var(--text-dark);
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
    }
    .trend-up { color: #10B981; font-weight: 600; }

    
    .articles-section {
      background-color: #fff;
    }
    .articles-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .article-card {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
    }
    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.08);
      border-color: var(--primary-color);
    }
    .article-img {
      height: 200px;
      width: 100%;
      object-fit: cover;
      background: #E2E8F0;
    }
    .article-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      display: flex;
      gap: 15px;
      color: var(--text-muted);
      font-size: 12px;
      margin-bottom: 10px;
    }
    .article-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.4;
      text-decoration: none;
    }
    .article-title:hover {
      color: var(--primary-color);
    }
    .article-excerpt {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .article-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #F1F5F9;
      padding-top: 15px;
    }
    .article-tag-badge {
      font-size: 12px;
      background-color: rgba(29, 123, 255, 0.08);
      color: var(--primary-color);
      padding: 4px 10px;
      border-radius: 20px;
      text-decoration: none;
    }

    
    .site-footer {
      background-color: var(--dark-bg);
      color: #9CA3AF;
      padding: 80px 20px 40px;
      border-top: 1px solid var(--glass-border);
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 60px;
      margin-bottom: 60px;
    }
    .footer-brand .logo {
      margin-bottom: 20px;
    }
    .footer-desc {
      font-size: 14px;
      line-height: 1.6;
    }
    .footer-links-col h4 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 20px;
    }
    .footer-links-col ul {
      list-style: none;
    }
    .footer-links-col ul li {
      margin-bottom: 12px;
    }
    .footer-links-col ul li a {
      color: #9CA3AF;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-links-col ul li a:hover {
      color: var(--primary-color);
    }
    .footer-bottom {
      border-top: 1px solid var(--glass-border);
      padding-top: 30px;
    }
    .footer-bottom-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }
    .footer-bottom-container a {
      color: #9CA3AF;
      text-decoration: none;
    }
    .footer-bottom-container a:hover {
      color: var(--primary-color);
    }

    
    @media (max-width: 1024px) {
      .hero-layout-01 {
        padding: 80px 20px 180px;
      }
      .hero-title { font-size: 42px; }
      .float-card { display: none; } 
      .features-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .trust-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .desktop-nav, .header-actions .btn { display: none; }
      .mobile-menu-btn { display: flex; }
      .hero-title { font-size: 32px; }
      .hero-btns { flex-direction: column; }
      .features-grid, .articles-grid {
        grid-template-columns: 1fr;
      }
      .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
    }