
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
body{
    font-size:14px;
    color:#ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-family: 'Inter', sans-serif;
     scrollbar-width:none;
     overflow-x: hidden;
     min-height: 100vh;
}
body::-webkit-scrollbar {
    display: none;
  }
  .list{
    width:90%;
    margin:auto;
    margin-top:20px;
  }
.path{
  font-size:16px;
  color: #a0a0c0;
}
.path span{
    font-size:20px;
    font-weight:600;
    color:#ffffff;
}
.path a{
    color:#7a7a8c;
    text-decoration: none;
}
.path a:last-child{
    color:#0066ff;
}
.lesapps{
    display:flex;
    margin-top:20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
    margin-right: 0;
}
.lesapps:hover{
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}
.lesapps .img img{
    width:70px;
    border-radius:12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.apptext{
    margin-left:20px;
    line-height:20px;
}
.apptext p{
    font-size:17px;
    font-weight:600;
    color: #ffffff;
}
.apptext div{
    color:#a0a0c0;
}
.apptext span{
    color:#a0a0c0;
}
.download{
    position:fixed;
    bottom:0;
    left:0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top-left-radius: 30px;
    border-top-right-radius:30px;
    border: 2px solid rgba(0, 102, 255, 0.3);
    z-index:10000;
    width:100%;
    height:0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
}
.downloadhead{
    width:80%;
    margin:auto;
    margin-top:50px;
    display:flex;
    align-items:center;
    justify-content: space-between;
}
.downloadhead .downloadimage img{
    width:80px;
    border-radius:15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 19px;
}
.downloadbody{
    width:80%;
    margin:auto;
}
.downloadtext{
    font-size:18px;
    font-weight:600;
    margin-bottom:20px;
    color: #ffffff;
}
.downloadbody i {
    color:#0066ff;
    margin-right:10px;
}
.downloadbody span{
    font-size:16px;
    color: #ffffff;
}
.downloadbody p {
   margin-top:10px;
   margin-bottom:20px;
   color: #a0a0c0;
   line-height: 1.6;
}
.downloadbody .btn{
    width:100%;
    background: linear-gradient(135deg, #0066ff 0%, #4da6ff 100%);
    border-radius:30px;
    text-align:center;
    padding:15px 0px;
    color:white;
    font-weight:600;
    font-size:14px;
    margin-bottom:10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}
.downloadbody .btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}
.downloadbody .btn:last-child{
    background-color:transparent;
    border: 2px solid rgba(0, 102, 255, 0.5);
    color:#ffffff;
    padding:13px 0px;
    margin-bottom:40px;
}
.downloadbody .btn:last-child:hover{
    background: rgba(0, 102, 255, 0.1);
}
.overlay{
    background-color:rgba(0, 0, 0, 0.8);
    width:100%;
    height:100vh;
    position:fixed;
    z-index:1000;
    top:0;
    left:0;
    display:none;
    backdrop-filter: blur(10px);
}
.close{
    position:absolute;
    right:20px;
    top:10px;
    font-size:24px;
    color:#ffffff;
    cursor:pointer;
    transition: all 0.3s ease;
}
.close:hover{
    color: #0066ff;
    transform: rotate(90deg);
}
.progress{
    display:none;
}
.defaultcolor{
    background-color:#2d2d44;
    width:90%;
    margin:auto;
    height:10px;
    border-radius:20px;
}
.color{
    background: linear-gradient(135deg, #0066ff 0%, #4da6ff 100%);
    height:10px;
    border-radius:20px;
    width:0px;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}
a{
   
}