

: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);
}


html
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;
    min-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;
}

.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;
        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;
    }
}

.status-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    height: calc(100% - 5rem);
    width: 100%;
    margin-top: 5rem;
}

.status-info {
    display: flex;
    align-items: end;
    justify-content: start;
    color: var(--light);
    font-family: Light;
    width: 100%;
    height: 3.5rem;
    margin-left: 11rem;
    outline: blue thin solid;
}

.game-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    margin-top: 3rem;

}



.game-status {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all ease-in-out 150ms;
    justify-content: start;
    width: 40rem;

    padding: 1rem 2rem;
    max-height: 3rem;
    background-color: var(--dark);
    border-radius: 1rem;
    margin: 1rem 0;
    cursor: pointer;

}


.game-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    min-height: 3rem;
}

.game-active {
    transition: all ease-in-out 150ms;
}


.game-title {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: start;
    height: 3rem;
    width: 85%;
}

.game-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.game-title img {
    max-height: 40px;
    max-width: 50px;
}

.game-status header {
    margin-left: 1rem;
    font-family: Medium;
    font-size: 1rem;
    color: var(--white);
}


#undetected {
    font-family: Bold;
    color: #6aa84f;
}

#updating {
    font-family: Bold;
    color: var(--blue);
}

.game-arrow {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.game-arrow svg path{
    fill: var(--light);
}

.game-arrow svg {
    transition: all ease-in-out 250ms;
    rotate: 0deg;
}

.game-more {
    margin-top: 1rem;
    font-family: Light;
    color: var(--light);
    width: 100%;
}



.game-active .game-arrow svg{
    transition: all ease-in-out 250ms;
    rotate: 180deg;
}


@media screen and (max-width: 1000px) {
    .game-status {
        width: 80%;
    }

}

@media screen and (max-width: 600px) {

    .game-status header {
        margin-left: 1rem;
        font-size: .9rem;
    }

    .game-text span{
        font-size: .9rem;
    }
}


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;
    }
    
}


