﻿:root {
      --primary: #64748B;
      --assist: #818CF8;
      --accent: #C7D2FE;
      --bg-dark: #0F172A;
      --bg-light: #F1F5F9;
      --text-light: #E2E8F0;
      --text-muted: #94A3B8;
      --text-dark: #0F172A;
      --theme-fallback: rgb(225,112,85);
      --glass-bg: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(255, 255, 255, 0.08);
      --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    
    *,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;}
    body{width:100%;margin:0;overflow-x:hidden;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;background-color:#0F172A;color:#E2E8F0;}
    img{max-width:100%;height:auto;}

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(15,23,42,0.8);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,255,255,0.08);
    }

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

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

    .logo img{
      display:block;
      height:40px;
      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.2;
      color:#ffffff;
      white-space:nowrap;
      max-width:180px;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .desktop-nav-wrap{
      flex:1 1 auto;
      min-width:0;
      display:flex;
      justify-content:flex-end;
      overflow:hidden;
    }

    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      max-width:100%;
      overflow-x:auto;
      overflow-y:hidden;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      white-space:nowrap;
    }

    .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;
      color:#94A3B8;
      text-decoration:none;
      font-size:14px;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
      flex:0 0 auto;
      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,.08);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      cursor:pointer;
      flex:0 0 auto;
    }

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

    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(15,23,42,.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:1110;
      width:min(86vw, 360px);
      height:100vh;
      height:100dvh;
      max-width:90vw;
      background:#0F172A;
      color:#E2E8F0;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.5);
      display:flex;
      flex-direction:column;
      overflow:hidden;
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .drawer-head{
      min-height:76px;
      padding:16px 16px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(255,255,255,.08);
      flex:0 0 auto;
    }

    .drawer-logo{min-width:0;}
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;color:#ffffff;}

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

    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      -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,.03);
      color:#E2E8F0;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
      line-height:1.35;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
      transition: all 0.3s ease;
    }

    .drawer-nav a:hover{
      background:rgba(255,255,255,0.08);
      color:#818CF8;
    }

    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: calc(100vh - 72px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 16px;
      background: radial-gradient(circle at 50% 30%, rgba(129, 140, 248, 0.12), rgba(15, 23, 42, 1));
      overflow: hidden;
    }

    .hero-layout-03::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      background-size: 50px 50px;
      background-position: center;
      pointer-events: none;
    }

    .hero-layout-03::after {
      content: '';
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(129, 140, 248, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-container {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 960px;
    }

    .glass-panel {
      background: rgba(255, 255, 255, 0.02);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 28px;
      padding: 56px 40px;
      text-align: center;
      box-shadow: var(--glass-shadow);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 16px;
      background: rgba(129, 140, 248, 0.12);
      border: 1px solid rgba(129, 140, 248, 0.25);
      border-radius: 999px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 0.5px;
    }

    .hero-title {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 800;
      line-height: 1.25;
      color: #ffffff;
      margin: 0 auto 20px;
      max-width: 800px;
    }

    .hero-title span {
      background: linear-gradient(135deg, #ffffff 30%, #818CF8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      font-size: clamp(15px, 2vw, 18px);
      color: var(--text-muted);
      max-width: 640px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
    }

    .btn-primary {
      background: #818CF8;
      color: #0F172A;
      border: none;
      box-shadow: 0 4px 14px rgba(129, 140, 248, 0.3);
    }

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

    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

    .stat-item {
      padding: 8px;
    }

    .stat-value {
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 800;
      color: #C7D2FE;
      margin-bottom: 4px;
    }

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

    
    .advantages-section {
      padding: 80px 0;
      background: #0B0F19;
      position: relative;
    }

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

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

    .section-header h2 {
      font-size: 32px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .section-header p {
      color: var(--text-muted);
      font-size: 16px;
    }

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

    .advantage-card {
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 32px;
      border-radius: 20px;
      transition: all 0.3s ease;
    }

    .advantage-card:hover {
      border-color: rgba(129, 140, 248, 0.2);
      transform: translateY(-4px);
    }

    .advantage-icon {
      width: 48px;
      height: 48px;
      background: rgba(129, 140, 248, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: #818CF8;
    }

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

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

    
    .news-section {
      padding: 80px 0;
      background: #0F172A;
    }

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

    .news-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .news-card:hover {
      border-color: rgba(129, 140, 248, 0.3);
      transform: translateY(-4px);
    }

    .news-img {
      aspect-ratio: 16/10;
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      position: relative;
    }

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

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

    .news-meta {
      display: flex;
      gap: 12px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .news-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .news-summary {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .news-tags {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .news-tag {
      background: rgba(129, 140, 248, 0.08);
      color: #818CF8;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 4px;
    }

    
    .hot-section {
      padding: 80px 0;
      background: #0B0F19;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .hot-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .hot-card {
      display: flex;
      gap: 16px;
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid rgba(255, 255, 255, 0.04);
      padding: 16px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .hot-card:hover {
      border-color: rgba(129, 140, 248, 0.2);
    }

    .hot-card img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .hot-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hot-title {
      color: #ffffff;
      font-weight: 700;
      font-size: 15px;
      line-height: 1.4;
    }

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

    
    .cta-section {
      padding: 100px 0;
      background: radial-gradient(circle at 50% 50%, rgba(129, 140, 248, 0.1), rgba(15, 23, 42, 1));
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    .cta-box {
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-box h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .cta-box p {
      color: var(--text-muted);
      margin-bottom: 32px;
      font-size: 16px;
    }

    
    .site-footer{
      position:relative;
      z-index:1;
      width:100%;
      background:#0f172a;
      color:#e5e7eb;
      padding:56px 0 24px;
      overflow:hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .footer-brand{min-width:0;}
    .footer-brand p{
      margin:16px 0 0;
      color:rgba(229,231,235,.74);
      line-height:1.8;
      font-size:14px;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-logo span{color:#ffffff;}
    .footer-column{min-width:0;}
    .footer-column h3{margin:0 0 14px;font-size:15px;color:#ffffff;}
    .footer-column ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;}
    .footer-column li{min-width:0;}
    .footer-column a,.footer-column span{
      display:inline;
      color:rgba(229,231,235,.74);
      text-decoration:none;
      font-size:14px;
      line-height:1.55;
      white-space:normal;
      word-break:break-word;
      overflow-wrap:anywhere;
    }
    .footer-column a:hover{color:#ffffff;}
    .footer-bottom{
      width:min(1200px, calc(100% - 32px));
      margin:32px auto 0;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:rgba(229,231,235,.62);
      font-size:13px;
    }
    .footer-bottom p{margin:0;min-width:0;word-break:break-word;overflow-wrap:anywhere;}
    .footer-bottom a{color:rgba(229,231,235,.74);text-decoration:none;word-break:break-word;overflow-wrap:anywhere;}

    @media (max-width: 900px){
      .header-inner{width:min(100% - 24px, 1200px);min-height:64px;gap:12px;}
      .desktop-nav-wrap,.desktop-nav{display:none !important;}
      .mobile-menu-btn{display:inline-flex !important;}
      .logo img{height:34px;max-width:118px;}
      .logo span{font-size:16px;max-width:145px;}
      .advantages-grid, .news-grid, .hot-list {grid-template-columns: 1fr;}
      .footer-inner{grid-template-columns:1fr 1fr;gap:24px;}
      .footer-brand{grid-column:1 / -1;}
      .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px;}
    }

    @media (max-width: 640px){
      .footer-inner{grid-template-columns:1fr;}
      .hero-stats {grid-template-columns: 1fr; gap: 24px;}
      .hero-actions {flex-direction: column;}
      .glass-panel {padding: 40px 20px;}
    }

    @media (max-width: 420px){
      .mobile-drawer{width:88vw;}
      .logo span{max-width:112px;}
      .drawer-logo span{max-width:118px;}
      .footer-inner,.footer-bottom{width:min(100% - 24px, 1200px);}
    }