﻿:root {
      --primary: rgb(40,42,54);
      --primary-light: #3d4052;
      --accent: #ffb86c;
      --success: #50fa7b;
      --danger: #ff5555;
      --bg-dark: #12131a;
      --bg-card: #1d1f2b;
      --text-light: #f8f8f2;
      --text-muted: #8b92b6;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background-color: var(--bg-dark); color: var(--text-light); font-family: var(--font-family); line-height: 1.6; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
    ul { list-style: none; }
    img { max-width: 100%; height: auto; }
    
    
    .header { background-color: rgba(40,42,54,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .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: 36px; width: auto; max-width: 150px; object-fit: contain; flex-shrink: 0; }
    .logo span { display: inline-block; font-size: 18px; font-weight: 800; line-height: 1; color: var(--text-light); white-space: nowrap; }
    .nav-desktop { display: flex; align-items: center; gap: 24px; }
    .nav-desktop a { font-size: 14px; font-weight: 500; color: var(--text-muted); padding: 8px 0; border-bottom: 2px solid transparent; }
    .nav-desktop a:hover, .nav-desktop a.active { color: var(--accent); border-color: var(--accent); }
    .header-actions { display: flex; align-items: center; gap: 15px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; font-size: 14px; font-weight: 600; border-radius: 4px; border: none; cursor: pointer; transition: all 0.3s ease; }
    .btn-primary { background-color: var(--accent); color: var(--primary); }
    .btn-primary:hover { background-color: #ffca8c; transform: translateY(-1px); }
    .btn-outline { background-color: transparent; border: 1px solid var(--text-muted); color: var(--text-light); }
    .btn-outline:hover { border-color: var(--text-light); }
    .menu-toggle { display: none; background: none; border: none; width: 30px; height: 24px; position: relative; cursor: pointer; }
    .menu-toggle span { display: block; width: 100%; height: 2px; background-color: var(--text-light); position: absolute; transition: transform 0.3s ease, opacity 0.3s ease; }
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 11px; }
    .menu-toggle span:nth-child(3) { bottom: 0; }

    
    .mobile-drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 2000; transition: left 0.4s ease; }
    .mobile-drawer.active { left: 0; }
    .drawer-backdrop { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); }
    .drawer-content { position: absolute; top: 0; left: 0; width: 280px; height: 100%; background-color: var(--primary); padding: 30px 20px; display: flex; flex-direction: column; gap: 30px; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: var(--text-light); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 15px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-light); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

    
    .hero-layout-03 {
      position: relative;
      padding: 120px 20px;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at center, rgba(62,66,84,0.3) 0%, rgba(18,19,26,1) 100%), 
                  linear-gradient(135deg, rgba(40,42,54,0.4) 0%, rgba(18,19,26,0.9) 100%);
      overflow: hidden;
    }
    .hero-layout-03::before {
      content: '';
      position: absolute;
      top: -20%;
      left: -10%;
      width: 50%;
      height: 80%;
      background: radial-gradient(circle, rgba(255,184,108,0.1) 0%, transparent 70%);
      filter: blur(40px);
      pointer-events: none;
    }
    .hero-layout-03::after {
      content: '';
      position: absolute;
      bottom: -10%;
      right: -10%;
      width: 60%;
      height: 80%;
      background: radial-gradient(circle, rgba(80,250,123,0.06) 0%, transparent 60%);
      filter: blur(50px);
      pointer-events: none;
    }
    .hero-glass-panel {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 900px;
      background: rgba(40,42,54,0.65);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 60px 40px;
      backdrop-filter: blur(15px);
      text-align: center;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255,184,108,0.15);
      color: var(--accent);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 1px;
      border: 1px solid rgba(255,184,108,0.25);
    }
    .hero-glass-panel h1 {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 20px;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .hero-glass-panel h1 span {
      background: linear-gradient(90deg, #ffb86c, #50fa7b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-glass-panel p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 35px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-btn-group {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 45px;
    }
    .hero-stats-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 35px;
      gap: 20px;
    }
    .hero-stat-item { text-align: center; }
    .hero-stat-val { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .hero-stat-lbl { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

    
    .trust-section { background-color: rgba(29,31,43,0.5); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 40px 20px; }
    .trust-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
    .trust-card { display: flex; align-items: center; gap: 15px; }
    .trust-card-icon { width: 50px; height: 50px; border-radius: 8px; background: rgba(80,250,123,0.1); border: 1px solid rgba(80,250,123,0.2); display: flex; align-items: center; justify-content: center; color: var(--success); font-size: 24px; }
    .trust-card-info h3 { font-size: 16px; font-weight: 600; color: #fff; }
    .trust-card-info p { font-size: 12px; color: var(--text-muted); }

    
    .features-section { padding: 90px 20px; max-width: 1200px; margin: 0 auto; }
    .section-title-wrap { text-align: center; margin-bottom: 60px; }
    .section-title { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 15px; }
    .section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .feature-card { background-color: var(--bg-card); border: 1px solid rgba(255,255,255,0.04); padding: 40px 30px; border-radius: 12px; transition: transform 0.3s ease, border-color 0.3s ease; }
    .feature-card:hover { transform: translateY(-5px); border-color: rgba(255,184,108,0.3); }
    .feature-icon { width: 60px; height: 60px; background: rgba(255,184,108,0.08); border: 1px solid rgba(255,184,108,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 28px; margin-bottom: 25px; }
    .feature-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 15px; }
    .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    
    .platform-section { padding: 90px 20px; background-color: var(--bg-card); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
    .platform-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
    .platform-info { flex: 1; }
    .platform-info h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.3; }
    .platform-info p { color: var(--text-muted); margin-bottom: 30px; }
    .platform-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 35px; }
    .platform-feat-item { display: flex; align-items: flex-start; gap: 10px; }
    .platform-feat-item span { color: var(--success); font-weight: bold; }
    .platform-visual { flex: 1; position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 15px 35px rgba(0,0,0,0.4); }
    .platform-visual img { display: block; width: 100%; height: auto; background-color: var(--primary); }

    
    .news-section { padding: 90px 20px; max-width: 1200px; margin: 0 auto; }
    .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .article-card { background-color: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.03); display: flex; flex-direction: column; transition: transform 0.3s ease; }
    .article-card:hover { transform: translateY(-5px); }
    .article-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #282a36; }
    .article-img img { width: 100%; height: 100%; object-fit: cover; }
    .article-tag { position: absolute; top: 15px; left: 15px; background-color: var(--accent); color: var(--primary); padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; }
    .article-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
    .article-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
    .article-body h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-summary { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .article-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; }
    .read-more { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; }

    
    .cta-section { padding: 90px 20px; background: linear-gradient(135deg, rgba(40,42,54,0.95) 0%, rgba(18,19,26,0.98) 100%); border-top: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
    .cta-container { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 10; }
    .cta-container h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 20px; }
    .cta-container p { font-size: 16px; color: var(--text-muted); margin-bottom: 35px; }

    
    .footer { background-color: #0c0d12; border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 20px 40px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .brand-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
    .footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 25px; position: relative; }
    .footer-col h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background-color: var(--accent); }
    .footer-col ul { display: flex; flex-direction: column; gap: 15px; }
    .footer-col a { font-size: 14px; color: var(--text-muted); }
    .footer-col a:hover { color: var(--accent); padding-left: 5px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }
    .footer-bottom-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
    .copyright { font-size: 12px; color: var(--text-muted); }
    .compliance { font-size: 12px; color: var(--text-muted); }

    
    @media (max-width: 992px) {
      .nav-desktop { display: none; }
      .menu-toggle { display: block; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .platform-container { flex-direction: column; }
      .articles-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-container { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .hero-glass-panel { padding: 40px 20px; }
      .hero-glass-panel h1 { font-size: 32px; }
      .hero-stats-bar { grid-template-columns: 1fr; gap: 20px; }
      .features-grid { grid-template-columns: 1fr; }
      .articles-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom-container { flex-direction: column; text-align: center; }
    }