	:root {
		--bg-color: #0a0a12;
    --card-bg: #161622;
    --text-color: #f0f0f0;
    --primary-color: #6c5ce7;
    --primary-hover: #5649c0;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --error-color: #ff7675;
    --success-color: #00b894;
    --border-color: #2d3436;
    --input-bg: #262636;
    --speed-color: #9c27b0;
	}

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 25% 25%, rgba(108, 92, 231, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-attachment: fixed;
  }

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

  /* Header Styles */
  header {
      padding: 20px 0;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: rgba(10, 10, 18, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
  }

  header.scrolled {
      padding: 15px 0;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-color);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: transform 0.3s;
  }

  .logo:hover {
      transform: scale(1.05);
  }

  .logo span {
      color: var(--primary-color);
  }

  nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
      align-items: center;
  }

  nav ul li {
      position: relative;
  }

  nav ul li a {
      color: var(--text-color);
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s;
      position: relative;
  }

  nav ul li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary-color);
      transition: width 0.3s;
  }

  nav ul li a:hover {
      color: var(--primary-color);
  }

  nav ul li a:hover::after {
      width: 100%;
  }

  .dropdown {
      position: relative;
  }

  .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: var(--card-bg);
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
      border-radius: 8px;
      padding: 10px 0;
      border: 1px solid var(--border-color);
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
  }

  .dropdown:hover .dropdown-content {
      display: block;
      opacity: 1;
      transform: translateY(0);
  }

  .dropdown-content a {
      padding: 10px 20px;
      display: block;
      color: var(--text-color);
      transition: all 0.2s;
  }

  .dropdown-content a:hover {
      background-color: rgba(108, 92, 231, 0.1);
      padding-left: 25px;
  }

  .header-actions {
      display: flex;
      align-items: center;
      gap: 20px;
  }

  .btn {
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
  }

  .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
  }

  .btn:hover::before {
      left: 100%;
  }

  .btn-primary {
      background-color: var(--primary-color);
      color: white;
      border: none;
      box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
  }

  .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
  }

  .btn-outline {
      background-color: transparent;
      color: var(--text-color);
      border: 1px solid var(--border-color);
  }

  .btn-outline:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
      transform: translateY(-3px);
  }

  .language-selector {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 6px;
      transition: all 0.3s;
  }

  .language-selector:hover {
      background-color: rgba(108, 92, 231, 0.1);
  }

  .hero {
      padding: 200px 0 120px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
  }

  .particle {
      position: absolute;
      background-color: rgba(108, 92, 231, 0.5);
      border-radius: 50%;
      animation: float 15s infinite linear;
  }

  @keyframes float {
      0% {
          transform: translateY(0) rotate(0deg);
          opacity: 1;
      }
      100% {
          transform: translateY(-1000px) rotate(720deg);
          opacity: 0;
      }
  }

  .hero-alert {
      background-color: rgba(108, 92, 231, 0.2);
      color: var(--primary-color);
      padding: 10px 20px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid rgba(108, 92, 231, 0.3);
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
      }
      70% {
          box-shadow: 0 0 0 10px rgba(108, 92, 231, 0);
      }
      100% {
          box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
      }
  }

  .hero-title {
      font-size: 72px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      background: linear-gradient(90deg, #ffffff, var(--primary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards 0.3s;
  }

  .hero-title span {
      color: var(--secondary-color);
  }

  .hero-description {
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards 0.6s;
  }

  .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards 0.9s;
  }

  .btn-secondary {
      background-color: var(--secondary-color);
      color: white;
      box-shadow: 0 4px 15px rgba(0, 206, 201, 0.3);
  }

  .btn-secondary:hover {
      background-color: #00b5b0;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 206, 201, 0.4);
  }

  .speed-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-top: 40px;
      opacity: 0;
      animation: fadeIn 1s forwards 1.2s;
  }

  .speed-value {
      font-size: 48px;
      font-weight: 700;
      background: linear-gradient(90deg, var(--speed-color), var(--accent-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
  }

  .speed-value::after {
      content: 'ms';
      font-size: 16px;
      position: absolute;
      top: 10px;
      right: -25px;
      color: var(--text-color);
  }

  .speed-label {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      max-width: 200px;
      text-align: left;
  }

  .features-section {
      padding: 20px 0;
      background-color: rgba(22, 22, 34, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      margin: 60px 0;
      position: relative;
      overflow: hidden;
  }

  .features-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
      animation: rotate 60s linear infinite;
      z-index: -1;
  }

  @keyframes rotate {
      from {
          transform: rotate(0deg);
      }
      to {
          transform: rotate(360deg);
      }
  }

  .section-title {
      text-align: center;
      font-size: 1.4rem;
      width: 100%;
      padding-bottom: 20px;
      margin-bottom: 40px;
      font-weight: 700;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      border-radius: 3px;
  }

  .section-description {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 0;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px;
  }

  .feature-card {
      background-color: var(--card-bg);
      border-radius: 16px;
      padding: 30px;
      transition: all 0.4s;
      border: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(50px);
  }

  .feature-card.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .feature-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border-color: var(--primary-color);
  }

  .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  }

  .feature-icon {
      font-size: 1.3rem;
      margin-bottom: 20px;
      margin-right: 5px;
      color: var(--primary-color);
      transition: transform 0.3s;
  }

  .feature-card:hover .feature-icon {
      transform: scale(1.2) rotate(10deg);
      margin-right: 5px;
  }

  .feature-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
  }

  .feature-title::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary-color);
      transition: width 0.3s;
  }

  .feature-card:hover .feature-title::after {
      width: 100%;
  }

  .feature-description {
      font-size: 0.90rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      transition: color 0.3s;
  }

  .feature-card:hover .feature-description {
      color: rgba(255, 255, 255, 0.9);
  }

  .data-integration {
    padding: 30px 15px 100px 15px;
    background: linear-gradient(135deg, rgba(22, 22, 34, 0.9), rgba(10, 10, 18, 0.9));
    border-radius: 20px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
  }

  .data-integration::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(108, 92, 231, 0.05)" stroke-width="0.5"/></svg>');
      background-size: 50px 50px;
      opacity: 0.5;
  }

  .integration-content {
      display: flex;
      align-items: center;
      gap: 50px;
      padding: 0px 20px;
  }

  .integration-text {
      flex: 1;
  }

  .integration-title {
      font-size: 1.4rem;
      margin-bottom: 20px;
      background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .integration-description {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 30px;
  }

  .integration-features {
      list-style: none;
  }

  .integration-features li {
  	font-size: 0.90rem;
      margin-bottom: 15px;
      position: relative;
      padding-left: 30px;
  }

  .integration-features li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 0;
      color: var(--success-color);
  }

  .integration-visual {
      flex: 1;
      position: relative;
      height: 400px;
  }

  .data-node {
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--card-bg);
      border: 2px solid var(--primary-color);
      box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
      animation: pulse 2s infinite;
  }

  .data-node i {
      font-size: 30px;
      color: var(--primary-color);
  }

  .data-node:nth-child(1) {
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      animation-delay: 0s;
  }

  .data-node:nth-child(2) {
      top: 30%;
      left: 10%;
      animation-delay: 0.2s;
  }

  .data-node:nth-child(3) {
      top: 30%;
      right: 10%;
      animation-delay: 0.4s;
  }

  .data-node:nth-child(4) {
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      animation-delay: 0.6s;
  }

  .data-connection {
      position: absolute;
      background-color: rgba(108, 92, 231, 0.3);
      height: 2px;
      transform-origin: left center;
  }

  .api-showcase {
      padding: 30px 0px;
      background-color: rgba(22, 22, 34, 0.9);
      border-radius: 20px;
      margin: 60px 0;
      position: relative;
      overflow: hidden;
  }

  .api-showcase::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
      z-index: -1;
  }

  .api-code {
      background-color: #1e1e2e;
      border-radius: 12px;
      padding: 65px 25px 25px 25px;
      font-family: 'Courier New', monospace;
      max-width: 100%;
      margin: 30px;
      position: relative;
      border: 1px solid rgba(108, 92, 231, 0.3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      overflow: hidden;
  }

  .api-code::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 40px;
      background-color: #2d2d3a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .api-code::after {
      content: '•••';
      position: absolute;
      top: 10px;
      left: 20px;
      color: rgba(255, 255, 255, 0.3);
      font-size: 1.2rem;
      letter-spacing: 2px;
  }

  .code-line {
      margin-bottom: 10px;
      display: flex;
      position: relative;
      z-index: 1;
      font-size: 0.90rem; 
  }

  .line-number {
      color: #6c5ce7;
      margin-right: 15px;
      min-width: 5px;
      text-align: right;
      opacity: 0.6;
  }

  .code-content {
      color: #f8f8f2;
  }

  .code-keyword {
      color: #ff79c6;
  }

  .code-string {
      color: #50fa7b;
  }

  .code-comment {
      color: #6272a4;
      font-style: italic;
  }

  .code-function {
      color: #66d9ef;
  }

  .code-var {
      color: #bd93f9;
  }

  .code-highlight {
      position: absolute;
      left: 0;
      width: 100%;
      height: 24px;
      background-color: rgba(108, 92, 231, 0.2);
      border-left: 2px solid var(--primary-color);
      z-index: 0;
      transition: all 0.3s;
  }

  .performance-metrics {
      padding: 40px 0px;
      background: linear-gradient(135deg, rgba(22, 22, 34, 0.9), rgba(10, 10, 18, 0.9));
      border-radius: 20px;
      margin: 60px 0;
  }

  .metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 0px 30px;
      margin-top: 50px;
  }

  .metric-card {
      background-color: var(--card-bg);
      border-radius: 16px;
      padding: 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .metric-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      border-color: var(--secondary-color);
  }

  .metric-value {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 10px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
  }

  .metric-label {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
  }

  .support-chat {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: var(--card-bg);
      border-radius: 16px;
      padding: 20px;
      width: 320px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transform: translateY(20px);
      opacity: 0;
      animation: fadeInUp 0.5s forwards 1s;
      z-index: 100;
      transition: all 0.3s;
  }

  .support-chat:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }

  .chat-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
  }

  .chat-icon {
      font-size: 20px;
      color: var(--primary-color);
  }

  .chat-title {
      font-weight: 600;
      font-size: 16px;
  }

  .chat-status {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: var(--success-color);
  }

  .chat-status-dot {
      width: 8px;
      height: 8px;
      background-color: var(--success-color);
      border-radius: 50%;
      animation: pulse 2s infinite;
  }

  .chat-message {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 20px;
      line-height: 1.5;
  }

  .chat-btn {
      width: 100%;
      text-align: center;
      padding: 12px;
      border-radius: 8px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      color: white;
      font-weight: 500;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
  }

  .chat-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 206, 201, 0.3);
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }

  @keyframes highlightLine {
      0% {
          top: 0;
          opacity: 0;
      }
      10% {
          opacity: 1;
      }
      90% {
          opacity: 1;
      }
      100% {
          top: 100%;
          opacity: 0;
      }
  }

  @media (max-width: 1200px) {
      .integration-content {
          flex-direction: column;
      }
      
      .integration-visual {
          width: 100%;
          margin-top: 40px;
      }
  }

  @media (max-width: 992px) {
      .hero-title {
          font-size: 56px;
      }
      
      .metrics-grid {
          grid-template-columns: repeat(2, 1fr);
      }
      
      nav ul {
          gap: 15px;
      }
  }

  @media (max-width: 768px) {
      .header-container {
          flex-direction: column;
          gap: 20px;
      }
      
      nav ul {
          flex-wrap: wrap;
          justify-content: center;
      }
      
      .hero {
          padding: 180px 0 80px;
      }
      
      .hero-title {
          font-size: 42px;
      }
      
      .hero-buttons {
          flex-direction: column;
          align-items: center;
      }
      
      .features-grid {
          grid-template-columns: 1fr;
      }
      
      .metrics-grid {
          grid-template-columns: 1fr;
      }
      
      .support-chat {
          width: 280px;
          right: 15px;
          bottom: 15px;
      }
  }

  @media (max-width: 480px) {
      .hero-title {
          font-size: 32px;
      }
      
      .hero-description {
          font-size: 16px;
      }
      
      .integration-title {
          font-size: 28px;
      }
  }