﻿:root {
      --primary-color: rgb(225, 112, 85);
      --primary-hover: rgb(200, 90, 65);
      --bg-dark: #0A1128;
      --ice-blue: #1D7BFF;
      --silver-white: #F8FAFC;
      --text-dark: #1E293B;
      --text-light: #64748B;
      --border-color: #E2E8F0;
      --white: #FFFFFF;
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-dark);
      background-color: #F8FAFC;
      line-height: 1.6;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid transparent;
    }
    .btn-primary {
      background-color: var(--primary-color);
      color: var(--white);
    }
    .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
    }
    .btn-outline {
      border-color: var(--border-color);
      background: transparent;
      color: var(--text-dark);
    }
    .btn-outline:hover {
      background-color: var(--border-color);
    }

    
    .site-header {
      background-color: var(--white);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .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-dark);
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      gap: 28px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-dark);
    }
    .desktop-nav a:hover {
      color: var(--primary-color);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
    }
    .menu-toggle span {
      width: 100%;
      height: 2px;
      background-color: var(--text-dark);
      transition: all 0.3s;
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-nav {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100%;
      background-color: var(--white);
      z-index: 999;
      box-shadow: 2px 0 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .drawer-nav.active {
      left: 0;
    }
    .drawer-header {
      padding: 20px;
      border-bottom: 1px solid var(--border-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--text-dark);
    }
    .drawer-body {
      padding: 20px;
      flex-grow: 1;
      overflow-y: auto;
    }
    .drawer-menu {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .drawer-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
    }
    .drawer-menu a:hover {
      color: var(--primary-color);
    }

    
    .hero-layout-01 {
      background: radial-gradient(circle at top, #111A35 0%, #0A1128 100%);
      color: var(--silver-white);
      padding: 100px 20px 160px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero-layout-01::before {
      content: '';
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(29, 123, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-tag {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(29, 123, 255, 0.1);
      border: 1px solid rgba(29, 123, 255, 0.3);
      color: #38BDF8;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .hero-layout-01 h1 {
      font-size: 46px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--silver-white);
      letter-spacing: -1px;
    }
    .hero-layout-01 h1 span {
      color: #38BDF8;
    }
    .hero-layout-01 .hero-subtitle {
      font-size: 18px;
      color: #94A3B8;
      max-width: 800px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }
    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 80px;
      position: relative;
      z-index: 10;
    }
    .hero-buttons .btn-primary {
      background: #1D7BFF;
      border-color: #1D7BFF;
      color: #fff;
      box-shadow: 0 4px 14px rgba(29, 123, 255, 0.4);
    }
    .hero-buttons .btn-primary:hover {
      background: #0062E6;
    }
    .hero-buttons .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--silver-white);
    }
    .hero-buttons .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    .hero-visual-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }
    .hero-main-panel {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(29, 123, 255, 0.2);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
      backdrop-filter: blur(10px);
    }
    .hero-chart-placeholder {
      height: 240px;
      border-bottom: 2px dashed rgba(29, 123, 255, 0.2);
      position: relative;
      overflow: hidden;
    }
    .chart-line {
      position: absolute;
      bottom: 40px;
      left: 0;
      width: 100%;
      height: 100px;
      background: linear-gradient(180deg, rgba(29, 123, 255, 0.2), transparent);
      clip-path: polygon(0 80%, 15% 60%, 30% 85%, 45% 40%, 60% 70%, 75% 20%, 90% 45%, 100% 10%, 100% 100%, 0 100%);
    }
    .chart-line::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-top: 3px solid #38BDF8;
      clip-path: polygon(0 80%, 15% 60%, 30% 85%, 45% 40%, 60% 70%, 75% 20%, 90% 45%, 100% 10%);
    }
    .floating-card {
      position: absolute;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px;
      padding: 16px 20px;
      text-align: left;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      backdrop-filter: blur(8px);
      width: 220px;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .floating-card:hover {
      transform: translateY(-5px);
      border-color: #1D7BFF;
    }
    .card-top-left { top: -40px; left: -60px; }
    .card-top-right { top: -40px; right: -60px; }
    .card-bottom-left { bottom: -20px; left: -80px; }
    .card-bottom-right { bottom: -20px; right: -80px; }
    .floating-card h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--silver-white);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .floating-card h4 svg {
      color: #38BDF8;
      fill: currentColor;
    }
    .floating-card p {
      font-size: 13px;
      color: #94A3B8;
      margin: 0;
      line-height: 1.4;
    }

    
    .section-title {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-dark);
    }
    .section-subtitle {
      text-align: center;
      font-size: 16px;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto 50px;
    }
    .features {
      padding: 80px 0;
      background-color: var(--white);
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .feature-card {
      padding: 40px 30px;
      border-radius: 12px;
      background-color: var(--white);
      border: 1px solid var(--border-color);
      transition: all 0.3s;
    }
    .feature-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-5px);
      border-color: var(--primary-color);
    }
    .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      background-color: rgba(225, 112, 85, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--primary-color);
    }
    .feature-icon svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
    }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .feature-card p {
      color: var(--text-light);
      font-size: 15px;
    }

    
    .assets {
      padding: 80px 0;
      background-color: #F8FAFC;
    }
    .assets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .asset-card {
      background: var(--white);
      padding: 24px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    .asset-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }
    .asset-card h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .asset-card p {
      font-size: 14px;
      color: var(--text-light);
    }

    
    .cta-section {
      background: linear-gradient(135deg, var(--bg-dark) 0%, #152244 100%);
      color: var(--silver-white);
      padding: 80px 0;
      text-align: center;
    }
    .cta-content h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .cta-content p {
      font-size: 18px;
      color: #94A3B8;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    
    .articles-section {
      padding: 80px 0;
      background-color: var(--white);
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    .article-card {
      background-color: var(--white);
      border-radius: 12px;
      border: 1px solid var(--border-color);
      overflow: hidden;
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
    }
    .article-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-5px);
    }
    .article-image {
      height: 200px;
      background-color: #E2E8F0;
      overflow: hidden;
      position: relative;
    }
    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-body {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .article-meta {
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 12px;
      display: flex;
      gap: 16px;
    }
    .article-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .article-title a:hover {
      color: var(--primary-color);
    }
    .article-summary {
      color: var(--text-light);
      font-size: 14px;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .article-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid var(--border-color);
    }
    .article-tag {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary-color);
      background-color: rgba(225, 112, 85, 0.1);
      padding: 4px 10px;
      border-radius: 4px;
    }
    .read-more {
      font-size: 14px;
      font-weight: 600;
      color: var(--primary-color);
    }

    
    .site-footer {
      background-color: var(--bg-dark);
      color: #94A3B8;
      padding: 80px 0 40px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .footer-brand .logo span {
      color: var(--silver-white);
    }
    .footer-col h5 {
      color: var(--silver-white);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 12px;
    }
    .footer-links a:hover {
      color: var(--silver-white);
    }
    .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;
      font-size: 14px;
    }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    
    @media (max-width: 1024px) {
      .floating-card {
        position: static;
        width: 100%;
        margin-top: 16px;
      }
      .hero-visual-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 40px;
      }
      .hero-main-panel {
        grid-column: span 2;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .desktop-nav, .header-actions .btn {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .hero-layout-01 h1 {
        font-size: 32px;
      }
      .hero-subtitle {
        font-size: 16px;
      }
      .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }
      .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
      }
    }
    @media (max-width: 640px) {
      .hero-visual-wrapper {
        grid-template-columns: 1fr;
      }
      .hero-main-panel {
        grid-column: span 1;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }