﻿:root {
      --primary: rgb(244, 63, 94);
      --primary-hover: rgb(225, 29, 72);
      --primary-rgb: 244, 63, 94;
      --bg-dark: #0B0F19;
      --bg-card: #111827;
      --bg-light: #F9FAFB;
      --border-dark: rgba(255, 255, 255, 0.08);
      --border-light: rgba(0, 0, 0, 0.08);
      --text-light: #F3F4F6;
      --text-muted: #9CA3AF;
      --text-dark: #111827;
      --text-dark-muted: #4B5563;
      --glacier-blue: #1D7BFF;
      --glacier-light: #E0F2FE;
      --glacier-cyan: #06B6D4;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
      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(11, 15, 25, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-dark);
      transition: all 0.3s ease;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 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: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo span {
      display: inline-block;
      font-size: 20px;
      font-weight: 800;
      line-height: 1;
      color: var(--text-light);
      white-space: nowrap;
      letter-spacing: -0.5px;
    }

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

    .nav-menu a {
      color: var(--text-muted);
      font-size: 15px;
      font-weight: 500;
    }

    .nav-menu a:hover {
      color: var(--text-light);
    }

    
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-header {
      padding: 8px 18px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-header-outline {
      border: 1px solid var(--border-dark);
      color: var(--text-light);
    }

    .btn-header-outline:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--text-muted);
    }

    .btn-header-primary {
      background: var(--primary);
      color: #fff;
    }

    .btn-header-primary:hover {
      background: var(--primary-hover);
      box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-light);
      cursor: pointer;
      padding: 4px;
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: var(--bg-dark);
      z-index: 2001;
      box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .drawer.active {
      left: 0;
    }

    .drawer-header {
      padding: 24px 20px;
      border-bottom: 1px solid var(--border-dark);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .drawer-close {
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      padding: 4px;
    }

    .drawer-close:hover {
      color: var(--text-light);
    }

    .drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 24px 20px;
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .drawer-nav a {
      color: var(--text-muted);
      font-size: 16px;
      font-weight: 500;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .drawer-nav a:hover {
      color: var(--text-light);
      padding-left: 4px;
    }

    .drawer-footer {
      padding: 20px;
      border-top: 1px solid var(--border-dark);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    
    .hero {
      position: relative;
      background-color: var(--bg-dark);
      color: var(--text-light);
      padding: 160px 20px 100px 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    
    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 1000px;
      height: 600px;
      background: radial-gradient(circle, rgba(29, 123, 255, 0.15) 0%, rgba(6, 182, 212, 0.08) 50%, rgba(11, 15, 25, 0) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-container-inner {
      position: relative;
      z-index: 2;
      max-width: 960px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-tag {
      background: rgba(29, 123, 255, 0.1);
      border: 1px solid rgba(29, 123, 255, 0.25);
      color: var(--glacier-cyan);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 4px 12px rgba(29, 123, 255, 0.1);
    }

    .hero-title {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
      max-width: 800px;
    }

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

    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 650px;
      margin-bottom: 36px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 70px;
    }

    .btn-hero {
      padding: 14px 32px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-hero-primary {
      background: linear-gradient(135deg, var(--glacier-blue) 0%, #1066DF 100%);
      color: #fff;
      box-shadow: 0 4px 20px rgba(29, 123, 255, 0.3);
    }

    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(29, 123, 255, 0.4);
    }

    .btn-hero-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-dark);
      color: var(--text-light);
    }

    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    
    .hero-visual-wrapper {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin-top: 20px;
    }

    .hero-main-panel {
      background: rgba(17, 24, 39, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 30px;
      backdrop-filter: blur(10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .hero-main-panel img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
    }

    
    .floating-card {
      position: absolute;
      background: rgba(17, 24, 39, 0.9);
      border: 1px solid rgba(29, 123, 255, 0.2);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      text-align: left;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
      width: 220px;
      z-index: 10;
    }

    .floating-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
    }

    .floating-card-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(29, 123, 255, 0.15);
      color: var(--glacier-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      flex-shrink: 0;
    }

    .floating-card-info h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 2px;
    }

    .floating-card-info p {
      font-size: 11px;
      color: var(--text-muted);
    }

    .fc-top-left { top: -10%; left: -8%; }
    .fc-top-right { top: -10%; right: -8%; }
    .fc-bottom-left { bottom: 8%; left: -12%; }
    .fc-bottom-right { bottom: 8%; right: -12%; }

    
    .hero-partners {
      background: #0D1321;
      padding: 24px 20px;
      border-bottom: 1px solid var(--border-dark);
      text-align: center;
    }

    .hero-partners-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 24px;
    }

    .partner-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 600;
    }

    .partner-item svg {
      color: var(--glacier-cyan);
    }

    
    section.module {
      padding: 90px 20px;
    }

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

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

    .section-badge {
      display: inline-block;
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 34px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-dark-muted);
      max-width: 600px;
      margin: 0 auto;
    }

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

    .feature-card {
      background: #FFF;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(0,0,0,0.06);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(244, 63, 94, 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .feature-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-dark);
    }

    .feature-desc {
      font-size: 14px;
      color: var(--text-dark-muted);
      line-height: 1.6;
    }

    
    .articles-section {
      background: #F3F4F6;
    }

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

    .article-card {
      background: #FFF;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(0,0,0,0.08);
    }

    .article-image {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: #E5E7EB;
    }

    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .article-card:hover .article-image img {
      transform: scale(1.05);
    }

    .article-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(11, 15, 25, 0.75);
      color: #FFF;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
    }

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

    .article-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .article-summary {
      font-size: 14px;
      color: var(--text-dark-muted);
      margin-bottom: 20px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-meta {
      margin-top: auto;
      border-top: 1px solid var(--border-light);
      padding-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-dark-muted);
    }

    .article-meta-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .article-click {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    
    .brand-section {
      background: var(--bg-dark);
      color: var(--text-light);
    }

    .brand-section .section-title {
      color: var(--text-light);
    }

    .brand-section .section-subtitle {
      color: var(--text-muted);
    }

    .brand-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .brand-content h3 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .brand-content p {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .brand-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-dark);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
    }

    .stat-value {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 14px;
      color: var(--text-muted);
    }

    
    .cta-section {
      background: linear-gradient(135deg, #1D7BFF 0%, rgb(244,63,94) 100%);
      color: #FFF;
      text-align: center;
      padding: 80px 20px;
    }

    .cta-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .cta-desc {
      font-size: 18px;
      margin-bottom: 36px;
      opacity: 0.9;
    }

    .btn-cta {
      display: inline-block;
      padding: 16px 40px;
      background: #FFF;
      color: var(--text-dark);
      border-radius: 10px;
      font-size: 16px;
      font-weight: 700;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(0,0,0,0.2);
    }

    
    footer {
      background: #0B0F19;
      color: var(--text-muted);
      padding: 80px 20px 30px 20px;
      border-top: 1px solid var(--border-dark);
      font-size: 14px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    .footer-brand .logo {
      margin-bottom: 20px;
    }

    .footer-brand p {
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .footer-title {
      color: var(--text-light);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .footer-links {
      list-style: none;
    }

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

    .footer-links a:hover {
      color: var(--text-light);
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid var(--border-dark);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    
    .breadcrumb-nav {
      background: #FFF;
      border-bottom: 1px solid var(--border-light);
      padding: 14px 20px;
    }

    .breadcrumb-container {
      max-width: 1200px;
      margin: 0 auto;
      font-size: 14px;
      color: var(--text-dark-muted);
    }

    .breadcrumb-container a:hover {
      color: var(--primary);
    }

    
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 50px;
    }

    .pagination a, .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 6px;
      border-radius: 8px;
      border: 1px solid var(--border-light);
      background: #FFF;
      font-weight: 600;
      color: var(--text-dark-muted);
    }

    .pagination a:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .pagination .is-current {
      background: var(--primary);
      color: #FFF;
      border-color: var(--primary);
    }

    
    @media (max-width: 1024px) {
      .hero-title { font-size: 42px; }
      .fc-top-left { top: -8%; left: 0; }
      .fc-top-right { top: -8%; right: 0; }
      .fc-bottom-left { bottom: -5%; left: 2%; }
      .fc-bottom-right { bottom: -5%; right: 2%; }
      .grid-3, .article-grid, .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .brand-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .nav-menu, .nav-actions { display: none; }
      .menu-toggle { display: block; }
      .hero-title { font-size: 32px; }
      .hero-subtitle { font-size: 15px; }
      .floating-card { display: none; }
      .grid-3, .article-grid, .footer-container {
        grid-template-columns: 1fr;
      }
      .footer-container { gap: 30px; }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }