﻿*,*::before,*::after{box-sizing:border-box;}
    html{width:100%;overflow-x:hidden;}
    body{
      width:100%;
      margin:0;
      overflow-x:hidden;
      background:#06070A;
      color:#F8FAFC;
      font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      line-height:1.5;
    }
    img,video,iframe,embed{max-width:100%;height:auto;display:block;}
    a{text-decoration:none;transition:all 0.25s ease;}
    
    :root {
      --bg-dark: #06070A;
      --bg-panel: #0E1218;
      --bg-card: #151922;
      --text-main: #F8FAFC;
      --text-muted: #AEB7C6;
      --platinum: #E5E7EB;
      --racing-green: #00C875;
      --border-glow: rgba(229,231,235,.14);
    }

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

    
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      width:100%;
      background:rgba(6,7,10,.86);
      backdrop-filter:blur(22px) saturate(150%);
      border-bottom:1px solid rgba(229,231,235,.14);
      box-shadow:0 18px 54px rgba(0,0,0,.42);
    }
    .header-inner{
      width:min(1240px, calc(100% - 32px));
      min-height:76px;
      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:900;
      color:#F8FAFC;
      white-space:nowrap;
      max-width:190px;
      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;
      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 14px;
      border-radius:999px;
      color:#CBD5E1;
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
      border:1px solid transparent;
    }
    .desktop-nav a:hover{
      color:#F8FAFC;
      background:rgba(0,200,117,.14);
      border-color:rgba(229,231,235,.22);
      box-shadow:0 8px 28px rgba(0,200,117,.12);
    }

    .mobile-menu-btn{
      display:none;
      width:46px;
      height:46px;
      border:1px solid rgba(229,231,235,.20);
      border-radius:16px;
      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:99px;
      background:#F8FAFC;
    }

    .mobile-nav-mask{
      position:fixed;
      inset:0;
      z-index:1100;
      background:rgba(0,0,0,.68);
      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:linear-gradient(180deg,#06070A 0%,#0E1218 100%);
      color:#F8FAFC;
      transform:translateX(-105%);
      transition:transform .28s ease;
      box-shadow:24px 0 60px rgba(0,0,0,.48);
      display:flex;
      flex-direction:column;
      overflow:hidden;
    }
    .drawer-head{
      min-height:76px;
      padding:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-bottom:1px solid rgba(229,231,235,.14);
      flex:0 0 auto;
    }
    .drawer-logo img{height:34px;max-width:120px;}
    .drawer-logo span{font-size:16px;max-width:145px;color:#F8FAFC;}
    .drawer-close{
      width:40px;
      height:40px;
      border:0;
      border-radius:14px;
      background:rgba(255,255,255,.10);
      color:#F8FAFC;
      font-size:26px;
      cursor:pointer;
      flex:0 0 auto;
    }
    .drawer-body{
      flex:1 1 auto;
      min-height:0;
      overflow-y:auto;
      overflow-x:hidden;
      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,.07);
      color:#F8FAFC;
      font-size:15px;
      font-weight:800;
      line-height:1.35;
      word-break:break-word;
      overflow-wrap:anywhere;
      border:1px solid rgba(255,255,255,.10);
    }
    .drawer-nav a:hover{
      background:rgba(0,200,117,.16);
    }

    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);}

    @media (max-width:900px){
      .header-inner{width:min(100% - 24px, 1240px);min-height:68px;}
      .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;}
    }

    
    .page-hero {
      padding: 60px 0;
      background: radial-gradient(circle at 50% 0%, rgba(0, 200, 117, 0.05), transparent 60%);
      border-bottom: 1px solid var(--border-glow);
      margin-bottom: 40px;
    }
    .page-title h1 {
      font-size: 2.5rem;
      font-weight: 900;
      margin: 0 0 12px 0;
    }
    .page-title p {
      color: var(--text-muted);
      font-size: 1.1rem;
      margin: 0;
      max-width: 700px;
    }

    
    .downloads-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-bottom: 80px;
    }
    .download-card {
      background: var(--bg-panel);
      border: 1px solid var(--border-glow);
      border-radius: 16px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .download-card h3 {
      font-size: 1.35rem;
      margin: 0 0 12px 0;
      color: var(--text-main);
    }
    .download-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin: 0 0 24px 0;
      line-height: 1.6;
    }
    .download-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(229,231,235,0.06);
      padding-top: 20px;
    }
    .download-meta span {
      font-size: 13px;
      color: var(--text-muted);
    }
    .btn-download {
      background: var(--racing-green);
      color: #000;
      font-size: 13px;
      font-weight: 800;
      padding: 10px 20px;
      border-radius: 99px;
    }
    .btn-download:hover {
      box-shadow: 0 0 14px rgba(0, 200, 117, 0.4);
    }

    
    .site-footer {
      background: #090B10;
      border-top: 1px solid var(--border-glow);
      padding: 60px 0 30px 0;
    }
    .footer-inner {
      width: min(1240px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p {
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 16px;
      line-height: 1.6;
    }
    .footer-logo img {
      height: 38px;
    }
    .footer-column h3 {
      font-size: 16px;
      font-weight: 800;
      margin: 0 0 20px 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-column ul li {
      margin-bottom: 12px;
    }
    .footer-column ul li a, .footer-column ul li span {
      color: var(--text-muted);
      font-size: 14px;
    }
    .footer-column ul li a:hover {
      color: var(--racing-green);
    }
    .footer-bottom {
      width: min(1240px, calc(100% - 32px));
      margin: 0 auto;
      border-top: 1px solid rgba(229,231,235,0.08);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-bottom a {
      color: var(--text-muted);
    }
    .footer-bottom a:hover {
      color: var(--racing-green);
    }

    @media (max-width: 900px) {
      .footer-inner { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
    }