/*CSS variables section*/
:root {
    background-color: rgba(0, 0, 21, 1);
    --background: url("https://pbs.twimg.com/media/GLZbSTTbkAA0FF2?format=png&name=small");
}

body {
    filter: blur(0);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    transition-duration: 1s;
    animation: intro 1s;
    padding-top: 70px;
}

/*Extra Large screens - Extra large desktops*/
header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.heeder-large-screen {
    display: flex !important;
    justify-content: space-evenly !important;
    color: #f7f;
    font-size: 18px !important;


}

#navDemo {
    background-color: #000015;

}

#navDemo a {
    font-size: 13px !important;
    color: #f7f;
}

.hero {
    height: 650px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #000015;

}

.hero-description {
    height: 650px;
    background-color: rgba(0, 0, 21, .7);
    display: flex;
}

.hero-text {
    width: 80% !important;
    margin: auto !important;
    display: flex;
    flex-wrap: wrap;
}


.hero-text p {
    color: white;
    width: 50%;
}

.hero-title {
    /* padding-top:80px; */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 80px;
    color: #f7f;

    text-align: center;

}

.social {
    width: 100%;
}

.icons {
    font-size: 20px;
    letter-spacing: 5px;

}

main {
    width: 80% !important;
    margin: auto !important;
}

.title {
    color: white;
    font-weight: 600;
    font-size: 40px;
    ;
    margin: 50px 0px;
    text-align: center;
    text-transform: uppercase;

}


.game-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h3 {
    color: white;
    text-align: center;
}

.games {
    display: flex;

    flex-wrap: wrap;
    align-items: center;
    /* background-color:	rgba(0, 0, 47,0.3); */
    justify-content: space-evenly;
}

.game-list {
    margin: 30px;
    ;
    padding: 20px;
    height: 200px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid gray;
    background: rgba(255, 75, 255, 0.1);
    box-shadow: 0 8px 40px 0 rgba(45, 57, 231, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.game-list:hover {
    transform: scale(1.05);
}

.store {
    margin-top: 50px;
}

.game-store {
    margin-top: 20px !important;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.game-image {
    width: 300px;
    height: 180px;

}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-store-list {
    width: 300px;
    height: 300px;
    margin: 20px;
    overflow: hidden;
    border-top: none;

    -webkit-box-shadow: 0 8px 40px 0 rgba(45, 57, 231, 0.37);
    box-shadow: 0 8px 40px 0 rgba(45, 57, 231, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid blueviolet;
    color: white;

}

.store-text-description {

    padding-left: 20px;
    display: flex;
    flex-direction: column;

}

h4 {
    color: white;
    font-weight: 700;
}

.event-hero {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 75, 255, 0.1);
    justify-content: space-evenly;
    align-items: center;
    padding: 50px;
    margin-top: 50px;
    border: 1px solid black;
    border-radius: 10px;

}

.event-text {
    width: 50%;
    color: #f7f;

}

.event-title {
    font-size: 40px;
    text-transform: uppercase;

    font-weight: 600;


}

.event-image {
    width: 400px;
    height: 500px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.event-text p {
    color: white;
}

.contact {


    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.contact-list {
    margin-top: 15px !important;
    color: white;
}

h5 {
    color: white;
}

span {
    padding-right: 10px;
}

.email-contact {
    width: 80%;
    color: gray;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}






/*General CSS and CSS reset*/

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}










/* ____________________________________________________________________*/
/*MEDIA QUERIES*/
/*Large screens - Desktop*/
@media screen and (max-width: 1500px) {
    .hero {
        height: 550px !important;
    }

    .hero-description {
        height: 550px
    }

    .hero-title {
        font-size: 50px;
    }
}

/*medium screens - Laptops*/
@media screen and (max-width: 1024px) {
    main {
        width: 100% !important;
        margin: auto !important;
    }

}

/*Small screens - tablets*/
@media screen and (max-width: 768px) {
    .heeder-large-screen {
        display: block !important;
    }

    header a {
        font-size: 14px;
    }

    .hero {
        height: 400px !important;
    }

    .hero-description {
        height: 400px;
        background-color: rgba(0, 0, 21, .7);


    }

    .hero-title {
        font-size: 35px;
        ;

    }

    .hero-text p {
        width: 80%;
        ;
        font-size: 13px;
    }

    .title {
        text-align: center;
        font-size: 30px;
    }

    .event-text {
        width: 80%;
        color: blueviolet;

    }

    .event-text p {
        font-size: 13px;
    }

    .event-title {
        font-size: 30px;
        text-transform: uppercase;
        font-weight: 600;


    }

    .event-hero {
        width: 80%;
        margin: auto;
    }

    .event-image {
        width: 250px;
        height: 400px;
    }

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-list {
        width: 300px;
    }

    .contact {
        justify-content: space-around;
    }

    .contact-list p {
        font-size: 14px;

    }

    h5 {
        font-size: 17px;
    }

}

.nega {
    filter: invert();
}

.icon {
    height: 30px;
    width: 30px;
    filter: invert();
}

.circle {
    border-radius: 1000px;
}

.joinuscnt {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.joinus {
    display: block;
    border-radius: 100px;
    border: #fff solid 1px;
    box-shadow: 0 0 10px;
    font-size: 40px;
    padding: 20px;
    background: #000015;
    color: #fff;
    transition: .1s;
}

.joinus:hover {
    color: #f2f;
    text-shadow: 0 0 10px;
}

body:has(.joinus:hover) p,
body:has(.joinus:hover) h1,
body:has(.joinus:hover) h2,
body:has(.joinus:hover) main,
body:has(.joinus:hover) [background],
body:has(.joinus:hover) span {
    filter: blur(10px);
    animation: outro .2s;
}

body:has(.joinus) p,
body:has(.joinus) h1,
body:has(.joinus) h2,
body:has(.joinus) main,
body:has(.joinus) [background],
body:has(.joinus) span {
    animation: intro .2s;
}



/*Extra small screens - phones*/
@media screen and (max-width: 480px) {
    .heeder-large-screen {
        display: block !important;
    }

    .hero {
        height: 450px !important;
    }

    .hero-description {
        height: 450px;
        background-color: rgba(0, 0, 21, .7);

    }

    .hero-title {
        font-size: 30px;
        padding-top: 70px;
    }

    .hero-text p {
        width: 100%;
        font-size: 13px;
    }

    .title {
        text-align: center;
        font-size: 25px;
    }

    .event-text {
        width: 100%;
        color: blueviolet;

    }

    .event-text p {
        font-size: 13px;
    }

    .event-title {
        font-size: 30px;
        text-transform: uppercase;
        font-weight: 600;


    }

    .event-hero {
        width: 90%;
        margin: auto;
    }

    .event-image {
        width: 250px;
        height: 400px;
    }

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-list {
        width: 300px;
        padding: 25px;
        border: 1px solid rgba(49, 45, 45, 0.5);
        border-radius: 10px;
    }

    .contact-list p {
        font-size: 12px;

    }

    h5 {
        font-size: 15px;
    }

    p {
        font-size: 12px;
    }

}

@keyframes intro {
    from {
        filter: blur(10px);
    }

    to {
        filter: blur(0);
    }
}

@keyframes outro {
    from {
        filter: blur(0);
    }

    to {
        filter: blur(10px);
    }
}

[background] {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    z-index: -1010;
    filter: blur(2px);
}

.hero>:not(img) {
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.hero-text {
    background: #00000050;
    border-radius: 50px;
    padding: 50px;
    border: solid #ff33ff50 1px;
    box-shadow: 0 0 50px #faf;
}