.main_blur {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    background-color: rgba(0,0,0,0.2);

    -webkit-backdrop-filter: blur(700px);
    -o-backdrop-filter: blur(700px);
    -moz-backdrop-filter: blur(700px);
    backdrop-filter: blur(700px);
    overflow: hidden;
}

.img_wall_block > img {
    position: fixed;
    top: -50px;
    right: 0;
    left: -50%;
    bottom: 0px;
    width: 200%;
    height: 200%;
    overflow: hidden;
}


.heading {
    font-size: 14px;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 20px;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(100,100,100,0.5);
}

.game_img {
    display: flex;
    width: 100%;
    height: auto;
    overflow: hidden;
    align-items: center;
    margin: 0 auto;
}
.game_details_img {
    width:100%;
    height: auto;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 0 0 20px;
    margin: 0 auto;
}
@media (min-width:0px) and (max-width:1000px) {
  .game_img {
    max-width: 200px;
  }
}





:root {
  --star-size: 22px;
  --star-color: #fff;
  --star-background: #fc0;
}
.Ratings {
    display: flex;
    justify-content: center;
    align-items: center;
}
.Ratings > p{
    margin: 0px !important;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    background-color: #fff;
    padding: 0px 6px;
    border-radius: 50px;
}
.Stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: block;
    font-size: var(--star-size);
    font-family: Times; /* make sure ★ appears correctly */
    line-height: 1;
  
  &::before {
    content: '★★★★★';
    letter-spacing: 2.5px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}



.g_info{
    display: block;
    padding:0 20px;
}

.g_info .Stars {
    display: inline-block;
    margin-right: 10px;
}
.g_info .g_info_size{
    font-size: 28px;
    font-weight: 800 !important;
     color: #fff !important;
     margin: 15px;
}
.g_info .g_info_size > span{
    font-size: 16px;
}

.g_details {
    position: relative;
    flex: 1;
    color: #fff !important;
    background-color: rgba(0,0,0,0.3);
    margin-bottom: 100px;
}


.g_details h1{
    padding:30px 5%;
    font-size:clamp(1rem, 0.5vw + 1rem, 2rem);
    font-weight: 800 !important;
    margin-bottom: 18px;
    color:#fff !important;
}

.g_details a{
    color: #fff !important;
}

.g_details font{
    color: #fff !important;
}

.g_details b{
    color: #fff !important;
    font-weight: 700 !important;
}


.g_cards_side {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 30px;
}
.g_cards_side > a {
    display: block;
    position: relative;
    width: 196px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    background-color: rgba(0,0,0,0.3);
}


.g_card_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.g_cards_side > a:hover .g_card_img{
    transform: scale(1.1);
}


.g_description {
    padding: 15px;
}




.g_download {
    text-align: center;
    padding: 50px 0;
    background-color:rgba(10,10,10,0.2);
}


.g_screenshots {
    padding:50px 15px;
    text-align: center;
}
.g_screenshots_imgs {
    display: flex;
    overflow: auto;
    padding-bottom: 20px;
}
.g_screenshots_imgs > img {
    width: auto;
    height: 150px;
    border-radius: 5px;
    padding: 10px;
    display: block;
}