﻿:root {
      --primary: rgb(255, 45, 85);
      --primary-hover: rgb(230, 30, 70);
      --primary-rgb: 255, 45, 85;
      --hero-bg: #0B0F19;
      --hero-card-bg: rgba(20, 28, 48, 0.7);
      --hero-border: rgba(29, 123, 255, 0.2);
      --text-light: #F3F4F6;
      --text-muted: #9CA3AF;
      --text-dark: #1F2937;
      --body-bg: #F9FAFB;
      --card-bg: #FFFFFF;
      --glacier-blue: #1D7BFF;
      --glacier-cyan: #00F2FE;
    }

    * {
      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(--body-bg);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    
    header {
      background: rgba(11, 15, 25, 0.95);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      height: 70px;
      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: 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: #FFF;
      white-space:nowrap;
      letter-spacing: 0.5px;
    }

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

    .nav-menu a {
      color: var(--text-light);
      font-size: 15px;
      font-weight: 500;
      padding: 8px 0;
      border-bottom: 2px solid transparent;
    }

    .nav-menu a:hover {
      color: var(--glacier-cyan);
      border-bottom-color: var(--glacier-cyan);
    }

    .nav-trigger {
      display: none;
      background: none;
      border: none;
      color: #FFF;
      font-size: 24px;
      cursor: pointer;
    }

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

    .drawer {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100%;
      background: #0B0F19;
      z-index: 2001;
      box-shadow: 5px 0 25px rgba(0,0,0,0.5);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      padding: 24px;
    }

    .drawer.active {
      left: 0;
    }

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

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 20px;
    }

    .drawer-close {
      background: none;
      border: none;
      color: #FFF;
      font-size: 28px;
      cursor: pointer;
    }

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

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

    .drawer-nav a:hover {
      color: var(--glacier-cyan);
      padding-left: 10px;
    }

    
    .hero-layout-01 {
      position: relative;
      background: radial-gradient(circle at center, #111B35 0%, #050811 100%);
      color: var(--text-light);
      padding: 100px 20px 140px;
      text-align: center;
      overflow: hidden;
    }

    .hero-layout-01::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(circle, rgba(29, 123, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero-tagline {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--glacier-cyan);
      margin-bottom: 20px;
      display: inline-block;
      background: rgba(0, 242, 254, 0.1);
      padding: 6px 16px;
      border-radius: 50px;
      border: 1px solid rgba(0, 242, 254, 0.2);
    }

    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #FFF 0%, #A5C4FF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }

    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
    }

    .btn-main {
      background: linear-gradient(135deg, var(--glacier-blue) 0%, #00C6FF 100%);
      color: #FFF;
      font-weight: 600;
      padding: 14px 36px;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(29, 123, 255, 0.4);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(29, 123, 255, 0.6);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      color: #FFF;
      font-weight: 600;
      padding: 14px 36px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(5px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
    }

    
    .hero-visual-wrapper {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      background: rgba(15, 25, 48, 0.6);
      border-radius: 16px;
      border: 1px solid var(--hero-border);
      padding: 40px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(10px);
    }

    .hero-visual-panel {
      background: #060913;
      border-radius: 12px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
    }

    .panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 12px;
    }

    .panel-dots {
      display: flex;
      gap: 6px;
    }

    .panel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
    }

    .panel-dot:nth-child(1) { background: #FF5F56; }
    .panel-dot:nth-child(2) { background: #FFBD2E; }
    .panel-dot:nth-child(3) { background: #27C93F; }

    .panel-title {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
    }

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

    .visual-stat-item {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 8px;
      padding: 16px;
    }

    .visual-stat-item h4 {
      font-size: 24px;
      color: var(--glacier-cyan);
      font-weight: 700;
    }

    .visual-stat-item p {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    
    .floating-card {
      position: absolute;
      background: var(--hero-card-bg);
      border: 1px solid var(--hero-border);
      border-radius: 12px;
      padding: 16px;
      text-align: left;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      animation: floatEffect 6s ease-in-out infinite alternate;
    }

    .fc-1 { top: -20px; left: -40px; animation-delay: 0s; }
    .fc-2 { top: -40px; right: -40px; animation-delay: 1.5s; }
    .fc-3 { bottom: -20px; left: -50px; animation-delay: 3s; }
    .fc-4 { bottom: -40px; right: -50px; animation-delay: 4.5s; }

    @keyframes floatEffect {
      0% { transform: translateY(0px) rotate(0deg); }
      100% { transform: translateY(-12px) rotate(1deg); }
    }

    .fc-icon {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .fc-title {
      font-size: 14px;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 4px;
    }

    .fc-desc {
      font-size: 11px;
      color: var(--text-muted);
    }

    
    .trust-bar {
      background: #FFFFFF;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      padding: 30px 20px;
    }

    .trust-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .trust-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 45, 85, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 20px;
      flex-shrink: 0;
    }

    .trust-info h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
    }

    .trust-info p {
      font-size: 13px;
      color: #6B7280;
    }

    
    section {
      padding: 80px 20px;
    }

    .section-title-wrap {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
    }

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

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-dark);
    }

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

    .feature-card {
      background: var(--card-bg);
      border-radius: 12px;
      padding: 40px 30px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0,0,0,0.03);
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .feature-icon-box {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: rgba(255, 45, 85, 0.05);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 24px;
    }

    .feature-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .feature-card p {
      font-size: 15px;
      color: #4B5563;
      line-height: 1.7;
    }

    
    .articles-section {
      background: #F3F4F6;
    }

    .articles-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .article-card {
      background: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .article-img {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .article-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--primary);
      color: #FFF;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      text-transform: uppercase;
    }

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

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

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

    .article-summary {
      font-size: 14px;
      color: #4B5563;
      margin-bottom: 20px;
      line-height: 1.6;
      flex-grow: 1;
    }

    .article-footer {
      border-top: 1px solid #F3F4F6;
      padding-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .article-more-btn {
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
    }

    
    .cta-section {
      background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
      color: var(--text-light);
      position: relative;
      overflow: hidden;
    }

    .cta-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

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

    .cta-desc {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 40px;
    }

    
    footer {
      background: #0B0F19;
      color: var(--text-light);
      padding: 80px 20px 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

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

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

    .footer-brand p {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.7;
    }

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

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

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

    .footer-col ul li a {
      color: var(--text-muted);
      font-size: 14px;
    }

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

    .footer-info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

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

    .footer-links-bottom {
      display: flex;
      gap: 20px;
    }

    
    @media (max-width: 1024px) {
      .hero-title { font-size: 38px; }
      .hero-visual-wrapper { max-width: 90%; }
      .floating-card { display: none; }
      .trust-container { grid-template-columns: repeat(2, 1fr); }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .articles-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-container { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .nav-trigger { display: block; }
      .hero-layout-01 { padding: 60px 20px 100px; }
      .hero-title { font-size: 32px; }
      .hero-desc { font-size: 15px; }
      .hero-btns { flex-direction: column; gap: 12px; }
      .hero-visual-wrapper { padding: 20px; }
      .visual-content-grid { grid-template-columns: 1fr; }
      .trust-container { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .articles-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    }