:root{
    --bg:#06060a;
    --panel: rgba(255,255,255,.06);
    --panel2: rgba(255,255,255,.04);
    --text: rgba(255,255,255,.90);
    --muted: rgba(255,255,255,.62);
    --purple:#a855f7;
    --shadow: 0 18px 60px rgba(0,0,0,.55);
    --radius: 18px;
  }
  html,body{height:100%;}
  body{background:var(--bg);color:var(--text);font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;}
  .lc-bg{min-height:100vh;
    position:relative;
    padding-top:130px;
    padding-bottom:96px;
    overflow:hidden;
  }
  .lc-bg::before{
    content:"";position:absolute;inset:0;
    z-index:0;pointer-events:none;
  }
  .lc-bg::after{
    content:"";position:absolute;inset:0;
    z-index:0;pointer-events:none;mix-blend-mode:screen;opacity:.9;
  }
  .champion{
    position:fixed;
    left:0; top:0; bottom:0;
    width: 100%;
    height: 100vh;
    background:
      url("../assets/Background.png") left center / cover no-repeat;
    filter: saturate(.6) contrast(1.05);
    opacity:1;
    z-index:0;
  }

  .topbar{
    position: fixed;
    top:0; left:0; right:0;
    height: 150px;
    display:flex;
    align-items:center;
    z-index:10;
    background: linear-gradient(180deg, rgba(0,0,0,.86), rgba(0,0,0,.15));
    backdrop-filter: blur(15px);
  }
  .brand{
    display:flex; align-items:center; gap:14px;
  }
  .brand-mark{
    width:100px; height:100px;
    display:grid; place-items:center;
    border-radius: 14px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow:hidden;
    margin-left: 10px;
  }
  .brand-mark img{
    width:100%;
    height:100%;
    object-fit:contain;
    background: transparent;
  }
  .brand-title{
    line-height:1.05;
    font-weight:800;
    font-size: 25px;
    letter-spacing:.2px;
    color: #ff77ff;
    text-shadow: 0 10px 35px rgba(168,85,247,.25);
    margin-left: 20px;
  }
  .brand-sub{
    font-size: 15px;
    color: rgba(255,255,255,.65);
    margin-top: 2px;
    margin-left: 20px;
  }

  .nav-pill{
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 10px 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
    backdrop-filter: blur(10px);
    display:flex; gap:14px; align-items:center;
  }
  .nav-pill a{
    text-decoration:none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing:.7px;
    color: rgba(255,255,255,.88);
  }
  .nav-pill .sep{
    width:1px; height:16px;
    background: rgba(255,255,255,.18);
  }
  .nav-pill a.active,
  .nav-pill a:hover{
    color: var(--purple);
  }

  .glass{
    background:var(--panel);border:1px solid rgba(255,255,255,.10);border-radius:var(--radius);
    box-shadow:var(--shadow);backdrop-filter: blur(14px);
  }
  .panel-pad{padding:28px;}
  .hero-title{
    font-size:56px;font-weight:900;letter-spacing:.8px;text-transform:uppercase;margin:0 0 20px 0;
    text-shadow:0 16px 50px rgba(0,0,0,.55);
  }
  .muted{color:var(--muted);}
  .how-cols{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
    padding-top: 10px;
  }
  .how-cols ul{margin:10px 0 0 0; padding-left: 16px;}
  .how-cols li{color:rgba(255,255,255,.70);font-size:12px;margin:6px 0;}
  .how-p{font-size:12px;color:rgba(255,255,255,.70);line-height:1.55;max-width: 260px;}

  .dl-card-title{font-weight:900;text-transform:uppercase;letter-spacing:.9px;margin-bottom:14px;}
  .dl-row{display:grid;grid-template-columns: 1fr 1fr;gap:16px;}
  .dl-btn{
    display:flex;align-items:center;gap:12px;padding:16px 16px;border-radius:16px;
    border:1px solid rgba(255,255,255,.14);
    background:linear-gradient(180deg, rgba(168,85,247,.10), rgba(255,255,255,.04));
    box-shadow:0 18px 45px rgba(0,0,0,.45);
    text-decoration:none;color:rgba(255,255,255,.92);
    transition:transform .12s ease,border-color .12s ease,background .12s ease;
  }
  .dl-btn:hover{transform:translateY(-2px);border-color:rgba(168,85,247,.40);background:linear-gradient(180deg, rgba(168,85,247,.16), rgba(255,255,255,.05));}
  .dl-ico{
    width:44px;height:44px;border-radius:14px;display:grid;place-items:center;
    background:rgba(0,0,0,.32);border:1px solid rgba(255,255,255,.10);
  }
  .dl-ico img{
    width:45%; 
    height:50%; 
    opacity:.95;
  }
  .dl-label{font-weight:700;font-size:16px;}

  .lc-footer{
    border-top:1px solid rgba(255,255,255,.08);
    background:linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.70));
    padding:18px 0;
    position:relative;z-index:2;
  }
  .footer-links a{color:rgba(255,255,255,.70);text-decoration:none;font-size:12px;}
  .footer-links a:hover{color:var(--purple);}
  .copyright{color:rgba(255,255,255,.35);font-size:11px;line-height:1.45;margin-top:8px;}

  @media (max-width: 992px){
    .hero-title{font-size:44px;}
    .how-cols{grid-template-columns: 1fr;gap:18px;}
    .dl-row{grid-template-columns: 1fr;}
    .topbar{
      height: 200px;
    }
    .container-fluid{
      flex-direction: column;
      gap: 10px;
    }
    .lc-bg{
      padding-top: 200px;
    }
  }