﻿:root {
      --primary: #7C3AED;
      --primary-hover: #6D28D9;
      --primary-rgb: 124, 58, 237;
      --bg-dark: #120A2A;
      --bg-card: rgba(255, 255, 255, 0.03);
      --purple-blue: #312E81;
      --fog-white: #F5F3FF;
      --accent-pink: #EC4899;
      --accent-pink-hover: #DB2777;
      --text-main: #F5F3FF;
      --text-muted: #9CA3AF;
      --border: rgba(255, 255, 255, 0.08);
      --glass-blur: blur(16px);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: var(--font);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    img { max-width: 100%; height: auto; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    
    
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 80px;
      background: rgba(18, 10, 42, 0.8);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border-bottom: var(--border);
      z-index: 100;
      transition: background 0.3s;
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .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: var(--text-main);
      white-space: nowrap;
      background: linear-gradient(135deg, #FFF 0%, var(--accent-pink) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .desktop-nav {
      display: flex;
      gap: 32px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .desktop-nav a:hover, .desktop-nav a.active {
      color: var(--text-main);
      text-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s;
      cursor: pointer;
    }
    .btn-primary-sm {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
      color: #fff;
      padding: 10px 20px;
      box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
      border: none;
    }
    .btn-primary-sm:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      width: 24px;
    }
    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text-main);
      transition: all 0.3s;
    }
    
    
    .drawer-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .mobile-drawer {
      position: fixed;
      top: 0; left: -300px; bottom: 0;
      width: 300px;
      background: var(--bg-dark);
      border-right: var(--border);
      z-index: 999;
      padding: 30px 24px;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease-in-out;
    }
    .mobile-drawer.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }
    .drawer-close {
      background: none;
      border: none;
      color: var(--text-main);
      font-size: 28px;
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .drawer-nav a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .drawer-nav a:hover {
      color: var(--text-main);
    }

    
    .hero-layout-03 {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 24px 80px;
      background: radial-gradient(circle at 15% 15%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
                  radial-gradient(circle at 85% 85%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                  #0c061d;
      overflow: hidden;
    }
    .hero-layout-03::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
      background-size: 30px 30px;
      opacity: 0.25;
      pointer-events: none;
    }
    .hero-glow-1 {
      position: absolute;
      top: 30%; left: 10%; width: 300px; height: 300px;
      background: rgba(124, 58, 237, 0.35);
      filter: blur(120px);
      pointer-events: none;
    }
    .hero-glow-2 {
      position: absolute;
      bottom: 20%; right: 10%; width: 300px; height: 300px;
      background: rgba(236, 72, 153, 0.25);
      filter: blur(120px);
      pointer-events: none;
    }
    .hero-glass-panel {
      position: relative;
      width: 100%;
      max-width: 960px;
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 32px;
      padding: 60px 48px;
      text-align: center;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
      z-index: 2;
    }
    .hero-tags {
      display: inline-flex;
      gap: 12px;
      margin-bottom: 24px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hero-tag {
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: #E9D5FF;
      font-size: 13px;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: 20px;
    }
    .hero-title {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 800;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    .hero-title span {
      background: linear-gradient(135deg, #FFF 20%, #E9D5FF 50%, var(--accent-pink) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: clamp(16px, 2.5vw, 19px);
      color: var(--text-muted);
      max-width: 720px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }
    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }
    .hero-btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
      color: #fff;
      padding: 16px 36px;
      font-size: 16px;
      border-radius: 12px;
      font-weight: 700;
      box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
      border: none;
    }
    .hero-btn-primary:hover {
      opacity: 0.95;
      transform: translateY(-2px);
    }
    .hero-btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      padding: 16px 36px;
      font-size: 16px;
      border-radius: 12px;
      font-weight: 700;
    }
    .hero-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 40px;
      margin-top: 20px;
    }
    .metric-item {
      text-align: center;
    }
    .metric-value {
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 800;
      color: var(--accent-pink);
      line-height: 1.2;
      margin-bottom: 8px;
    }
    .metric-label {
      font-size: 14px;
      color: var(--text-muted);
    }

    
    .trust-bar {
      padding: 40px 0;
      background: rgba(18, 10, 42, 0.5);
      border-bottom: var(--border);
    }
    .trust-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
    }
    .trust-title {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
    }
    .trust-logos {
      display: flex;
      gap: 40px;
      align-items: center;
      flex-wrap: wrap;
    }
    .trust-logo-item {
      font-size: 18px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.15);
      letter-spacing: 0.05em;
    }

    
    .section-padding { padding: 100px 0; }
    .section-title-wrap {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-subtitle {
      font-size: 14px;
      font-weight: 700;
      color: var(--accent-pink);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: #fff;
    }
    .strengths-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .strength-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 32px;
      transition: all 0.3s;
    }
    .strength-card:hover {
      transform: translateY(-5px);
      border-color: rgba(124, 58, 237, 0.3);
      box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    }
    .strength-icon {
      width: 56px;
      height: 56px;
      background: rgba(124, 58, 237, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--primary);
    }
    .strength-icon svg { width: 28px; height: 28px; fill: currentColor; }
    .strength-h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 14px;
      color: #fff;
    }
    .strength-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    
    .market-rates {
      background: linear-gradient(180deg, rgba(18, 10, 42, 0.5) 0%, rgba(12, 6, 29, 0.8) 100%);
      border-top: var(--border);
      border-bottom: var(--border);
    }
    .rates-card {
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      backdrop-filter: var(--glass-blur);
    }
    .rates-table-header {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
      padding: 20px 32px;
      background: rgba(255, 255, 255, 0.03);
      border-bottom: var(--border);
      font-weight: 600;
      font-size: 14px;
      color: var(--text-muted);
    }
    .rates-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
      padding: 20px 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      align-items: center;
      transition: background 0.3s;
    }
    .rates-row:last-child { border-bottom: none; }
    .rates-row:hover { background: rgba(255, 255, 255, 0.02); }
    .pair-name { font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
    .rate-change { color: #10B981; font-weight: 500; }
    .rate-change.negative { color: #EF4444; }

    
    .info-section {
      position: relative;
    }
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .info-content h2 {
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 24px;
      line-height: 1.3;
    }
    .info-content p {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 30px;
    }
    .info-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .info-feat-item {
      display: flex;
      gap: 16px;
    }
    .info-feat-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(236, 72, 153, 0.1);
      color: var(--accent-pink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
    }
    .info-feat-text h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .info-feat-text p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }
    .info-visual-box {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      position: relative;
    }
    .info-visual-item {
      background: rgba(18, 10, 42, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 24px;
      border-radius: 16px;
      margin-bottom: 20px;
    }
    .info-visual-item:last-child { margin-bottom: 0; }

    
    .news-section {
      background: rgba(18, 10, 42, 0.3);
      border-top: var(--border);
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .article-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
    }
    .article-card:hover {
      transform: translateY(-5px);
      border-color: rgba(124, 58, 237, 0.3);
    }
    .article-image-box {
      aspect-ratio: 16/10;
      position: relative;
      background: rgba(255,255,255,0.05);
      overflow: hidden;
    }
    .article-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .article-h4 {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 10px;
      color: #fff;
    }
    .article-summary {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .article-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 16px;
      font-size: 13px;
    }
    .article-tags {
      display: flex;
      gap: 8px;
    }
    .article-tag {
      background: rgba(124, 58, 237, 0.1);
      color: #E9D5FF;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 11px;
    }
    .article-link {
      color: var(--accent-pink);
      font-weight: 600;
    }
    .article-link:hover { text-shadow: 0 0 10px rgba(236, 72, 153, 0.5); }

    
    .cta-section {
      border-top: var(--border);
      background: linear-gradient(180deg, rgba(12, 6, 29, 0) 0%, rgba(124, 58, 237, 0.05) 100%);
    }
    .cta-box {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 32px;
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%; width: 200%; height: 200%;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-title {
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
    }
    .cta-desc {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 32px;
    }

    
    .site-footer {
      background: #090514;
      border-top: var(--border);
      padding: 80px 0 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-brand .logo {
      margin-bottom: 20px;
    }
    .footer-brand p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .footer-socials {
      display: flex;
      gap: 16px;
    }
    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
    }
    .social-link:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .footer-h4 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 24px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-links a {
      font-size: 14px;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: #fff;
    }
    .footer-bottom {
      border-top: var(--border);
      padding-top: 40px;
      text-align: center;
    }
    .footer-disclaimer {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.25);
      line-height: 1.8;
      max-width: 1000px;
      margin: 0 auto 30px;
      text-align: justify;
    }
    .footer-copy {
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-copy a { color: var(--accent-pink); margin-left: 10px; }

    @media (max-width: 1024px) {
      .strengths-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) {
      .desktop-nav, .header-actions .btn-primary-sm { display: none; }
      .menu-toggle { display: flex; }
      .hero-layout-03 { padding: 100px 16px 60px; }
      .hero-glass-panel { padding: 40px 24px; }
      .hero-metrics { grid-template-columns: 1fr; gap: 16px; padding-top: 30px; }
      .strengths-grid { grid-template-columns: 1fr; }
      .info-grid { grid-template-columns: 1fr; gap: 40px; }
      .news-grid { grid-template-columns: 1fr; }
      .rates-table-header { grid-template-columns: 2fr 1.5fr 1.5fr; }
      .rates-row { grid-template-columns: 2fr 1.5fr 1.5fr; }
      .rates-table-header div:nth-child(3), .rates-table-header div:nth-child(4) { display: none; }
      .rates-row div:nth-child(3), .rates-row div:nth-child(4) { display: none; }
    }