﻿:root {
      --primary: #A855F7;
      --primary-hover: #9333EA;
      --coral: #FF6B6B;
      --coral-hover: #FA5252;
      --dark: #1E1B4B;
      --light-pink: #FFF1F2;
      --blue: #60A5FA;
      --bg-gradient: linear-gradient(135deg, #1E1B4B 0%, #110E30 100%);
      --text-main: #FFFFFF;
      --text-muted: #A5B4FC;
      --card-bg: rgba(255, 255, 255, 0.05);
      --card-border: rgba(255, 255, 255, 0.1);
      --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: #0B0826;
      color: #E2E8F0;
      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(30, 27, 75, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo img {
      display: block;
      height: 38px;
      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: #FFFFFF;
      white-space: nowrap;
      background: linear-gradient(135deg, #FFFFFF 0%, #A855F7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-menu a {
      font-size: 15px;
      font-weight: 500;
      color: #CBD5E1;
    }

    .nav-menu a:hover, .nav-menu a.active {
      color: var(--primary);
    }

    .nav-btn {
      background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%);
      color: #FFF !important;
      padding: 8px 20px;
      border-radius: 99px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    }

    .nav-btn:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1100;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: #FFFFFF;
      transition: all 0.3s ease;
    }

    
    .drawer {
      position: fixed;
      top: 0;
      left: -100%;
      width: 280px;
      height: 100%;
      background: #110E30;
      z-index: 1099;
      padding: 80px 24px 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      box-shadow: 4px 0 25px rgba(0,0,0,0.5);
      transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .drawer.active {
      left: 0;
    }

    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 1098;
      display: none;
      backdrop-filter: blur(4px);
    }

    .drawer-overlay.active {
      display: block;
    }

    .drawer a {
      font-size: 18px;
      font-weight: 600;
      color: #E2E8F0;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    
    .hero-layout-06 {
      position: relative;
      padding: 160px 20px 100px;
      background: var(--bg-gradient);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-layout-06::before {
      content: '';
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(0,0,0,0) 70%);
      pointer-events: none;
    }

    .hero-stack-container {
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: 40px auto;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-card {
      background: rgba(30, 27, 75, 0.6);
      backdrop-filter: blur(16px);
      border: 1px solid var(--card-border);
      border-radius: 24px;
      padding: 40px;
      transition: all 0.4s ease;
    }

    .hero-card-bg-2 {
      position: absolute;
      width: 90%;
      z-index: 1;
      transform: translateY(40px) scale(0.9);
      opacity: 0.4;
      border-color: rgba(96, 165, 250, 0.2);
      background: rgba(26, 23, 68, 0.4);
    }

    .hero-card-bg-1 {
      position: absolute;
      width: 95%;
      z-index: 2;
      transform: translateY(20px) scale(0.95);
      opacity: 0.7;
      border-color: rgba(255, 107, 107, 0.2);
      background: rgba(28, 25, 71, 0.5);
    }

    .hero-card-main {
      position: relative;
      width: 100%;
      z-index: 3;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      border-color: rgba(168, 85, 247, 0.4);
      background: linear-gradient(145deg, rgba(30, 27, 75, 0.9) 0%, rgba(17, 14, 48, 0.95) 100%);
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(168, 85, 247, 0.15);
      border: 1px solid rgba(168, 85, 247, 0.3);
      color: #E9D5FF;
      padding: 6px 16px;
      border-radius: 99px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background-color: var(--coral);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 8px var(--coral);
    }

    .hero-title {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -1px;
      color: #FFF;
    }

    .hero-title span {
      background: linear-gradient(135deg, #FFF 30%, var(--primary) 70%, var(--coral) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      font-size: clamp(15px, 2vw, 17px);
      color: #94A3B8;
      max-width: 600px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%);
      color: #FFFFFF;
      box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #E2E8F0;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }

    
    .float-badge {
      position: absolute;
      background: rgba(30, 27, 75, 0.8);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 10px 16px;
      border-radius: 14px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .float-badge-1 {
      top: 10%;
      left: 10%;
      border-color: rgba(96, 165, 250, 0.3);
      animation: floatY 6s ease-in-out infinite;
    }

    .float-badge-2 {
      bottom: 15%;
      right: 8%;
      border-color: rgba(255, 107, 107, 0.3);
      animation: floatY 8s ease-in-out infinite 1s;
    }

    .float-badge .label { color: #94A3B8; }
    .float-badge .val { color: #34D399; font-weight: 700; }
    .float-badge .val.down { color: #F87171; }

    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    
    .stats-bar {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(17, 14, 48, 0.8);
      padding: 30px 20px;
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .stat-item h3 {
      font-size: 32px;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 4px;
      background: linear-gradient(135deg, #FFF 0%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .stat-item p {
      color: #64748B;
      font-size: 14px;
      font-weight: 500;
    }

    
    section.py {
      padding: 100px 20px;
    }

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

    .sec-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .sec-subtitle {
      color: var(--primary);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
      display: block;
    }

    .sec-title {
      font-size: clamp(28px, 4vw, 38px);
      font-weight: 800;
      color: #FFF;
      max-width: 600px;
      margin: 0 auto;
    }

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

    .adv-card {
      background: rgba(30, 27, 75, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 40px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .adv-card:hover {
      transform: translateY(-5px);
      border-color: rgba(168, 85, 247, 0.3);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .adv-card .icon-box {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(168, 85, 247, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--primary);
    }

    .adv-card h4 {
      font-size: 20px;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 12px;
    }

    .adv-card p {
      color: #94A3B8;
      font-size: 14px;
      line-height: 1.6;
    }

    
    .quotes-table-container {
      background: rgba(30, 27, 75, 0.3);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 24px;
      overflow-x: auto;
    }

    .quotes-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 600px;
    }

    .quotes-table th, .quotes-table td {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .quotes-table th {
      color: #64748B;
      font-weight: 600;
      font-size: 14px;
    }

    .quotes-table td {
      font-size: 15px;
      color: #E2E8F0;
    }

    .pair-name {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
    }

    .spread-tag {
      background: rgba(96, 165, 250, 0.15);
      color: var(--blue);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 600;
    }

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

    .article-card {
      background: rgba(30, 27, 75, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }

    .article-card:hover {
      transform: translateY(-5px);
      border-color: rgba(168, 85, 247, 0.3);
    }

    .article-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #110E30;
    }

    .article-body {
      padding: 28px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: #64748B;
      margin-bottom: 14px;
    }

    .article-tag {
      background: rgba(168, 85, 247, 0.1);
      color: var(--primary);
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

    .article-title {
      font-size: 18px;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .article-summary {
      color: #94A3B8;
      font-size: 14px;
      margin-bottom: 20px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-link {
      margin-top: auto;
      color: var(--primary);
      font-size: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .article-link:hover {
      color: var(--coral);
    }

    
    .cta-sec {
      background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.15), transparent), #110E30;
      border-top: 1px solid rgba(168, 85, 247, 0.2);
      border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    
    footer {
      background: #0B0826;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 80px 20px 40px;
      color: #94A3B8;
    }

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

    .footer-brand p {
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.6;
      max-width: 300px;
    }

    .footer-col h5 {
      color: #FFF;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .footer-col ul {
      list-style: none;
    }

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

    .footer-col ul li a {
      font-size: 14px;
    }

    .footer-col ul li a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
    }

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

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }