

:root {
    --background: #0c0c0c;
    --light: #e0e0e0;
    --blue: #0057ad;
    --dark: #121212;
    --white: #e6e6e6;
    --semidark: #151515;
}


@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);
}


html
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden !important;
    overflow-y: overlay;
    background-color: var(--background);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url(../Cheats/Images/background.webp);
}

::-webkit-scrollbar {
    width: 8px; /* Set the width of the scrollbar track */
    height: 8px;
}
  
::-webkit-scrollbar-thumb {
    background-color: var(--blue); /* Set the color of the scrollbar thumb */
}
  

.page {
    width: 100vw;
    max-width: 2500px;
    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-link {
    display: flex;
    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;
    z-index: 999;
}

.mobile-links a {
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 800px) {


    .nav-title {
        display: flex;
        position: absolute;
        justify-content: center;
        text-align: center;
        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;
    }
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 40rem;
    height: fit-content;
    margin-top: 6rem;
}

.product-title {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 90%;
    min-height: 5rem;
}

.product-title a {
    text-decoration: none;
    color: var(--light);
}

.product-title {
    text-align: left;
    color: var(--light);
    font-family: Light;
    font-size: 1rem;
    
}

.product-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 90%;
    width: 90%;
}

.product-box {
    width: 65rem;
    min-width: 65rem;
    background-color: var(--dark);
    border-radius: 1rem;
    overflow: hidden;
    height:fit-content;
    margin-right: 2rem;
}


.product-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    min-width: 100%;
    overflow-x: overlay;
    overflow-y: hidden;
    height: 5rem;
    background-color: var(--semidark);
}



.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    min-width: 13rem;
    cursor: pointer;
}


.selected::before  {
    content: '';
    position: absolute;
    margin-top: 4.5rem;
    height: 5px;
    width: 10rem;
    background-color: var(--blue);
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    animation-name: hover;
    animation-duration: .5s;
    animation-fill-mode: both;
}



.header-container svg {
    max-height: 24px;
    margin-right: .3rem;
}

.header-container svg path{
    fill: var(--light)
}


.selected svg path{
    fill: var(--blue)
}

.header-container header {
    color: var(--white);
    font-family: Medium;
    margin-left: .3rem;
}

.header-split {
    height: 3rem;
    min-width: 4px;
    background-color: var(--dark);
}

.header-see-more {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    right: 0;
    background-color: rgba(18, 18, 18, 0.5);
    height: 100%;
    width: 9rem;
    backdrop-filter: blur(10px);
}

.header-see-more svg path {
    fill: var(--white);
}



.product-information {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.information-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 30rem;
    width: 40%;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .7rem;
    overflow: hidden;
    height: 65%;
    width: 80%;

}

.img-container img {
    height: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    width: 60%;
    border-top: 3px solid var(--semidark);
}

.logo-container img {
    margin-top: 1rem;
    max-height: 4rem;
}


.information-text-container {
    width: 60%;
    height: 100%;
}

.information-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 93%;
    height: 5rem;
    margin-top: 2.5rem;
    border-bottom: 4px solid var(--semidark);
    
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.header-text p {
    font-family: Light;
    color: var(--light);
    margin: 0;
    padding: 0;
}

.header-text header {
    color: var(--white);
    font-size: 2rem;
    font-family: Bold;
}

.header-status {
    display: flex;
    margin-right: 1rem;
    justify-content: space-evenly;
    align-items: center;
    height: 3rem;
    width: 10rem;
    border-radius: .7rem;
    background-color: var(--semidark);
}

.header-status p {
    font-family: Bold;
    color: green;
}

.information-text {
    color: var(--white);
    font-family: Medium;
    padding: 0 0 2rem 0;
    width: 93%;
}








.product-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 0 0rem 0;
    overflow-y: scroll;
    height: 0;
    overflow: hidden;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    height: auto;
    margin-top: 2rem;
    overflow: none !important;
    transition: all ease-in-out 300ms;
}

.feature-dropdown {
    display: flex;
    outline: var(--white) 01solid;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    padding: 0 3%;
    min-height: 5rem;
    border-radius: 1rem;
    background-color: var(--semidark);
}

.feature-dropdown header {
    font-size: 1.3rem;
    font-family: Bold;
    color: var(--white);
}

.feature-dropdown svg {
    transition: transform ease-in-out 300ms;
    transform: rotate(-180deg);
}

.feature-dropdown svg path{
    fill: var(--white);
}

.feature-info {
    height: auto;
    width: 80%;
    overflow: hidden;
    transition: height ease-in-out 300ms;
}

.feature-info p{
    transition: height ease-in-out 300ms;
    font-family: Medium;
    color: var(--white)
}

span {
    white-space: nowrap !important;
    font-family: Bold !important;
}

.feature-info p:before{
    content: url(Images/blue.png);
    margin-right: 1rem;
}


.image-active {
    transform: rotate(0deg) !important;
}






.product-requirements {
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    background-color: var(--dark);
    height: 0;
    overflow: hidden;
}


.requirement {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    min-width: 15rem;
    width: 15rem;
    margin: 0 1rem
}

.requirement header {
    margin: 0;
    margin-bottom: .5rem;
    text-align: center;
    color: var(--light);
    font-family: Bold;
}

.requirement p {
    margin: 0;
    text-align: center;
    color: var(--white);
    font-family: Bold;
}




.product-instructions {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 0;
    overflow: hidden;
}

.instructions {
    display: flex;
    flex-direction: column;
    width: 90%;
    justify-content: center;

    margin-top: 2rem;
}


.instruction-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5rem;
    margin-bottom: 1rem;
    background-color: var(--semidark);
    border-radius: 1rem;
    font-family: Bold;
    color: var(--white);
}



.instrution-list-container {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;

}

.instruction-list {
    font-family: Medium;
    color: var(--white);
}

.instruction-list li a{
    color: var(--blue);
}

.product-media-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 39rem;
    width: 35rem;
}

.price-tip {
    width: 100%;
    font-family: Medium;
    color: var(--blue);
    font-size: 15px;
}

.product-prices {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    height: 5rem;
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 3%;
}

.product-prices a {
    text-decoration: none;
}

.product-line {
    height: 3rem;
    background-color: var(--light);
    width: 3px;
}

.product-price {
    display: flex;
    border: 0;
    border-radius: .5rem;
    background-color: var(--dark);
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 10rem;
    height: 4rem;
    font-size: 1rem;
    color: var(--white);
    cursor: pointer;
    font-family: Medium;
}

.product-price:hover {
    background-color: var(--blue);
}

.product-price img {
    height: 8px;
}

.product-price span {
    font-family: Bold;
}

.product-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 30rem;
    width: 100%;
    background-color: var(--dark);
    border-radius: 1rem;
}

.product-media-selected-container {
    display: grid;
    justify-content: center;
    align-items: top;
    overflow: hidden;
    margin-top: 2rem;
    width: 85%;
    height: 22rem;
    border-radius: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-image: url(Images/load.svg);
}

.product-media-selected {
    display: grid;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: fit-content;
    border-radius: 1rem;
}

.product-media-selected img {
    width: 28rem;
    max-height: 22rem;
    object-fit: cover;
}

.product-media-selected iframe {
    width: 28rem;
    height: 15.75rem;
    aspect-ratio: 16/9;
}

.product-media-slider {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0 1rem;
    width: 80%;
    height: 9rem;
    min-height: 9rem;
    margin-bottom: 2rem;
    overflow-x: scroll;
}

.media {
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: fit-content;
    height: fit-content;
    width: fit-content;
    min-width: fit-content;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
}

.media-text {
    display: grid;
    place-content: center;
    opacity: 0;
    text-align: center;
    grid-row-start: 1;
    grid-column-start: 1;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    font-family: Light;
    color: var(--white);
    transition: ease-in-out all 200ms;
}

.media iframe {
    grid-row-start: 1;
    grid-column-start: 1;
    min-height: 7rem;
    height: 7rem;
    max-width: 7rem;
}

.media img {
    grid-row-start: 1;
    grid-column-start: 1;
    object-fit: cover;
    min-height: 7rem;
    height: 7rem;
    max-width: 7rem;
}

.media:hover .media-text {
    opacity: 1;
    backdrop-filter: blur(3px);
}





@media screen and (max-width: 1750px) {

    .product {
        display: flex;
        min-height: 40rem;
        margin: 0;
        padding: 0;
        height: fit-content;
        margin-top: 5rem;
    }
    
    .product-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        height: 90%;
        width: 90%;
    }

    .product-box {
        margin-bottom: 5rem;
        margin-right: 0;
    }

    .information-text {
        color: var(--white);
        font-family: Medium;
        padding: 0 0 5rem 0;
        width: 93%;
    }

}



@media screen and (max-width: 1150px) {

    .product {
        display: flex;
        padding: 0;
        min-height: 100%;
    }
    
    .product-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        height: 90%;
        width: 90%;
    }


    
    .product-box {
        width: 100%;
        min-width: 100%;
        margin-bottom: 5rem;
        background-color: var(--dark);
        border-radius: 1rem;
        overflow: hidden;
        margin-right: 0;
    }

  

    .header-text {
        display: flex;
        flex-direction: column;
        justify-content: center;

    }
    
    .header-text p {
        font-size: 1.5vw;
    }
    
    .header-text header {
        font-size: 2.5vw;
        white-space: nowrap;
    }
    
    .header-status {
        min-width: 10rem;
    }
    
    .header-status p {
        font-family: Bold;
        color: green;
    }
    
    .information-text {
        color: var(--white);
        font-family: Medium;
        width: 93%;
    }
}

@media screen and (max-width: 970px) {
    .product-information {
        display: flex;
        align-items: center;
        flex-direction: column;
    }


    .selected::before  {
        content: '';
        position: absolute;
        margin-bottom: 8.6rem;
        height: 5px;
        width: 10rem;
        background-color: var(--blue);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: .5rem;
        border-bottom-right-radius: .5rem;
        animation-name: hover;
        animation-duration: .5s;
        animation-fill-mode: both;
    }
    


    .information-img {
        display: flex;
        flex-direction: column;
        justify-content: start;
        margin-top: 3rem;
        height: 20rem;
        width: 100%;
    }

    .img-container {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: .7rem;
        overflow: hidden;
        height: 100%;
        width: 60%;
    }

    .img-container img {
        height: 100%;
    }

    .logo-container {
        display: none;
    }


    .information-text-container {
        width: 80%;
    }

    .information-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: fit-content;
        padding: 0rem 0 1rem 0;
        margin-top: 2.5rem;
        border-bottom: 4px solid var(--semidark);
    }

    .header-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        margin-right: 1rem;
    }
}


@media screen and (max-width: 800px) {

    .product {
        display: flex;
        margin: 0;
        padding: 0;
        margin-top: 5rem;
    }

    .product-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        height: 90%;
        width: 90%;
    }

    .product-box {
        width: 100%;
        min-width: 100%;
        margin-bottom: 5rem;
        background-color: var(--dark);
        border-radius: 1rem;
        overflow: hidden;
        height:fit-content;
        margin-right: 0;
    }

    .feature-dropdown {
        min-height: 3.5rem;
    }
    .feature-dropdown header {
        font-size: .9rem;
    }


    .product-information {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    

    .information-img {
        display: flex;
        flex-direction: column;
        justify-content: start;
        margin-top: 5rem;
        height: 20rem;
        width: 100%;
    }

    .img-container {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: .7rem;
        overflow: hidden;
        height: 100%;
        width: 70%;
    }

    .img-container img {
        height: 100%;
    }

    .logo-container {
        display: none;
    }

    
    .information-text-container {
        width: 80%;
    }

    .information-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: fit-content;
        padding: 0rem 0 1rem 0;
        margin-top: 2.5rem;
        border-bottom: 4px solid var(--semidark);
    }

    .header-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        margin-right: 1rem;
    }

    .header-text p {
        font-family: Light;
        color: var(--light);
        margin: 0;
        padding: 0;
        font-size: 2.2vw;
    }

    .header-text header {
        color: var(--white);
        font-size: 4vw;
        font-family: Bold;
    }

    .header-status {
        display: flex;
        margin-right: 1rem;
        justify-content: space-evenly;
        align-items: center;
        height: 2.5rem;
        min-width: 25vw;
        width: 25vw;
        border-radius: .7rem;
        background-color: var(--semidark);
    }

    .header-status p {
        font-family: Bold;
        color: green;
        font-size: 3vw;
    }

    .header-status img {
        height: 4vw;
    }

    .information-text {
        width: 100%;
    }

    .information-text p {
        font-size: 3vw;
    }

    .product-prices {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-prices a{
        margin-bottom: 2rem;
    }

}


@media screen and (max-width: 700px) {
    
    .requirement {
        display: flex;
        flex-direction: column;
        padding: 2rem 0;
        width: 25vw;
    }

    
    .requirement header {
        margin: 0;
        text-align: center;
        font-size: 3vw;
        color: var(--light);
        font-family: Bold;
    }
    
    .requirement p {
        margin: 0;
        font-size: 2.5vw;
        text-align: center;
        color: var(--white);
        font-family: Bold;
    }

    
}

@media screen and (max-width: 620px) {

    .product-media-container {
        width: 100%;

    }


}

@media screen and (max-width: 520px) {

    .product-media-container {
        width: 100%;

    }

    
    .header-container {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 100%;
        cursor: pointer;
    }

    .product-container {
        width: 96%;
    }
}

.tab-active {
    min-height: 100%;
    height: 100%;
    overflow-y: overlay; 
}

.tab-active.special-element  {
    padding: 0 0 2rem;
  }


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;
    }
    
}

