@font-face {
    font-family: ExtraBold;
    src: url(../fonts/Montserrat-ExtraBold.ttf);
}

@font-face {
    font-family: Bold;
    src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: Reg;
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: Light;
    src: url(../fonts/Montserrat-Light.ttf);
}



:root {
    --dark: #111113;
    --grey: #646464;
    --pink: #fb0cfc;
    --darker: #090909;
    --purple: #9f00ff;
    --white: #d7d7d7;
}

html body{
    background-image: url(../images/background.jpg);
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
  }


  
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark)

}
  
  /* Handle */
::-webkit-scrollbar-thumb {
    background: var(--pink);
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}


:root {
    --dark: #111113;
    --grey: #646464;
    --pink: #fb0cfc;
    --purple: #9f00ff;
    --white: #d7d7d7;
}




/* Start of Navbar */

.navbar {
    position: fixed;
    top: 0;
    width: 95%;
    padding: 0 2.5%;
    height: 80px;
    font-family: Light;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    z-index: 999;
    overflow: hidden;
    transition: height 300ms ease-in-out;
}

.main-nav {
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    flex-wrap: wrap;
    width: 95%;
    padding: 0 2.5%;
    height: 80px;
    align-items: center;
    justify-content: space-between;
}
.logo {
    margin-right: auto;
}

.logo img{
    height: 35px;
}

.links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    max-width: 40rem;
    margin-right: 2%;
}

.link-item {
    display: flex;
    align-items: center;
}

.link-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.link-item svg {
    fill: white;
    margin-left: 5px;
    margin-right: 10px;
}

.selected svg {
    fill: var(--pink);
}

.selected a {
    color: var(--pink);
}

.link-item:hover a{
    color: var(--pink);
}

.link-item:hover svg{
    fill: var(--pink);
}

.store-items {
    border-top: thin solid var(--grey);
    top: 5rem;
    right: 0;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 5rem;
    width: 100%;
    background-color: var(--dark);
}

.store-items a {
    margin: 0 1rem;
    text-decoration: none;
    color: white;
}


.nav-border {
    height: 35px;
    width: 1px;
    margin-right: 2%;
    background-color: var(--grey);
}

a {
    text-decoration: none;
}

.cart {
    display: flex;
    width: 40px;
    height: 20px;
    align-items: center;
    justify-content: space-between;
}

.cart a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cart-number {
    margin: 0;
    color: white;
    font-size: 15px;
}

.cart a svg path{
    fill: white;
    padding: 0;
    margin: 0;
}

.cart a:hover svg path {
    fill: var(--pink);
}

.mobile-nav {
    display: none;
    height: 100%;
}

.mobile-icon {
    height: 30px;
    z-index: 999;
}

.mobile-bar {
    height: 1px;
    margin-bottom: 10px;
    background-color: white;
    width: 28px;
    transition: transform ease-in-out 250ms, opacity ease-in 100ms;
}

.mobile-icon-active .mobile-bar:nth-child(3) {
    opacity: 0;
}

.mobile-icon-active .mobile-bar:nth-child(2) {
    transform: rotate(45deg);
}
.mobile-icon-active .mobile-bar:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
}


.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 990;
    background-color: var(--dark);
    transform: translateX(100%);
    width: 50%;
    height: 100vh;
    border-left: thin solid var(--pink);
    transition: transform ease-in-out 300ms;
}

.mobile-cart {
    display: flex;
    align-items: center;
    width: 70px;
    margin-left: 15px;
    margin-top: 26px;
}

.mobile-cart a{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mobile-cart svg {
    margin-right: 10px;
}

.mobile-cart h1 {
    color: white;
    font-size: 15px;
}

.mobile-cart a svg path{
    fill: white;
    padding: 0;
    margin: 0;
}

.mobile-cart svg:hover  path{
    fill: var(--pink);
}



.mobile-sidebar-active {
    transform: translateX(0%);
}

.mobile-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 50%;
    flex-direction: column;
    margin-top: 5rem;

}
.mobile-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9rem;
    height: 3rem;
    border: thin solid var(--purple);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mobile-link-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
}

.mobile-link-item svg {
    height: 25px;
    margin-right: 10px;
}

.mobile-selected svg path {
    fill: var(--pink);
}

.mobile-selected a {
    color: var(--pink);
}

@media only screen and (max-width: 600px) {
    .mobile-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .logo img{
        height: 25px;
    }

    .nav-border {
        display: none;
    }

    .links {
        display: none;
    }

    .cart {
        margin: 0 25px 5px 0;
    }
  }


/* End of Navbar */





/* Start of Top Landing */

.top-landing {
    display: flex;
    margin-top: 5rem;
    flex-direction: row;
    align-items: center;
    width: 100%;
    border-top: thin solid var(--pink);
    border-bottom: thin solid var(--pink);
    height: 40rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/pinkforeground.webp);
}

.left-landing-img {
    margin-right: auto;
    animation: .7s ease-in-out 0s 1 slideInFromLeft;
}

.right-landing-img {
    margin-left: auto;
    animation: .7s ease-in-out 0s 1 slideInFromRight;
}

@keyframes slideInFromLeft {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0);
    }
}


@keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
}  

.landing-info {
    display: flex;
    height: 60%;
    width: 40%;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.landing-info header {
    font-family: bold;
    color: white;
    text-align: center;
    font-size: 4rem;
}

.landing-info p {
    color: var(--grey);
    font-family: reg;
    text-align: center;
}


.landing-buttons {
    display: flex;
}

.landing-buttons button{
    display: flex;
    border-radius: 10px;
    align-items: center;
    padding: 1rem 2.5rem;
    margin: 0 1rem;
}

.button-store {
    border: 0;
    background-color: #fb0cfc;
    transition: background-color ease-in-out 150ms;
}

.button-status {
    border: thin solid var(--purple);
    background: none;
    transition: background-color ease-in-out 150ms;
}

.button-store:hover{
    background-color: var(--purple);
}

.button-status:hover{
    background-color: var(--purple);
}

.button-status {
    border: thin solid var(--purple);
    background: none;
}

.landing-buttons button svg {
    margin: 0 5px;
}

.landing-buttons svg path {
    fill: white;
}

.landing-buttons:hover button{
    cursor: pointer;
}

.landing-buttons button p {
    font-family: Bold;
    color: white;
    margin: 0 5px;
}

@media only screen and (max-width: 1700px) {
    
    .left-landing-img {
        display: none;
    }
    .landing-info {
        margin: auto;
        width: 50rem;
    }
    
    .right-landing-img {
        display: none;
    }
}

@media only screen and (max-width: 660px) {
    .landing-info {
        width: 90%;
    }
    
    .landing-info header {
        font-size: 2.5rem;
    }
}


/* End of Top Landing */


/* Start of Bottom Landing */

.bottom-landing {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 150rem;
    margin: auto;
    align-items: center;
    justify-content: space-around;
    margin-top: 2rem;
}

.bottom-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20rem;
    margin: 2rem;

}

.bottom-card img {
    height: 60px;
}



.bottom-card h1 {
    font-family: Light;
    font-weight: 100;
    color: var(--pink);
    margin: 10px 0 0px 0;
    text-align: center;
}

.bottom-card p {
    color: white;
    text-align: center;
    font-family: Light;
    font-weight: 100;
}

/* End of Bottom Landing */


/* Start of Popular Games */

.popular-games {
    margin-top: 10rem;
}

.popular-games-title {
    display: flex;
    width: 110rem;
    margin: auto;
    flex-direction: row;
    align-items: center;
}

.popular-games-title img{
    height: 50px;
    margin-left: 100px;
}

.popular-games-title h1{
    margin-left: 20px;
    color: var(--white);
    font-size: 35px;
    font-family: Reg;
}

.game-row {
    display: flex;
    margin: auto;
    width: 80%;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark);
    width: 20rem;
    margin: 1rem 1rem;
    transition: transform .7s ease-in-out, opacity .7s ease-in-out;
    border-radius: 18px;
    border: thin solid var(--pink);
}

.card-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.card-bottom {
    width: 100%;
    display: flex;
    padding: 0 0 20px 0;
    justify-content: space-between;
}

.card-bottom a button {
    padding: 1rem 1.5rem;
    margin-right: 1rem;
    border-radius: 10px;
    border: thin solid var(--grey);
    background: none;
    font-family: reg;
    color: white;
    transition: all ease-in-out 150ms;
}

.card-bottom a button:hover {
    border: thin solid var(--purple);
    background-color: var(--pink);
}

.game-card img {
    width: 100%;
}

.game-card h1 {
    color: white;
    font-size: 20px;
    font-family: Bold;
    margin-left: 15px;
}

.game-card p:not(.game-card span) {
    color: white;
    font-size: 15px;
    font-family: reg;
    margin-left: 15px;
}

.game-card span {
    color: var(--pink);
}


@media only screen and (max-width: 800px) {
    
    .popular-games-title {
        width: 100%;
        justify-content: center;
    }
    .popular-games-title img{
        margin: 0;
    }


}


/* End of Popular Games */



/* Start of Media Sections */
.cheat-section {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 80%;
    max-width: 100rem;
    margin-top: 15rem;
}

.cheat-section img {
    width: 40rem;
    transition: transform .7s ease-in-out, opacity .7s ease-in-out;
    border: thin solid white;
}

.section-info {
    transition: transform .7s ease-in-out, opacity 0.7s ease-in-out;
    width: 30rem;
}

.section-info header{
    font-family: Bold;
    color: var(--pink);
    font-size: 50px;
}



.section-info p {
    color: white;
    font-family: reg;
}

@media only screen and (max-width: 1600px) {
    
    .cheat-section {
        width: 90%;
    }

    .section-info header{
        font-size: 2.5vw;
    }
    .section-info p{
        font-size: 1.2vw;
    }


    .section-info{
        width: 25rem;
        margin-left: 2rem;
    }

    .cheat-section img {
        width: 55%;
    }

}

@media only screen and (max-width: 800px) {
    
    .cheat-section {
        flex-wrap: wrap;
    }
    .cheat-section img {
        width: 90%;
        margin: auto;
    }
    .section-info{
       width: 80%;
       margin: 2rem auto auto auto;
    }

    .section-info header{
        font-size: 35px;
        text-align: center;
    }

    .section-info p{
        font-size: 13px;
        text-align: center;
    }

}


/* End of Media Sections */



/* Start of Choose Us */

.choose-us {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 20rem;
    width: 90%;
    padding: 3rem 5%;
    border-top: thin solid var(--pink);
    border-bottom: thin solid var(--pink);
    background-color: var(--dark);
}

.choose-header {
    display: flex;
    width: 100%;
    max-width: 130rem;
    margin: 0 0 4rem 0;
    flex-direction: row;
    justify-content: space-between;
}

.choose-card-row {
    width: 100%;
    max-width: 130rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.choose-us header {
    font-family: Bold;
    color: white;
    font-size: 2rem;
}

.choose-card {
    display: flex;
    flex-direction: column;
    width: 16rem;
}

.choose-card h1 {
    font-size: 30px;
    margin: 0;
    text-align: center;
    color: var(--pink);
    font-family: Bold;
}

.choose-card p {
    color: white;
    text-align: center;
    font-family: Reg;
}

@media only screen and (max-width: 1350px) {
    .choose-card-row {
        align-items: center;
        justify-content: space-around;
    }

    .choose-card {
        width: 20%;
    }

    .choose-card h1 {
        font-size: 25px;
    }
    
    .choose-card p {
        font-size: 15px;
    }
    
}

@media only screen and (max-width: 850px) {
    .choose-card {
        width: 16rem;
        margin-top: 1rem;
    }
    
}

@media only screen and (max-width: 600px) {

    .choose-card {
        width: 20rem;
        margin-top: 1rem;
    }
    
}

/* End of Choose Us */



/* Start of Footer */

footer {
    position: relative;
    background-color: var(--dark);
    bottom: 0;
    margin-top: 10rem;
    width: calc(100% - 5rem);
    padding: 4rem 2.5rem;
}

.footer-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 150rem;
    margin: auto;
}

.footer-info {
    width: 25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.footer-logo img {
    height: 35px;
}

.footer-logo h1 {
    color: var(--white);
    font-size: 18px;
    margin: 0 0 0 15px;
    font-family: ExtraBold;
}

.footer-info p{
    color: var(--grey);
    font-family: Reg;
}

.footer-navigation {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
    margin-left: auto;
    width: 60rem;
}

.footer-navigation ul {
    min-width: 10rem;
    margin-top: 6px;
    list-style-type: none;
}

.list-title {
    margin-bottom: 20px;
    font-family: ExtraBold;
    color: var(--white);
}

.footer-navigation ul li a {
    color: var(--grey);
}

.footer-navigation ul li:not(.list-title) {
    color: var(--grey);
    font-family: Reg;
}

@media only screen and (max-width: 1000px) {
    .footer-info {
        margin-right: auto;
        margin-bottom: 2rem;
    }
    .footer-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        max-width: 150rem;
        margin: auto;
    }
    .footer-navigation {
        margin: 0;
        justify-content: start;
        flex-wrap: wrap;
        width: 100%;
    }
  }

/* End of Footer */