
:root {
    --background: #0c0c0c;
    --light: #e0e0e0;
    --blue: #0057ad;
    --dark: #121212;
    --white: #e6e6e6;
}


@font-face {
    font-family: ExtraBold;
    src: url(../Fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: Bold;
    src: url(../Fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: Medium;
    src: url(../Fonts/Montserrat-Medium.ttf);
}


@font-face {
    font-family: Light;
    src: url(../Fonts/Montserrat-Light.ttf);
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: overlay;
    background-color: var(--background);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url(../Cheats/Images/background.webp);
}

body::-webkit-scrollbar {
    width: 8px; /* Set the width of the scrollbar track */
    height: 8px;
}
  
body::-webkit-scrollbar-thumb {
    background-color: var(--blue); /* Set the color of the scrollbar thumb */
}
  

.page {
    width: 100vw;
    max-width: 2500px;
    max-height: 2000px;
    height: 100vh;
}



nav {
    z-index: 999;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 90%;
    padding: 0 5%;
    height: 5rem;
    position: fixed;
    opacity: 1;
    background-color: rgba(18,18,18, 0.5);
    backdrop-filter: blur(10px);
}

.nav-title {
    display: flex;
    align-items: center;
    min-width: 15rem;
    width: 15rem;
    height: 75%;
    margin-right: 5rem;
    font-family: Bold;
    color: var(--blue);
    font-size: 1rem;
    border-right: var(--dark) 3px solid;
}

.nav-title img {
    height: 2rem;
    margin-right: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    width: 80rem;
    margin-left: auto;
    margin-right: 5%;
    height: 75%;
    justify-content: space-between;
}

.nav-links h2 {
    margin: 0;
    padding: 0;
    font-family: Medium;
    font-size: 1rem;
}

.nav-links h2 a {
    text-decoration: none;
    color: var(--light);
}
    
.nav-links h2:hover a{
    color: var(--blue);
}

.nav-links .active a{
    text-decoration: none;
    color: var(--blue) !important;
}


.nav-mobile {
    display: none;
    z-index: 9999;
    justify-content: end;
    align-items: center;
    width: 95%;
    height: 75%;
}

.mobile-button {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    width: 2.5rem;
    height: 2.5rem;
}

.line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
}

.mobile-links {
    display: none;
    pointer-events: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    background-color: var(--background);
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
}

.mobile-links a {
    text-decoration: none;
    cursor: pointer;
}

.mobile-link {
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    width: 12rem;
    height: 4rem;
    margin: 1rem 0;
    font-size: 1rem;
    font-family: Medium;
    border-radius: 1rem;
    outline: var(--blue) thin solid;
    background-color: var(--dark);
}

.mobile-exit {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 4rem;
    width: 4rem;
    top: 1rem;
    right: 3rem;
}


@media screen and (max-width: 800px) {

    .nav-title {
        display: flex;
        position: absolute;
        justify-content: center;
        text-align: center;
        min-width: 90%;
        width: 90%;
        margin-right: 0;
        font-family: ExtraBold;
        font-size: 1.7rem;
        border-right: none;
    }

    .nav-links {
        display: none;
    }

    .nav-active {
        pointer-events: all;
        display: flex;
    }

    .navbar-active {
        display: flex;
    }
}


.index {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    min-width: 600px;
    height: max(100vh, 40rem);
}

.info-container {
    display: flex;
    align-items: center;
    width: 50%;
    height: 100%;
    margin-left: 5rem;
}

.info {
    width: 100%;
    height: 60%;
}

.tag-container {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 7rem;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: Bold;
    color: var(--blue);
    height: 4rem;
    width: 20rem;
    border-radius: 5rem;
    border: thin solid var(--blue)
}

.info-text {
    height: 17rem;
    width: 50rem;
}

.info-text header {
    color: var(--white);
    font-size: 6rem;
    font-family: ExtraBold;
}

.info-text p {
    color: var(--light);
    font-size: 3.5rem;
    margin: 0;
    font-family: Medium;
}

.info-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    border-top: 5px solid var(--dark);
    height: 8rem;
    width: 25rem;
}

.info-buttons button {
    display: flex;
    align-items: center;
    height: 3.5rem;
    padding: 0 1rem;
    font-size: 1.5rem;
    font-family: Medium;
    border-radius: 1rem;
    border: 0;
}

.info-buttons button:hover {
    outline: thin solid white;
}

.info-buttons svg {
    margin-right: 1rem;
}

.info-buttons svg path {
    fill: var(--white);
}

.info-buttons a{
    text-decoration: none;
}

.store {
    background-color: var(--blue);
    color: var(--white);
}

.other {
    background-color: var(--dark);
    color: var(--white);
}

.product-container {
    display: flex;
    align-items: start;
    justify-content: end;
    margin: 0;
    height: 100%;
    width: 100%;
}

.product {
    height: 85%;
    width: 80vh;
    overflow-x: hidden;
    min-width: 41rem;
    max-width: 60rem;
    max-height: 70rem;
    min-height: 43rem;
    border-bottom-left-radius: 1rem;
    outline: thick solid var(--white);
}

.product-img {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    display: flex;

    align-items: center;
    height: calc(100% - 10rem);
    width: 100%;
    scroll-snap-type: mandatory;
}

.product-img img{
    transition: all ease-in-out 300ms;
    scroll-snap-align: center;
    object-fit: contain;
    height: 100%;

}

.product-info {
    height: 10rem;
    width: 100%;
    background-color: var(--white);
    border-bottom-left-radius: .8rem;
}

.product-nav {
    display: flex;
    margin: auto;
    justify-content: space-evenly;
    align-items: center;
    width: 80%;
    height: 2rem;
}

.nav-button {
    height: 10px;
    width: 7rem;
    border-radius: .5rem;
    background-color: var(--light);
    transition: background-color 150ms ease-in-out;
}

.selected {
    background-color: var(--blue) !important;
}

.nav-button:not(.selected):hover {
    background-color: var(--dark);
}

.product-footer {
    display: flex;
    justify-content: start;
    flex-direction: row;
    height: 8rem;
}

.product-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 20%;
}

.product-logo img {
    max-width: 7rem;
    object-fit: contain;
    display: none;
    max-height: 4rem;
}

.activated {
    display: flex !important;
}


.product-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 60%;
}

.changer {
    color: var(--dark);
    font-family: ExtraBold;
    font-size: 1.7rem;
}
@media screen and (max-width: 1600px) {
    .info-text {
        height: 16vw;
        width: 50vw;
    }
    
    .info-text header {
        color: var(--white);
        font-size: 6vw;
        font-family: ExtraBold;
    }
    
    .info-text p {
        color: var(--light);
        font-size: 3.5vw;
        margin: 0;
        font-family: Medium;
    }

    .product {
        height: 43vw;
        min-width: 23rem;
        width: 40vw;
        min-height: 42rem;

    }

}

@media screen and (max-width: 1200px) {
    .index {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
    }
    
    .info-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 40rem;
        height: 80rem; 
        margin-left: 0;
    }
    
    .info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .tag-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 7rem;
    }

    
    
    .tag {
        font-size: 1rem;
        height: 4rem;
        width: 20rem;
    }

    
    .info-text {
        text-align: center;
        height: auto;
        width: 80%;
        margin-bottom: 1rem;
    }

    .info-text header {
        font-size: 8vw;
    }

    .info-text p {
        font-size: 5vw;
        margin: 0;
    }

    .info-buttons {
        height: 8rem;
        width: 60%;
    }

    .product-container {
        display: none;
    }
}

@media screen and (max-width: 800px) {

    .index {
        height: 40rem;
    }

    .tag-container {
        width: 100%;
        height: 6rem;
    }
    
    .tag {
        font-size: .8rem;
        height: 3rem;
        width: 15rem;
    }

    
    .info-text {
        text-align: center;
        height: auto;
        width: 70%;
        margin-bottom: 1rem;
    }

    .info-text header {
        font-size: 3rem;
    }

    .info-text p {
        font-size: 1.6rem;
        margin: 0;
    }

    .info-buttons button {
        display: flex;
        align-items: center;
        height: 3rem;
        padding: 0 .7rem;
        font-size: 1rem;
        font-family: Medium;
        border-radius: .5rem;
        border: 0;
    }

    .info-buttons img {
        margin-right: .5rem;
        height: 1.5rem;
    }

    

}




.catalog {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 70rem;
    margin-bottom: 1rem;
}

.catalog-title {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 13rem;
    margin-bottom: 2rem;
}

.catalog-title {
    text-align: center;
    color: var(--white);
    font-family: ExtraBold;
    font-size: 4rem;
}

.catalog-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    height: 65%;
    width: 90%;

}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0 1rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    width: 25rem;
    height: 38rem;
    background-color: var(--dark);
    background: linear-gradient(180deg, rgba(24,27,32,1) 0%, rgba(24,27,32,1) 50%, rgba(24,27,32,0) 100%);
}

.game-img-container {
    display: grid;
    width: 25rem;
    height: 23rem;
    border-radius: 1rem;
}

.status {
    grid-row-start: 1;
    grid-column-start: 1;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 2.5rem;
    width: 8rem;
    background-color: var(--dark);
    border: thin solid var(--dark);
    border-top-right-radius: .8rem;
    border-bottom-left-radius: .8rem;
    margin-left: auto;
    z-index: 15;
}

.status p {
    color: var(--white);
    font-size: 1rem;
    font-family: Light;
}

.game-image {
    grid-row-start: 1;
    grid-column-start: 1;
    overflow: hidden;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25rem;
    height: 23rem;
    z-index: 14;
}

.game-image img {
    height: 100%;
}

.game-info-container {
    width: 100%;
    }

.game-title {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    flex-direction: row;
    width: 90%;
    margin: 0 5%;
    height: 10rem;
}

.game-title header {
    font-family: Bold;
    color: var(--white);
    font-size: 22px;
}

.game-title img:not(#tarky) {
    margin: 0 1rem 0 0rem;
    height: 35px;
}

.game-text {
    width: 100%;
}
.game-text p{
    color: var(--light);
    font-family: Light;
    margin: 0;
}

#tarky {
    margin: 0 1rem 0 0rem;
    height: 23px;
}

.game-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 90%;
    margin: 0 5%;
    height: 4rem;
}

.game-price p {
    color: var(--white);
    font-size: 1rem;
    font-family: Medium;
}

.game-price span {
    color: var(--blue);
}

.game-price button {
    height: 2rem;
    width: 8rem;
    border-radius: .5rem;
    color: var(--dark);
    font-family: Bold;
    border: 0;
    background-color: var(--blue);
    transition: outline ease-in-out 300ms, box-shadow ease-in-out 300ms;
}

.game-price button:hover {
    outline: var(--white) thin solid;
    box-shadow: 0px 0px 1.2rem 0 rgba(53,150,169,0.75);
    -webkit-box-shadow: 0px 0px 1.2rem 0 rgba(53,150,169,0.75);
    -moz-box-shadow: 0px 0px 1.2rem 0 rgba(53,150,169,0.75);
}


.Cheats-btn-container {
    display: flex;
    justify-content: end;
}

.view-Cheats-btn {
    padding: 1.2rem 2rem;
    font-family: Bold;
    background-color: var(--blue);
    border: 0;
    border-radius: 1rem;
    font-size: 1rem;
    color: var(--white)
}

.view-Cheats-btn:hover {
    outline: thin solid white;
}

@media screen and (max-width: 1439.5px) {

    .catalog {
        min-height: 95rem;
    }

    .catalog-title {
        display: flex;
        align-items: end;
        justify-content: center;
        width: 100%;
        height: 8rem;
        margin-bottom: 1rem;
    }

    .Cheats-btn-container {
        width: 100%;
        display: flex;
        justify-content:center;
    }

    .view-Cheats-btn {
        margin: 2rem 0;
    }
    
    .catalog-title {
        text-align: center;
        color: var(--white);
        font-family: ExtraBold;
        font-size: 5vw;
    }
    
    .catalog-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap;
        height: calc(100% - 8rem);
        width: 90%;
    }

}

@media screen and (max-width: 959.6px) {

    .catalog {
        min-height: 125rem;
    }

    .catalog-title {
        font-size: 2.5rem;
    }

}


.us {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    min-height: max(80vh, 40rem);
}

.us header {
    margin-bottom: 5rem;
    color: var(--white);
    font-family: ExtraBold;
    text-align: center;
    font-size: 5rem;
}

.us-text {
    word-wrap: break-word;
    padding: 2rem;
    width: 65%;
    color: var(--white);
    font-family: Medium;
    border-radius: .5rem;
    background-color: var(--dark);
    overflow-y: overlay;
    max-height: 45rem;
}

@media screen and (max-width: 1000px) {
    .us header {
        font-size: 4rem;
    }    

}

@media screen and (max-width: 700px) {

    .us header {
        font-size: 3rem;
    }

    .us {
        margin-top: 10rem;
        min-height: max(90vh, 40rem);
    }

}

.us-text::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  .us-text::-webkit-scrollbar-track {
    background: none;
  }
  
  /* Handle */
  .us-text::-webkit-scrollbar-thumb {
    background: var(--light);
    border-radius: 3rem;
  }
  
  /* Handle on hover */
  .us-text::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

footer {
    margin-top: 15rem;
    width: 85%;
    bottom: 0;
    height: 20rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
        padding: 1rem 0 0 0;
    border-top: 5px solid var(--dark);
    border-bottom: 5px solid var(--dark);
}

.footer-info {
    height: 100%;
    width: 25rem;
}

.footer-text {
    width: 100%;
    height: 10rem;
}

.footer-imgs {
    display: flex;
    width: 25rem;
    height: 5rem;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.footer-imgs img {
    max-height: 2rem;
    max-width: 4rem;
}


.footer-info header {
    font-size: 2rem;
    font-family: Bold;
    color: var(--white);
}

.footer-info p {
    font-size: 1rem;
    font-family: Medium;
    color: var(--light);
}
.footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 100%;
    width: 50rem;
}

.footer-nav ul {
    list-style-type: none;
    height: 100%;
    margin: 0;
    padding: 0;
}
.footer-nav ul li {
    margin: 0 0 1rem 0;
}

.footer-nav ul li a:not(.footer-nav-title) {
    color: var(--white);
    font-family: Light;
    text-decoration: none;
}

.footer-nav ul li:not(.footer-nav-title) {
    color: var(--white);
    font-family: Light;
}

.footer-nav-title {
    color: var(--light);
    font-size: 1rem;
    font-family: Light;
}



.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--light);
    font-family: Light;
    font-size: 1rem;
    width: 100%;
    height: 5rem;
}


@media screen and (max-width: 960px) {
    .footer-top {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: fit-content;
        border-top: 5px solid var(--dark);
        border-bottom: 5px solid var(--dark);
    }

    
    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }

    .footer-text {
        width: 70%;
        height: 8rem;
    }

    .footer-imgs {
        display: flex;
        width: 60%;
        margin-top: 2rem;
        height: 5rem;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }

    
    .footer-info header {
        text-align: center;
        font-size: 2rem;
        font-family: Bold;
        color: var(--white);
    }

    .footer-info p {
        text-align: center;
        font-size: 1rem;
        font-family: Medium;
        color: var(--light);
    }

    .footer-imgs img{
        max-height: 2rem;
        margin: 0 .2rem;
        max-width: 3rem;
    }


    
}

@media screen and (max-width: 700px) {
    .footer-text {
        width: 70%;
        height: 10rem;
    }
    
    .footer-imgs {
        width: 90%;
        height: 5rem;
        align-items: center;
    }

        
    .footer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100%;
        width: 100%;
    }

    .footer-nav ul {
        text-align: center;
        margin-top: 2rem;
    }

    .footer-bottom {
        font-size: .8rem;
        width: 100%;
        height: 3rem;
    }
    
}





