/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> UNIVERSAL <<<<<<<<<<<<<<</////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #191919;
    justify-content: center;
    align-items: center;
    margin: 0px;
}

/*Top Navigation Bar*/
.NavBar {
    background-color: black;
    height: 60px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    border-width: 2px;
    border-color: deepskyblue;
    border-bottom-style: solid;
}

/*Bottom Navigation Bar*/
.BottomNavBar {
    background-color: black;
    height: 70px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 101;
    border-width: 2px;
    border-color: deepskyblue;
    border-top-style: solid;
}
/*\--->>>*/
.linkbar {
    margin-left: 55px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
/*\--->>>*/
.linkbar img {
    position: absolute;
    left: 5px;
    top: 19%;
    height: 40px;
}
/*\--->>>*/
/*FIX FOR TOO BIG NAVLINKS: causes different behaviour on each page
.linkbar h2 {
    margin: 0px;
}
*/
.linkbar a {
    text-decoration: none;
    color: white;
}
.linkbar a:hover {
    color: aqua;
}

/*Account*/
.account-info {
    height: 50px;
    display: none;
    justify-content: center;
    margin-left: auto;
    margin-right: 5px;
}
.account-info h2 {
    color: white;
    margin: 0;
    margin-top: 10px;
}
.account-info img {
    margin-top: 3px;
    margin-left: 5px;
    cursor: pointer;
}

/*\--->>>*/
.Home, .About, .Contact {
    align-items: center;
    justify-content: center;
    display: block;
    margin-inline: auto;
    /*background-color: #191919;*/
    width: 100%;
    z-index: 99;
}

/*Mobile Navigation Button*/
.mobile_nav_button {
    display: none;
    position: absolute;
    right: 10px;
    top: 5px;
}
.NavBar .mobile_nav_button img {
    height: 50px;
}

/*Mobile NavBar*/
.mobile_nav_bar {
    z-index: 100;
    position: absolute;
    width: 100%;
    background-color: black;
    text-align: center;
    border: 2px deepskyblue;
    border-bottom-style: solid;
    height: 350px;
    justify-content: center;
    align-items: center;
    display: none; /*CHANGEABLE*/
}
.mobile_nav_bar ul {
    margin: 0px;
    padding: 0;
    list-style: none;
}
.mobile_nav_bar li {
    margin-bottom: 20px;
}
.mobile_nav_bar a {
    text-decoration: none;
    color: white;
    font-size: 30px;
}
.mobile_nav_bar a:hover {
    color: aqua;
}

/*Account Bar*/
.account-bar {
    position: absolute;
    background-color: black;
    display: none; /*CHANGEABLE*/
    width: 180px;
    border-radius: 10px;
    right: 0;
    z-index: 1;
    margin: 5px;
    box-shadow: 0 0 3px 3px #2b2828;
}
.account-bar button {
    display: block;
    margin: 10px;
    margin-inline: auto;
    width: 150px;
    padding: 10px;
    font-size: 16px;
    background-color: #2b2828;
    color: white;
    border-style: none;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-bar button:hover {
    background-color: #2c2c2c;
}
.account-bar button:active {
    background-color: #373737;
}

/*Mobile Resolution Support*/
@media screen and (max-width: 768px)
{
    .navlink{
        display: none;
        visibility: hidden;
    }
    .NavBar .mobile_nav_button {
        display: initial;
    }

    /*Account*/
    .account-info img {
        margin-right: 60px;
    }
    .account-info h2 {
        display: none;
    }
}

/*Default Form Settings*/
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    height: 700px;
    background-color: rgb(35, 26, 66);
    border-radius: 40px;
    box-shadow: 3px 5px 3px 3px black;
    margin-inline: auto;
    margin-top: 15px;
}
.default-form input, .default-form textarea {
    display: block;
    margin-bottom: 10px;
    margin-inline: auto;
    font-family: 'Arial';
    margin-left: 0;
    margin-right: 0;
    border-radius: 5px;
    border-style: none;
    resize: none;
    border: 2px solid black;
    background-color: #00001d;
    color: white;
}
.default-form input:focus, .default-form textarea:focus {
    outline-style: none;
    border-width: 2px;
    border-color: rgb(23, 124, 220);
}
.default-form .upload-btn {
    background-color: #00001d;
}
.upload-btn::-webkit-file-upload-button {
    background-color: #373434;
    color: white;
}
.default-form label {
    color: white;
    font-size: 18px;
    text-align: center;
}
.default-form #title, .default-form #developer, .default-form #release_date {
    width: 450px;
    height: 30px;
    font-size: 28px;
}
.default-form #description {
    width: 450px;
    height: 200px;
    font-size: 24px;
}
.default-form #embed, .default-form #browser_file, .default-form #download_file {
    width: 450px;
    height: 30px;
    font-size: 20px;
    color: whitesmoke;
}
.default-form button {
    width: 450px;
    height: 50px;
    font-size: 30px;
    font-family: 'Zen Dots', sans-serif;
    border: 2px solid white;
    border-radius: 20px;
    cursor: pointer;
    background-color: white;
    color: black;
    background-color: rgba(241, 241, 241, 0.2);
    color: white;
    transition: 0.3s;
}
.default-form button:hover {
    background-color: white;
    color: black;
    transition: 0.5s;
}
.error-container {
    color: red;
    position: absolute;
    bottom: 1%;
}

/*Mobile Resolution Support*/
@media screen and (max-width: 1368px) {
    .form-container {
        width: 50%;
    }
}
@media screen and (max-width: 768px)
{   
    .form-container {
        width: 100%;
        height: 100%;
        border-radius: 0px;
        margin: 0;
    }
    .default-form {
        width: 95%;
    }
    .default-form #title, .default-form #developer, .default-form #release_date {
        width: 95%;
        height: 30px;
        font-size: 24px;
    }
    .default-form #embed, .default-form #browser_file, .default-form #download_file {
        width: 95%;
        height: 30px;
        font-size: 20px;
        color: whitesmoke;
    }   
    .default-form #description {
        width: 95%;
        height: 200px;
        font-size: 24px;
    }
    .default-form button {
        width: 95%;
        height: 40px;
        font-size: 30px;
        margin-bottom: 10px;
        font-family: 'Zen Dots', sans-serif;
    }
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> HOME PAGE <<<<<<<<<<<<<<</////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*Introduction Text Box*/
.introduction-box {
    width: 100%;
    color: white;
    text-align: center;
    margin-inline: auto;
}
.introduction-box h1 {
    font-size: 62px;
}
.introduction-box p {
    font-size: 38px;
    margin-top: -30px;
}

/*Main Buttons*/
.MainButton {
    transition: 0.3s;
    font-family: Castellar, 'Montserrat', sans-serif;
    font-size: 2rem;
    padding: 2rem 3rem;
    border-radius: 1rem;
    border: none;
    text-align: center;
    display: inline-block;
    border: none;
    cursor: pointer;
    margin: 20px;
    position: relative;  
    color: black;
    
}
.MainButton:hover {
    transition: 0.3s;
}
.MainButton.browse {
    background-color: cyan;
    box-shadow: 0 0 2px cyan, 0 0 12px cyan;
}
.MainButton.browse:hover {
    box-shadow: 0 0 5px cyan, 0 0 25px cyan;
    color: darkblue;
}
.MainButton.upload {
    background-color: magenta;
    box-shadow: 0 0 2px magenta, 0 0 12px magenta;
}
.MainButton.upload:hover {
    box-shadow: 0 0 5px magenta, 0 0 25px magenta;
}
.MainButton.dashboard {
    display: none;
    background-color: white;
    box-shadow: 0 0 2px white, 0 0 12px white;
}
.MainButton.dashboard:hover {
    box-shadow: 0 0 5px white, 0 0 25px white;
    color: rgb(0, 0, 43);
}

/*Images and Videos*/
.images-box {
    text-align: center;
    margin-top: 30px;
}
.images-box img, .images-box iframe {
    position: initial;
    width: 800px;
    height: 450px;
    display: inline-block;
    margin-inline: auto;
    margin: 5px;
    border: 2px solid deepskyblue;
}
.images-box img:hover {
    border-color: mediumpurple;
}
.images-box iframe:hover {
    border-color: mediumpurple;
}
.images-box p {
    font-family: 'Zen Dots';
    color: white;
    background-color: #242424;
}

/*Mobile Resolution Support*/
@media screen and (max-width: 1568px) {
    .introduction-box h1 {
        font-size: 56px;
    }

    .introduction-box p {
        font-size: 34px;
    }
}
@media screen and (max-width: 980px) {
    .introduction-box {
        width: 95%;
    }
}
@media screen and (max-width: 768px) {
    .introduction-box {
        width: 100%;
    }
    .introduction-box h1 {
        font-size: 48px;
    }
    .introduction-box p {
        font-size: 24px;
    }

    .MainButton {
        font-size: 1.5rem;
        width: 70%;
        margin: 10px;
        padding: 2rem 1rem;
    }

    .images-box {
        margin-top: 10px;
        padding: 15px;
    }
    .images-box img, .images-box iframe {
        width: 95%;
        height: initial;
    }
    .images-box iframe {
        height: 12rem;
    }
}
@media screen and (max-width: 468px) {
    .introduction-box {
        width: 100%;
    }
    .introduction-box h1 {
        font-size: 40px;
    }
    .introduction-box p {
        font-size: 22px;
    }
    .MainButton {
        width: 90%;
    }
    .about-text-box img {
        width: 200px;
    }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> ABOUT PAGE <<<<<<<<<<<<<</////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*About Text Box*/
.about-text-box {
    position: initial;
    color: white;
    text-align: center;
    width: 88%;
    margin-inline: auto;
    border: 2px solid deepskyblue;
    border-radius: 40px;
    background-color: black;
    margin-top: 10px;
}
.about-text-box:hover {
    border-color: mediumpurple;
}
.about-text-box h1 {
    text-align: center;
    font-size: 62px;
}
.about-text-box p {
    font-size: 30px;
}

/*Mobile Resolution Support*/
@media screen and (max-width: 768px)
{
    .about-text-box {
        width: 95%;
    }
    .about-text-box h1 {
        font-size: 30px;
        padding: 10px;
    }
    .about-text-box p {
        font-size: 16px;  
        padding: 10px;
    }
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> CONTACT PAGE <<<<<<<<<<<</////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*Contact Text Box*/
.contact-text-box {
    position: initial;
    color: white;
    text-align: center;
    width: 88%;
    margin-inline: auto;
    border: 2px solid deepskyblue;
    border-radius: 40px;
    background-color: black;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact-text-box:hover {
    border-color: mediumpurple;
}
.contact-text-box h1 {
    text-align: center;
    font-size: 62px;
}
.contact-text-box p {
    font-size: 30px;
}
.contact-text-box a {
    text-decoration: none;
    color: deepskyblue;
}

/*Mobile Resolution Support*/
@media screen and (max-width: 768px) {
    .contact-text-box {
        width: 95%;
    }
    .contact-text-box h1 {
        font-size: 30px;
    }
    .contact-text-box p {
        font-size: 18px;
        padding: 10px;
    }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> GAMES PAGE <<<<<<<<<<<<<<<////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*Game List*/
.game-list {
    margin-top: 20px;
    text-align: center;
    min-height: 100vh;
}
.game-list .placeholder {
    height: 150px;
    width: 90%;
    background-color: rgb(62, 62, 62);
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    box-shadow: none;
}
.game-list .placeholder p {
    color: white;
}

/*Featured Game*/
.featured-game {
    height: 300px;
    width: 500px;
    background-color: black;
    border: 3px solid deepskyblue;
    border-radius: 20px;
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    transition: 0.3s;
}
.featured-game:hover {
    box-shadow: 0 0 5px cyan, 0 0 25px cyan;
    transition: 0.3s;
}
.featured-game h3 {
    background-color: rgba(0, 0, 0, 0.7);
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    color: white;
    position: relative;
    bottom: 16%;
    transition: 0.3s ease-in-out;
    height: 50px;
}
.featured-game:hover h3 {
    bottom: 20%;
    transition: 0.5s ease-in-out;
}
.featured-game img {
    height: 100%;
    width: 100%;
}

/*Game Information Popup*/
.game-information {
    display: none;
    height: 700px;
    width: 600px;
    background: #2b2828;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 10px;
    box-shadow: 3px 3px 5px 5px rgb(15, 14, 14, 0.7);
    overflow: auto;
}
.game-information .topbar {
    width: 100%;
    height: 50px;
    background-color: #151515;
}
.game-information #titleID {
    position: fixed;
    top: 2px;
    left: 5px;
}
/*\\\--->>>*/
.informations {
    background-color: #373434;
    display: block;
}
.informations #title {
    color: white;
    margin-left: 5px;
    margin-top: 0px;
}
.informations #description {
    color: white;
    margin-left: 5px;
    font-size: 22px;
}
.game-information .stats {
    color: white;
    margin-left: 5px;
}
/*\\\--->>>*/
.action-buttons {
    margin-top: 15px;
    display: none;
}
.game-information .action_btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    justify-content: center;
    width: 50%;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: none;
    margin-inline: auto;
    font-size: 24px;
}
.action_btn.blue {
    background-color: deepskyblue;
    color: black;
}
.action_btn.blue:hover {
    transition: 0.3s;
    box-shadow: 0 0 5px cyan, 0 0 12px cyan, 0 0 15px cyan, 0 0 25px cyan, 0 0 55px cyan;
}

.action_btn.purple {
    background-color: #6e00ff;
    color: white;
}
.action_btn.purple:hover {
    transition: 0.3s;
    box-shadow: 0 0 5px #ce0bff, 0 0 12px #ce0bff, 0 0 15px #ce0bff, 0 0 25px #ce0bff, 0 0 55px #ce0bff;
}
.action_btn.disabled {
    pointer-events: none;
    background-color: grey;
}

/*Loading Animation*/
.loading {
    margin: auto;
    border: 20px solid #8d8d8d;
    border-radius: 50%;
    border-top: 20px solid rgb(35, 35, 35);
    width: 50px;
    height: 50px;
    animation: spinner 1s ease-in-out infinite;
    margin-top: 250px;
}
@keyframes spinner 
{
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/*Search*/
.search-bar {
    position: relative;
}
.search-bar form input {
    margin-top: 18px;
    height: 20px;
    width: 300px;
    border-radius: 10px;
    border: 5px solid white;
    font-size: larger;
}
.search-bar form input:focus {
    outline: none;
}
.search-bar form button {
    padding-top: 10px;
    width: 30px;
    height: 30px;
    background-color: black;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-style: none;
}
.search-bar form button:active {
    border-style: none;
}
.search-bar form button img {
    height: 30px;
    margin-top: 6px;
    margin-left: 313px;
}
/*Mobile Search*/
.mobile-search-bar {
    display: none;
    position: relative;
    width: 100%;
    height: 60px;
    text-align: center;
}
.mobile-search-bar form input {
    margin-top: 5px;
    height: 20px;
    width: 90%;
    border-radius: 10px;
    border: 5px solid white;
    font-size: larger;
}
.mobile-search-bar form input:focus {
    outline: none;
}
.mobile-search-bar form button {
    display: none;
}

/*Mobile Resolution Support*/
@media screen and (max-width: 868px) {
    .search-bar {
        display: none;
    }
    .mobile-search-bar {
        display: initial;
    }
}
@media screen and (max-width: 768px)
{   
    .game-list {
        margin-top: 5px;
    }
    .featured-game {
        width: 11rem;
        height: 11rem;
        margin: 2px;
        border: none;
    }
    .featured-game h3 {
        bottom: 20%;
        font-size: 12px;
    }
    .featured-game:hover h3 {
        bottom: 25%;
        transition: 0.5s ease-in-out;
    }
    .game-information {
        width: 100%;
        top: 0%;
        z-index: 1000;
        height: 100%;
        border-radius: 0px;
    }
    .game-information .action_btn {
        width: 80%;
    }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> PLAY PAGE <<<<<<<<<<<<<<<////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container iframe{
    width: 100%;
    height: 100%;
    border: none;
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> UPLOAD GAME <<<<<<<<<<<<<<<///////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.form-container.upload {
    left: 50%;
    width: 40%;
    transform: translate(-50%,2%);
    position: absolute;
    text-align: center;
    height: 680px;
    display: block;
}
.default-form.upload {
    margin-top: 10px;
}
.default-form.upload input, .default-form.upload textarea {
    width: 50%;
    height: 35px;
    font-size: 28px;
    margin-bottom: 15px;
    margin-inline: auto;;
}
.default-form.upload .upload-btn {
    background-color: #00001d;
}
.default-form.upload label {
    color: white;
    font-size: 18px;
}
.default-form.upload #title, .default-form.upload #developer, .default-form.upload #release_date {
    width: 70%;
    height: 30px;
    font-size: 26px;
}
.default-form.upload #description {
    width: 70%;
    height: 200px;
    font-size: 20px;
}
.default-form.upload #embed, .default-form.upload #browser_file, .default-form.upload #download_file {
    width: 70%;
    height: 30px;
    font-size: 20px;
    color: whitesmoke;
}
.default-form.upload button {
    width: 70%;
}
.default-form.upload button:hover {
    background-color: white;
    color: black;
    transition: 0.5s;
}
.form-container.upload .error-container {
    position: relative;
    margin-inline: auto;
    margin-top: 10px;
}
/* optional txt */
.default-form.upload label p {
    display: inline-block;
}
/**/

/*Mobile Resolution Support*/
@media screen and (max-width: 1368px) {
    .form-container.upload {
        width: 70%;
    }
}
@media screen and (max-width: 768px)
{   
    .form-container.upload {
        transform: translate(-50%,0%);
        width: 90%;
        height: initial;
        border-radius: 0px;
        margin: 0;
    }
    .default-form.upload {
        width: 95%;
    }
    .default-form.upload label {
        font-size: 15px;
    }
    .default-form.upload #title, .default-form.upload #developer, .default-form.upload #release_date {
        width: 95%;
        height: 30px;
        font-size: 24px;
    }
    .default-form.upload #embed, .default-form.upload #browser_file, .default-form.upload #download_file {
        width: 95%;
        height: 30px;
        font-size: 20px;
        color: whitesmoke;
    }   
    .default-form.upload #description {
        width: 95%;
        height: 200px;
        font-size: 24px;
    }
    .default-form.upload button {
        width: 95%;
        height: 40px;
        font-size: 24px;
        margin-bottom: 10px;
    }
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> REGISTER <<<<<<<<<<<<<<<//////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.form-container.register {
    left: 50%;
    width: 50%;
    transform: translate(-50%,2%);
    position: absolute;
    text-align: center;
    height: 730px;
    display: block;
}
.form-container.register img {
    margin-top: 30px;
}
.form-container.register a {
    text-decoration: none;
}
.form-container.register p {
    color: white;
}
.default-form.register input::placeholder{
    color: #ffffff34;
    text-align: center;
}
/* optional txt */
.default-form.register label p {
    display: inline-block;
}
/**/
.default-form.register #username, .default-form.register #email, 
.default-form.register #password, .default-form.register #website,
.default-form.register #first_name, .default-form.register #last_name {
    width: 50%;
    height: 35px;
    font-size: 28px;
    margin-bottom: 20px;
    margin-inline: auto;
}
.privacy-policy-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.default-form.register #privacy_policy {
    height: 18px;
    width: 18px;
    margin: 0;
}
.form-container.register .default-form button {
    width: 50%;
}
.form-container.register .error-container {
    position: relative;
    margin-inline: auto;
    margin-top: 10px;
}
@media screen and (max-width: 1000px) 
{
    .form-container.register img {
        width: 400px;
        height: initial;
    }
}
@media screen and (max-width: 768px)
{   
    .form-container.register {
        transform: translate(-50%,0%);
        height: auto;
        width: 90%;
        border-radius: 10px;
        margin: 0;
    }
    .form-container.register img {
        width: 300px;
        height: initial;
    }
    .default-form.register #username, .default-form.register #email, 
    .default-form.register #password, .default-form.register #website,
    .default-form.register #first_name, .default-form.register #last_name {
        width: 90%;
        height: 35px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    .form-container.register .default-form button {
        width: 90%;
        font-size: 24px;
    }
}
@media screen and (max-width: 325px) 
{
    .form-container.register img {
        width: 250px;
        height: initial;
    }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> LOGIN <<<<<<<<<<<<<<</////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.form-container.login {
    left: 50%;
    width: 50%;
    transform: translate(-50%,25%);
    position: absolute;
    text-align: center;
    height: 450px;
    display: block;
}
.form-container.login img {
    margin-top: 30px;
}
.default-form #email, .default-form #password {
    width: 50%;
    height: 35px;
    font-size: 28px;
    margin-inline: auto;
    margin-bottom: 20px;
}
.form-container.login .default-form button {
    width: 50%;
}
.form-container.login .error-container {
    position: relative;
    margin-inline: auto;
    margin-top: 10px;
}
.form-container.login a {
    text-decoration: none;
}
.form-container.login p {
    color: white;
}
@media screen and (max-width: 1000px) 
{
    .form-container.login img {
        width: 400px;
        height: initial;
    }
}
@media screen and (max-width: 768px)
{   
    .form-container.login {
        transform: translate(-50%,20%);
        width: 90%;
        border-radius: 10px;
        margin: 0;
    }
    .form-container.login img {
        width: 300px;
        height: initial;
    }
    .default-form {
        margin-inline: auto;
    }
    .default-form #email, .default-form #password {
        width: 90%;
        height: 35px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    .form-container.login .default-form button {
        width: 90%;
        font-size: 24px;
    }
}
@media screen and (max-width: 325px) 
{
    .form-container.login img {
        width: 250px;
        height: initial;
    }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////>>>>>>>>>>>>> DASHBOARD <<<<<<<<<<<<<<</////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*Show games*/
.NavBar.dashboard {
    background-color: #444444;
    border-style: none;
}
.BottomNavBar.dashboard {
    background-color: #444444;
    border-style: none;
}
.my-game {
    height: 300px;
    width: 500px;
    background-color: black;
    display: inline-block;
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0px 0px 5px 5px #333333;
    transition: 0.2s;
}
.my-game:active {
    box-shadow: 0px 0px 0px 0px #333333;
    transition: 0.2s;
}
.my-game h3 {
    position: relative;
    background-color: #00001d98;
    color: white;
    bottom: 15%;
}
.my-game img {
    width: 100%;
    height: 100%;
}
.mobile_nav_bar.dashboard {
    background-color: #333333;
    border-width: 0;
}

/*Edit Game*/
.edit-game-panel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: white;
    display: none; /*CHANGEABLE*/
}
.edit-game-panel .panel-container {
    display: flex;
    margin: 40px;
    background-color: rgb(227, 227, 227);
    border-radius: 30px;
    width: 70%;
    margin-inline: auto;
    overflow: hidden;
}
.edit-game-form {
    margin: 20px;
    display: grid;
    width: 50%;
    height: 100%;
}
.edit-game-form label {
    text-align: left;
}
.edit-game-form input {
    height: 30px;
    margin-bottom: 30px;
    font-size: 20px;
}
.edit-game-form textarea {
    height: 300px;
    resize: none;
    margin-bottom: 30px;
    font-size: 18px;
}
.edit-game-form button {
    height: 50px;
    cursor: pointer;
    margin-bottom: 30px;
    font-size: 24px;
}
/**/
.edit-game-panel .game-info {
    background-color: #b7b7b7;
    width: 50%;
    height: 100%;
    justify-content: center;
    text-align: center;
}
.game-info .embed-display {
    height: 300px;
    width: 500px;
    margin: 30px;
    margin-inline: auto;
    border: 5px solid white;
}
.game-info .analystics {
    background-color: #636363;
    height: 30%;
    margin-inline: auto;
    border-bottom: 37px solid #3e3e3e;
}
.analystics h2 {
    color: white;
    background-color: #3e3e3e;
    margin: 0;
    margin-bottom: 15px;
    font-size: 30px;
}
.analystics p {
    color: white;
    margin: 0;
    margin-bottom: 10px;
    font-size: 20px;
}
.game-info .game-settings {
    height: 100%;
    background-color: rgb(216, 216, 216);
}
.game-settings h2 {
    margin: 0;
    margin-bottom: 15px;
}

/*Mobile Resolution Support*/
@media screen and (max-width: 768px)
{
    .my-game {
        width: 95%;
        margin: 2px;
        box-shadow: none;
    }
    .edit-game-panel {
        width: 100%;
    }
    .edit-game-panel .panel-container {
        width: 100%;
        margin: 0;
        border-radius: 0px;
        display: block;
    }
    .panel-container .edit-game-form {
        width: 95%;
        height: 50%;
        margin-inline: auto;
    }
    /**/
    .edit-game-panel .game-info {
        background-color: #b7b7b7;
        width: 100%;
        height: 50%;
        justify-content: center;
        text-align: center;
        margin-top: 100px;
    }
    .game-info .embed-display {
        width: 95%;
        height: 30%;
        margin: 10px;
        margin-inline: auto;
        border: 5px solid white;
    }
    /**/
    .game-info .analystics {
        background-color: #636363;
        height: 25%;
        margin-inline: auto;
    }
    .analystics h2 {
        color: white;
        background-color: #3e3e3e;
        margin: 0;
        margin-bottom: 15px;
        font-size: 24px;
    }
    .game-settings h2 {
        margin: 0;
        margin-bottom: 5px;
    }
    /**/
    .edit-game-form input{
        width: 95%;
    }
    .edit-game-form button {
        width: 95%;
    }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////>>>>>>>>>>>>> MANAGE ACCOUNT <<<<<<<<<<<<<<<///////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*Manage Account Form*/
.manage-account-form-container {
    position: absolute;
    border: 2px solid black;
    border-radius: 20px;
    background-color: whitesmoke;
    left: 50%;
    width: 50%;
    transform: translate(-50%,10%);
    text-align: center;
    display: block;
}
.manage-account-form {
    text-align: center;
    margin-inline: auto;
    margin: 15px;
}
.manage-account-form h2 {
    margin: 15px;
}
.manage-account-form input {
    display: block;
    margin-inline:auto;
    width: 30%;
    height: 20px;
}
.manage-account-form button {
    width: 30%;
    height: 30px;
}
.confirm-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    width: 50%;
    margin-inline: auto;
}
.confirm-container #confirm_delete_acc {
    width: 20px;
    height: 20px;
}

/*Mobile Resolution Support*/
@media screen and (max-width: 1168px)
{
    .manage-account-form input {
        width: 50%;
        height: 20px;
    }
    .manage-account-form button {
        width: 50%;
        height: 30px;
    }
    .confirm-container {
        gap: 10px;
        margin-bottom: 10px;
        width: 65%;
    }
}
@media screen and (max-width: 768px)
{   
    .navlink.account.username {
        display: initial;
        visibility: visible;
    }
    .manage-account-form-container {
        position: absolute;
        border: 2px solid black;
        border-radius: 0px;
        background-color: whitesmoke;
        width: 100%;
        transform: translate(-50%,0%);
        text-align: center;
        display: block;
    }
    .manage-account-form {
        text-align: center;
        margin-inline: auto;
        margin: 15px;
    }
    .manage-account-form input {
        width: 70%;
        height: 20px;
    }
    .manage-account-form button {
        width: 70%;
        height: 30px;
    }
    .confirm-container {
        gap: 10px;
        margin-bottom: 10px;
        width: 80%;
    }
}

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////>>>>>>>>>>>>> AUTHORIZATION <<<<<<<<<<<<<<<////////////////////////////////////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.form-container.auth {
    left: 50%;
    width: 40%;
    transform: translate(-50%,50%);
    position: absolute;
    text-align: center;
    height: 350px;
    display: block;
}
.form-container.auth img {
    margin-top: 30px;
}
.default-form.auth #password {
    width: 60%;
    height: 35px;
    font-size: 28px;
    margin-inline: auto;
    margin-bottom: 20px;
}
.form-container.auth .default-form.auth button {
    width: 60%;
}
.form-container.auth .error-container {
    position: relative;
    margin-inline: auto;
    margin-top: 10px;
}
.form-container.auth a {
    text-decoration: none;
}
.form-container.auth p {
    color: white;
}
@media screen and (max-width: 1168px) 
{
    .form-container.auth img {
        width: 400px;
        height: initial;
    }
}
@media screen and (max-width: 1000px)
{   
    .form-container.auth {
        transform: translate(-50%,40%);
        width: 90%;
        border-radius: 10px;
        margin: 0;
    }
    .form-container.auth img {
        width: 300px;
        height: initial;
    }
    .default-form.auth {
        margin-inline: auto;
    }
    .default-form.auth #password {
        width: 90%;
        height: 35px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    .form-container.auth .default-form button {
        width: 90%;
        font-size: 24px;
    }
}
@media screen and (max-width: 325px) 
{
    .form-container.auth img {
        width: 250px;
        height: initial;
    }
}