﻿:root {
      --primary: rgb(255, 121, 198);
      --primary-hover: rgb(255, 80, 170);
      --primary-rgb: 255, 121, 198;
      --accent: #6D5CFF;
      --accent-hover: #5240f5;
      --dark-bg: #090615;
      --dark-card: #120e2e;
      --dark-border: rgba(255, 255, 255, 0.08);
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
    }

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

    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 900;
      width: 100%;
      background: rgba(9, 6, 21, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--dark-border);
    }

    .header-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      min-width: 0;
      flex-shrink: 0;
    }

    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo span {
      display: inline-block;
      font-size: 18px;
      font-weight: 800;
      line-height: 1.2;
      color: #ffffff;
      white-space: nowrap;
      max-width: 180px;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      min-width: 0;
      flex: 1;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .desktop-nav::-webkit-scrollbar {
      display: none;
    }

    .desktop-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .desktop-nav a:hover {
      color: #ffffff;
      background: rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      flex-shrink: 0;
    }

    .mobile-menu-btn span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 99px;
      background: #ffffff;
    }

    
    .mobile-nav-mask {
      position: fixed;
      inset: 0;
      z-index: 998;
      background: rgba(9, 6, 21, 0.8);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s ease, visibility .25s ease;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999;
      width: min(86vw, 360px);
      height: 100vh;
      height: 100dvh;
      background: #0f0b24;
      color: #ffffff;
      transform: translateX(-105%);
      transition: transform .28s ease;
      box-shadow: 24px 0 60px rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-right: 1px solid var(--dark-border);
    }

    .drawer-head {
      min-height: 76px;
      padding: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--dark-border);
      flex-shrink: 0;
    }

    .drawer-logo img {
      height: 36px;
      max-width: 130px;
    }

    .drawer-logo span {
      max-width: 150px;
      font-size: 17px;
    }

    .drawer-close {
      width: 40px;
      height: 40px;
      border: 0;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      flex-shrink: 0;
    }

    .drawer-body {
      flex: 1;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 14px;
    }

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

    .drawer-nav a {
      display: flex;
      align-items: center;
      width: 100%;
      min-height: 48px;
      padding: 13px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      color: var(--text-main);
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      word-break: break-word;
      overflow-wrap: anywhere;
      transition: all 0.25s ease;
    }

    .drawer-nav a:hover {
      background: rgba(255, 121, 198, 0.12);
      color: var(--primary);
    }

    body.drawer-open {
      overflow: hidden;
      touch-action: none;
    }

    body.drawer-open .mobile-nav-mask {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    body.drawer-open .mobile-drawer {
      transform: translateX(0);
    }

    
    .hero-layout-03 {
      position: relative;
      min-height: 90vh;
      min-height: 90dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 16px;
      background: radial-gradient(circle at 50% 50%, #1e1145 0%, #090615 100%);
      overflow: hidden;
    }

    .hero-layout-03::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(109, 92, 255, 0.18) 0%, transparent 70%);
      top: -10%;
      left: -10%;
    }

    .hero-layout-03::after {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 121, 198, 0.15) 0%, transparent 70%);
      bottom: -10%;
      right: -10%;
    }

    .glass-panel {
      position: relative;
      z-index: 10;
      max-width: 860px;
      width: 100%;
      padding: 60px 40px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      text-align: center;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    }

    .hero-tag {
      display: inline-block;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(109, 92, 255, 0.15);
      border: 1px solid rgba(109, 92, 255, 0.3);
      color: #9d94ff;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .glass-panel h1 {
      font-size: clamp(32px, 5vw, 54px);
      font-weight: 800;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .glass-panel h1 span {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .glass-panel p.subtitle {
      font-size: clamp(16px, 2vw, 18px);
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .btn-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 32px;
      border-radius: 14px;
      background: var(--primary);
      color: #090615;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(255, 121, 198, 0.3);
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 32px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

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

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 36px;
    }

    .stat-item h3 {
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 6px;
    }

    .stat-item p {
      font-size: 13px;
      color: var(--text-muted);
    }

    
    .highlights-bar {
      background: #0d0920;
      border-bottom: 1px solid var(--dark-border);
      padding: 24px 0;
    }

    .highlights-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .highlight-node {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .highlight-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(109, 92, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 20px;
    }

    .highlight-text h4 {
      font-size: 15px;
      font-weight: 700;
      color: #ffffff;
    }

    .highlight-text p {
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .section-padding {
      padding: 90px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 54px;
      padding: 0 16px;
    }

    .section-title h2 {
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 14px;
    }

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

    .container {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
    }

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

    .feature-card {
      background: var(--dark-card);
      border: 1px solid var(--dark-border);
      border-radius: 20px;
      padding: 36px;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 121, 198, 0.3);
      box-shadow: 0 12px 30px rgba(255, 121, 198, 0.05);
    }

    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(255, 121, 198, 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 24px;
    }

    .feature-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #ffffff;
    }

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

    
    .news-layout {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 36px;
    }

    .article-stream-title {
      font-size: 22px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .article-stream-title::before {
      content: '';
      width: 4px;
      height: 22px;
      background: var(--primary);
      border-radius: 2px;
    }

    .article-card {
      background: var(--dark-card);
      border: 1px solid var(--dark-border);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      transition: border-color 0.3s ease;
    }

    .article-card:hover {
      border-color: rgba(109, 92, 255, 0.4);
    }

    .article-img {
      width: 180px;
      height: 120px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }

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

    .article-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-width: 0;
    }

    .article-content h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #ffffff;
    }

    .article-content h3 a {
      color: #ffffff;
      text-decoration: none;
    }

    .article-content h3 a:hover {
      color: var(--primary);
    }

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

    .article-meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .article-meta span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .tag-link {
      color: var(--primary);
      text-decoration: none;
    }

    
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .sidebar-widget {
      background: var(--dark-card);
      border: 1px solid var(--dark-border);
      border-radius: 16px;
      padding: 24px;
    }

    .widget-title {
      font-size: 16px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--dark-border);
    }

    .widget-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .widget-item a {
      color: var(--text-main);
      text-decoration: none;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .widget-item a:hover {
      color: var(--primary);
    }

    
    .cta-section {
      background: linear-gradient(135deg, rgba(109, 92, 255, 0.15) 0%, rgba(255, 121, 198, 0.05) 100%);
      border-top: 1px solid var(--dark-border);
      border-bottom: 1px solid var(--dark-border);
      text-align: center;
      padding: 80px 16px;
    }

    .cta-content {
      max-width: 650px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .cta-content p {
      color: var(--text-muted);
      margin-bottom: 32px;
    }

    
    .site-footer {
      width: 100%;
      background: #060410;
      color: var(--text-muted);
      overflow: hidden;
      border-top: 1px solid var(--dark-border);
    }

    .footer-inner {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      padding: 54px 0 34px;
      display: grid;
      grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, .8fr));
      gap: 28px;
      align-items: start;
    }

    .footer-logo span {
      color: #ffffff;
    }

    .footer-brand p {
      margin: 18px 0 0;
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 14px;
      max-width: 420px;
    }

    .footer-column h3 {
      margin: 0 0 14px;
      color: #ffffff;
      font-size: 15px;
      font-weight: 800;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-column li,
    .footer-column a {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.55;
      text-decoration: none;
      word-break: break-word;
      overflow-wrap: anywhere;
    }

    .footer-column a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      width: min(1200px, calc(100% - 32px));
      margin: 0 auto;
      padding: 18px 0 24px;
      border-top: 1px solid var(--dark-border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      color: var(--text-muted);
      font-size: 13px;
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .header-inner {
        width: min(100% - 24px, 1200px);
        min-height: 64px;
        gap: 12px;
      }

      .desktop-nav {
        display: none !important;
      }

      .mobile-menu-btn {
        display: inline-flex !important;
      }

      .logo img {
        height: 34px;
        max-width: 120px;
      }

      .logo span {
        font-size: 16px;
        max-width: 150px;
      }

      .grid-3, .news-layout {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        width: min(100% - 24px, 1200px);
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
        padding: 42px 0 28px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-bottom {
        width: min(100% - 24px, 1200px);
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      .mobile-drawer {
        width: 88vw;
      }

      .logo span {
        max-width: 120px;
      }

      .drawer-logo span {
        max-width: 120px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .article-card {
        flex-direction: column;
      }

      .article-img {
        width: 100%;
        height: 160px;
      }
    }