*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

html,body{
    height: 100%;
    width: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased; 
     scroll-behavior: smooth;
    
}

#main{
    position: relative;
    overflow: hidden;
    
}
header{
    position: fixed;
    top: 0;
    width: 100vw;
    height: 10vh;
    z-index: 10;
    background-color: black;
    display: flex;
  justify-content: space-between;
  transition: 0.6s;
  align-items: center;


   
    

}
header>a>img{
    position: relative;
    padding-top: 5px;
    padding-left: 15px;
    padding-bottom: 5px;
    height: 8vh;
}
header>ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
    border-radius: 10px;
    
}
header>ul>li{
    position: relative;
  padding-right: 20px;
  display: block;
    list-style: none;
    border-right: 1px solid white;
}
header>ul>li>a{
    position: relative;
    text-decoration: none;
    margin: 0 15px;
    padding-left: 10px;
    
    letter-spacing: 2px;
    font-weight: 500px;
    transition: 0.5s;
    color: rgba(251, 111, 111, 0.867);
    font-family: "Bourgeois W00 Medium","Arial Regular",Arial,sans-serif;



}
header>ul>li>a:after{
    content: "";
    position: absolute;
    background-color: white;
    height: 1px;
    width: 0;
    left: 5px;
    bottom: -10px;
    transition: 0.3s;

}
header>ul>li>a:hover{
    color: red;
}
header>ul>li>a:hover:after{
    width: 100%;

}

.page1 {
    width: 100%;
    height: 110%;
    background: url("photos/ValorantWallpaper_Reaver_thumbnail.jpg") no-repeat center center;
    background-size: cover;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

  }
  
  @media all and (max-width: 768px) {
    body {
      flex-direction: column;
    }
  }
  
  #current-weapon {
    margin: auto;
    padding: 1em;
    border-radius: 15px;
    display: flex;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #current-weapon h3 {
    letter-spacing: 1px;
    font-weight: 400;
  }
  
  #current-weapon-info {
    text-align: center;
    border: 3px solid white;
    background: rgba(255, 255, 255, 0.5);
    margin: 1em;
    letter-spacing: 5px;
    padding: 1em 1.5em;
    border-radius: 15px;
  }
  
  #current-weapon-name {
    color: black;
  }
  
  #current-weapon-image {
    width: 200px;
    margin: 15px 0;
  }
  
  #weapon-selector-button {
    padding: 1em 2em;
    margin: 1em;
    border: none;
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: white;
    letter-spacing: 2px;
    color: black;
    transition: all 0.2s ease-in-out;
  }
  
  #weapon-selector-button:hover {
    background: black;
    color: white;
    cursor: pointer;
    box-shadow: 0 3px rgba(255, 255, 255, 0.5);
  }
  
  #weapon-selector-wrapper {
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: background-color 0.5s ease-in-out;
    position: absolute;
    top: 10%;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #weapon-selector-wrapper.active {
    visibility: visible;
    background-color: rgba(5, 21, 255, 0.2);
    opacity: 1;
  }
  
  #weapon-properties {
    position: absolute;
    top: 40px;
    right: 2PX;
    width: 250px;
    height: 200px;
    margin: 1em;
    padding: 0.5em;
    background: rgba(0, 0, 0, 0.8);
  }
  
  #weapon-properties h4 {
    font-weight: 400;
    margin: 0;
  }
  
  .bar {
    height: 20px;
    width: 100%;
    margin: 5px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .value-bar {
    background: rgba(255, 255, 255, 1);
    height: 20px;
    transition: all 0.5s ease-in-out;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  #damage {
    width: 0;
  }
  #fire-rate {
    width: 0;
  }
  #accuracy {
    width: 0;
  }
  #range {
    width: 0;
  }
  
  svg {
    transform: rotate(22deg);
  }
  
  svg > text {
    font-weight: 700;
    font-size: 1.5em;
    stroke: black;
  }
  
  svg text,
  svg g text, 
  svg g image {
    transform: rotate(-22deg);
  }
  
  g path {
    stroke: rgba(0, 0, 0, 0.3); 
    stroke-width: 5px;
    stroke-dasharray: 235.5 440;
    transform-origin: center center;
    transform: scale(0.98);
    transform-box: fill-box;
  }
  
  g text {
    font-weight: 700;
    stroke: black;
  }
  
  g.active-weapon path {
    stroke: rgba(82, 149, 177, 1); 
    stroke-width: 10px;
    stroke-dasharray: 235.5 440;
  }
  
  g:hover {
    cursor: pointer;
  }
  
  g:hover path {
    fill: white;
    transition: all 0.2s ease-in-out;
    stroke-width: 0;
  }
  
  #hovered-weapon-name {
    fill: white;
  }


  .gameclient{
    width: 100vw;
    height: 12vh;
    background: rgb(31, 31, 31);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.gameclient a{
    text-decoration: none;
}
.gameclient .download{
    color: #efefef;
    font-family: "Bourgeois W00 Medium","Arial Regular",Arial,sans-serif;
    font-size: 19px;
    font-weight: 800;
    transform: scaleY(0.8);
    letter-spacing: -0.5px;
    margin-left: 70px;
}
.gameclient .download:hover{
    background: rgb(63, 63, 63);
    border: 8px solid rgb(63, 63, 63);
    border-radius: 6.5px;
    cursor: pointer;

}
.gameclient .riot{
    color: #efefef;
    font-family: "Bourgeois W00 Medium","Arial Regular",Arial,sans-serif;
    font-size: 19px;
    font-weight: 800;
    transform: scaleY(0.8);
    letter-spacing: -0.5px;
}
.gameclient .riot:hover{
    background: rgb(63, 63, 63);
    border: 8px solid rgb(63, 63, 63);
    border-radius: 6.5px;
    cursor: pointer;

}

.page8{
    position: relative;
    height: 70vh;
    width: 100vw;
    background: black;   
}
.upper{
    display: flex;
    /* flex-wrap: nowrap; */
    justify-content: center;
    gap: 30px;
}
.upper img{
    height: 40px;
    width: 40px;
    margin-top: 20px;
    border-radius: 40%;
    border-color: rgb(37, 37, 37);
    border-width: 4px;
    border-style: solid;
    background-color: rgb(37, 37, 37);
    
    
   
}
.middle{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
}
.middle img{
    height: 100px;
    width: 150px;
    margin-top: 20px;
    opacity: 80%;
      
}
.page8 h1{
    color: rgb(228, 225, 225);
    font-weight: 10;
    font-size: 13px;
    margin-left: 28%;
    opacity: 80%;
    word-spacing: 2px;
    text-transform: uppercase;
    font-family: "FF Mark W05",Arial,sans-serif;
    
}
.middle2{
    display: flex;
    gap: 10px;
    color: white;
    margin-top: 30px;
    justify-content: center;
    margin-left: 39px;
}
.middle2 div {
    font-family: "FF Mark W05",Arial,sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: rgb(237, 233, 233);
    display: block;
    transition: all .2s linear;
    cursor: pointer;
    text-rendering: optimizeLegibility;
    /* -webkit-font-smoothing: antialiased; */
    padding: 8px 16px;
   
}
.middle2 div:hover{
    background-color: rgba(128,128,128,.3);
    
    border-radius: 6.5px;
}
.lower{
    display: flex;
    margin-left: 43.4%;
    margin-top: 50px;
    gap: 15px;
    width: 230px;
    background-color:rgba(128,128,128,.3) ;
    padding: 10px 16px;
    border-radius: 6.5px;
}

.lower li{
    color: #efefef;
    list-style: none;
    font-size: 13px;
    font-weight: 550;
    line-height: 150%;
    font-family: "FF Mark W05",Arial,sans-serif;
    

}

  