:root{
    --bg:#06060a;
    --panel: rgba(255,255,255,.06);
    --panel2: rgba(255,255,255,.04);
    --stroke: rgba(255,255,255,.12);
    --text: rgba(255,255,255,.90);
    --muted: rgba(255,255,255,.62);
    --purple:#a855f7;
    --purple2:#6d28d9;
    --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, "Apple Color Emoji","Segoe UI Emoji";
    overflow-x:hidden;
  }

  /* Background: champion + violet stripe */
  .lc-bg{
    min-height: 100vh;
    position: relative;
    padding-top: 150px;
    padding-bottom: 96px;
  }
  .lc-bg::before{
    content:"";
    position:absolute; inset:0;
    pointer-events:none;
    z-index:0;
  }
  .lc-bg::after{
    content:"";
    position:absolute; inset:0;
    pointer-events:none;
    z-index:0;
    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;
  }

  /* Top bar */
  .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);
  }

  /* Panels */
  .glass{
    background: var(--panel);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(5px);
  }
  .glass.soft{ background: var(--panel2); }
  .panel-pad{ padding: 28px; }

  .hero-title{
    font-size: 56px;
    font-weight: 900;
    letter-spacing:.8px;
    text-transform: uppercase;
    margin: 0 0 18px 0;
    text-shadow: 0 16px 50px rgba(0,0,0,.55);
  }

  /* Download buttons (Windows/Mac) */
  .dl-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 720px;
  }
  .dl-btn{
    display:flex;
    align-items:center;
    gap: 14px;
    padding: 18px 20px;
    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;
    display:grid; place-items:center;
    border-radius: 14px;
    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: 18px;
  }
  .dl-sub{
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
  }
  .dl-sub-androidapp{
    font-size: 12px;
    color: white;
    margin-top: 2px;
  }

  .section-h{
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing:.9px;
    margin-bottom: 10px;
    font-size: 16px;
    color: rgba(255,255,255,.92);
  }
  .muted{color: var(--muted);}

  .dl-mobile-btn{
    display:flex;
    align-items:center;
    gap: 14px;
    padding: 18px 20px;
    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-mobile-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-mobile-btn img{
    width: 48px;
    height: 48px;
  }

  .dl-mobile-btn2{
    display:flex;
    align-items:center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
    text-decoration:none;
    color: rgba(255,255,255,1);
    transition: transform .12s ease, border-color .12s ease, background .12s ease;
    margin-top: 30px;
    
    background: repeating-linear-gradient(
        45deg,
        #7e6900 0px,
        #7e6900 20px,
        #000000 20px,
        #000000 40px
    );
  }
  .dl-mobile-btn2:hover{
    transform: translateY(-2px);
    border-color: rgba(168,85,247,.40);

    background: repeating-linear-gradient(
        45deg,
        #443900 0px,
        #443900 20px,
        #000000 20px,
        #000000 40px
    );
  }
  .dl-mobile-btn2 img{
    width: 48px;
    height: 48px;
  }

  /* Right QR card */
  .qr-box{
    display:flex;
    align-items:center;
    gap:14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(0,0,0,.32);
    border: 1px solid rgba(255,255,255,.12);
  }
  .qr{
    width: 88px; height: 88px;
    background: #fff;
    border-radius: 10px;
  }

  .progress-banner{
    height: 58px;
    border-radius: 14px;
    background:
      repeating-linear-gradient(
        135deg,
        rgba(255,184,0,.22) 0px,
        rgba(255,184,0,.22) 18px,
        rgba(0,0,0,.20) 18px,
        rgba(0,0,0,.20) 36px
      );
    border: 1px solid rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 900;
    letter-spacing:.8px;
    text-transform: uppercase;
  }
  .store-line{
    display:flex; align-items:center; gap:10px;
    margin-top: 8px;
    color: rgba(255,255,255,.70);
    font-size: 12px;
  }
  .play{
    width: 18px; height: 18px;
    display:inline-block;
    clip-path: polygon(18% 10%, 90% 50%, 18% 90%);
    background: linear-gradient(180deg, #34d399, #3b82f6);
    border-radius: 3px;
  }

  /* Reviews */
  .reviews{
    padding: 22px;
  }
  .review-item{
    display:flex;
    gap: 12px;
    align-items:center;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.10);
  }
  .avatar{
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(168,85,247,.22);
    border: 1px solid rgba(255,255,255,.12);
    overflow:hidden;
    flex: 0 0 auto;
  }
  .avatar img{width:100%; height:100%; object-fit:cover;}
  .review-title{
    font-size: 11px;
    font-weight: 900;
    letter-spacing:.5px;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .review-text{font-size: 11px; color: rgba(255,255,255,.60); margin:0;}
  .rating{
    margin-left:auto;
    font-size: 12px;
    color: rgba(255,255,255,.80);
    display:flex; gap:6px; align-items:center;
  }
  .star{
    width: 14px; height: 14px;
    background: linear-gradient(180deg, #fff, #ddd);
    clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 34%);
    opacity:.95;
  }

  /* Footer */
  .lc-footer{
    position: relative;
    z-index: 2;
    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;
  }
  .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;
  }

  /* Layout spacing to match screenshots */
  .home-main{
    position: relative;
    z-index: 2;
    margin-top: 40px;
  }

  /* responsive tweaks */
  @media (max-width: 992px){
    /*.champion{display:none;}*/
    .hero-title{font-size: 44px;}
    .dl-grid{grid-template-columns: 1fr;}
    .topbar{
      height: 200px;
    }
    .container-fluid{
      flex-direction: column;
      gap: 10px;
    }
    .lc-bg{
      padding-top: 200px;
    }
  }