@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Anta&display=swap');

.anta-regular {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    display: inline-block;
    margin-right: 8px;
}

:last-child {
    margin-right: 0;
}

body {
    background: url(../img/bg.png) no-repeat left center fixed;
}

header {
    width: 100%;
}

.bgTop {
    background: url(../img/bg-purple.png) no-repeat top center;
    background-size: cover;
}

.bgCenter {
    background: url(../img/bg-purple.png) no-repeat center;
    background-size: cover;
}

.bgBottom {
    background: url(../img/bg-purple.png) no-repeat bottom center;
    background-size: cover;
}

p,
a {
    font-family: "Advent Pro", sans-serif;
    font-optical-sizing: auto;
    color: #484152;
    font-size: 20px;
    font-weight: 500;
}

.active {
    font-family: "Advent Pro", sans-serif !important;
    font-optical-sizing: auto;
    font-size: 20px;
    font-weight: 500;
    color: #7D44C7 !important;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #7D44C7;
}

.purple {
    color: #7D44C7;
}

.white {
    color: #ffffff;
}

.black {
    background: #393143;
}

.title {
    text-shadow: 0 4px 8px #7D44C7;
}

#logoHeader {
    width: 100%;
    max-width: 196px;
    height: auto;
}

#menuMobile {
    display: none !important;
}

#listMenu,
#socialMenu {
    display: flex;
    align-items: center;
}

#listMenu li a {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    color: white;
    font-size: 20px;
    text-decoration: none;
    margin-right: 16px;
    border-radius: 48px;
    transition: ease-in 0.2s;
}

#listMenu li a:hover {
    background: white;
    color: #7D44C7;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(125, 68, 199, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 48px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 32px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.heroBanner {
    width: 100%;
    max-width: 1600px;
    height: 90vh;
    display: block;
    margin: 0 auto;
    background: url(../img/banner-red-2.png) no-repeat top right;
    background-size: cover;
    position: relative;
}

.gameBanner {
    border-radius: 32px 32px 0 0;
}

.bannerDescription {
    position: absolute;
    left: 0;
    bottom: 5%;
    width: 90%;
    max-width: 520px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0 16px 48px 0;
    padding: 16px 16px 16px 32px;
    transition: ease-in-out 0.3s;
}

.bannerDescription:hover {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.5);
}


.btn-default {
    background-color: white;
    color: #7D44C7;
    border-radius: 8px;
    box-shadow: 0 8px 16px #0004;
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.btn-purple {
    background-color: #7D44C7;
    color: white;
    border-radius: 8px;
    box-shadow: 0 8px 16px #0004;
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;

}

.btn-default:hover {
    background-color: #9f56ff;
    color: white;
    box-shadow: inset 0 4px 4px #0006;
}

.btn-purple:hover {
    background-color: #9f56ff;
    color: white;
    box-shadow: inset 0 4px 4px #0006;
}

.gameCard {
    background-color: white;
    box-shadow: 0 8px 16px #0003;
    border-radius: 16px;
    transition: ease-in-out 0.3s;
}

.gameCard:hover {
    transform: translateY(-10px);
    background-color: #c3b9cf;
}

#badGuys {
    background-color: #1F2022;
    border-radius: 48px;
}

.white-space {
    margin: 48px 0 !important;
}

.embededMedia {
    width: 100%;
    max-width: 720px;
    min-height: 405px;
    height: auto;
    border-radius: 8px;
}

.esrb-badge {
    margin: 48px 0;
    width: 100%;
    max-width: 240px;
}

footer {
    width: 100%;
}

.align-bottom {
    display: flex;
    align-items: bottom;
}



@media only screen and (max-width: 450px) {

    #menuMobile {
        display: block !important;
    }

    #menuDesktop {
        display: none !important;
    }

    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }

    .heroBanner {
        width: 100%;
        height: 80vh;
        background: url(../img/banner_sm.png) no-repeat top center;
        background-size: cover;
        position: relative;
    }
}