﻿:root {
      --primary: rgb(34,197,94);
      --primary-hover: rgb(22,163,74);
      --primary-alpha: rgba(34,197,94, 0.15);
      --bg: #0b0f19;
      --surface: #111827;
      --surface-light: #1f2937;
      --text: #f3f4f6;
      --text-muted: #9ca3af;
      --border: rgba(255, 255, 255, 0.08);
      --radius: 12px;
      --container-width: 1200px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--bg);
      color: var(--text);
      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; }
    img { max-width: 100%; height: auto; }
    
    
    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(11, 15, 25, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo img {
      display: block;
      height: 36px;
      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;
      letter-spacing: -0.5px;
    }
    .logo span em {
      color: var(--primary);
      font-style: normal;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-menu a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .nav-menu a:hover, .nav-menu a.active {
      color: var(--primary);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .btn-primary {
      background-color: var(--primary);
      color: #fff;
      border: none;
      box-shadow: 0 4px 14px rgba(34,197,94, 0.4);
    }
    .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(34,197,94, 0.6);
    }
    .btn-secondary {
      background-color: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }
    .btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.05);
      border-color: var(--text-muted);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text);
      font-size: 24px;
      cursor: pointer;
    }

    
    .drawer {
      position: fixed;
      top: 0;
      left: -100%;
      width: 300px;
      height: 100vh;
      background-color: var(--surface);
      z-index: 200;
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 10px 0 30px rgba(0,0,0,0.5);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .drawer.open {
      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: 24px;
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      font-size: 18px;
      font-weight: 500;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.6);
      z-index: 150;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .drawer-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    
    .hero-layout-08 {
      position: relative;
      padding: 80px 0 60px;
      background: radial-gradient(circle at top, rgba(34,197,94, 0.08) 0%, transparent 70%);
      text-align: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary-alpha);
      color: var(--primary);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      border: 1px solid rgba(34,197,94, 0.2);
    }
    .hero-layout-08 h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .hero-layout-08 h1 span {
      background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-layout-08 p {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto 32px;
    }
    .hero-layout-08 .btn-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
    }
    
    
    .dashboard-panel {
      background: rgba(17, 24, 39, 0.6);
      border: 1px solid var(--border);
      border-radius: 16px;
      backdrop-filter: blur(20px);
      padding: 24px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
      margin-top: 20px;
    }
    .panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border);
      padding-bottom: 16px;
      margin-bottom: 20px;
    }
    .panel-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #fff;
    }
    .pulse-dot {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--primary);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34,197,94, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34,197,94, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34,197,94, 0); }
    }
    .market-tabs {
      display: flex;
      gap: 8px;
    }
    .tab-btn {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
    }
    .tab-btn.active {
      background: var(--primary-alpha);
      color: var(--primary);
      border-color: var(--primary);
    }
    .market-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .market-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      text-align: left;
    }
    .market-pair {
      font-weight: 700;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .market-pair span:last-child {
      font-size: 12px;
      font-weight: 500;
    }
    .market-price {
      font-size: 24px;
      font-weight: 800;
      font-family: monospace;
      margin-bottom: 8px;
    }
    .up { color: rgb(34,197,94); }
    .down { color: #ef4444; }
    .chart-placeholder {
      height: 60px;
      display: flex;
      align-items: flex-end;
      gap: 4px;
    }
    .chart-bar {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border-radius: 2px;
    }
    .chart-bar.up-bar { background: rgba(34,197,94, 0.25); }
    .chart-bar.down-bar { background: rgba(239,68,68, 0.25); }

    
    .trust-strip {
      background: rgba(255,255,255,0.01);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
      margin-bottom: 80px;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      text-align: center;
    }
    .trust-item h3 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 4px; }
    .trust-item h3 em { color: var(--primary); font-style: normal; }
    .trust-item p { font-size: 13px; color: var(--text-muted); }

    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 16px; }
    .section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 80px;
    }
    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      border-color: rgba(34,197,94, 0.3);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      background: var(--primary-alpha);
      color: var(--primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    .feature-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
    .feature-card p { color: var(--text-muted); font-size: 14px; }

    
    .cta-section {
      background: linear-gradient(135deg, rgba(34,197,94, 0.15) 0%, rgba(17, 24, 39, 0.2) 100%), var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-bottom: 80px;
    }
    .cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
    .cta-section h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 16px; }
    .cta-section p { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }

    
    .news-section { margin-bottom: 80px; }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .news-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .news-img {
      height: 200px;
      background: #1f2937;
      position: relative;
    }
    .news-img img { width: 100%; height: 100%; object-fit: cover; }
    .news-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase;
    }
    .news-content {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .news-meta {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .news-meta span { display: inline-flex; align-items: center; gap: 4px; }
    .news-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .news-summary {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      flex: 1;
    }
    .news-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
    }
    .news-link:hover { color: var(--primary-hover); }

    
    footer {
      background: #090d16;
      border-top: 1px solid var(--border);
      padding: 60px 0 30px;
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-about p { color: var(--text-muted); margin-top: 16px; margin-bottom: 24px; font-size: 14px; max-width: 320px; }
    .footer-links h4 { color: #fff; font-weight: 700; margin-bottom: 20px; font-size: 15px; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { color: var(--text-muted); }
    .footer-links a:hover { color: var(--primary); }
    
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-muted);
      font-size: 12px;
    }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-warning {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      color: rgba(255, 255, 255, 0.3);
      font-size: 11px;
      line-height: 1.6;
    }

    
    @media (max-width: 1024px) {
      .hero-layout-08 h1 { font-size: 38px; }
      .market-grid { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .news-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-menu, .nav-actions { display: none; }
      .menu-toggle { display: block; }
      .hero-layout-08 { padding: 40px 0; }
      .hero-layout-08 h1 { font-size: 32px; }
      .hero-layout-08 p { font-size: 15px; }
      .market-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }