@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    user-select: all white;
}

body {
    background-color: black;
    color: white;
    overflow: hidden;
}

::selection {
    background: #ffd500;
    color: #181818;
}

canvas {
    display: block;
}

.container {
    width: 100%;
}

.left {
    width: 22%;
    padding: 0px;

}

.right {
    width: 78%;
    max-height: 98.5vh;
}

.logo img {
    width: 19.8vw;
}

.home ul li {
    display: flex;
    gap: 15px;
    width: 18px;
    list-style: none;
    padding-top: 5px;
    font-weight: bold;
}

.social {
    text-align: center;
    padding: 20px 0px;
    font-size: 40px;
}

.social .fa-brands {
    padding: 17px 25px;
}

#youtube,
#tiktok,
#telegram {
    box-shadow: 2px 2px 2px #00000080,
        10px 10px 12px #00000080,
        inset 2px 2px 10px #00000080,
        inset 2px 2px 10px #00000080,
        inset 2px 2px 10px #00000080,
        inset 2px 2px 10px #00000080;
    text-shadow: 0px 0px 50px #0072ff,
        0px 0px 100px #0072ff,
        0px 0px 150px #0072ff,
        0px 0px 200px #0072ff;
    animation: animate 3s linear infinite;
}

@keyframes animate {
    from {
        filter: hue-rotate(0deg);
    }

    to {
        filter: hue-rotate(360deg);
    }
}

#youtube {
    color: white;
    animation-delay: 0.3s;
}

#telegram {
    color: white;
    animation-delay: 0.7s;
}

#tiktok {
    color: white;
    animation-delay: 1s;
}

.heading {
    display: flex;
    gap: 10px;
    width: 100%;
    list-style: none;
    padding-top: 8px;
    padding-bottom: 15px;
    justify-content: center;
    font-weight: bold;
    font-size: 17px;
}

.heading img {
    width: 20px;
}

.heading a {
    text-decoration: none;
    color: white;
}

.fa-home {
    background-color: #FFF8E0;
    padding: 5px 10px;
    border-radius: 15px;
    color: #181818;
    letter-spacing: 1px;
}

.fa-home:hover {
    background-color: #ffeea3;
}

.half-width {
    width: 85%;
    margin: 0 auto;
}

.categ {
    padding: 20px 2px;
    max-height: 47vh;
    overflow-y: scroll;
}

.categ h2 {
    padding: 11px 0px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 110;
}

.categ ul {
    list-style: none;
}

.categ li {
    position: relative;
}

.categ a {
    display: block;
    text-decoration: none;
    font-size: 17px;
    color: #fff;
}

.categ a:hover {
    background: deeppink;
    border-radius: 19px;
}

.categ>li {
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
}

.categ>li:first-child {
    margin-left: 0;
}

.categ .dropdown {
    text-align: left;
    width: 90%;
    /* display: none;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;       */
}

.dropdown {
    padding: 2px 10px;
    display: inline-block;
    position: relative;
}

.dropdown h3 {
    padding: 10px 25px;
    font-weight: lighter;
}

.home {
    min-height: 22.5vh;
    position: relative;
}

.library {
    min-height: 67vh;
    position: relative;
}

.footer {
    display: flex;
    font-size: 0.8rem;
    gap: 0px;
    position: absolute;
    bottom: 10px;
    text-align: center;
    padding-bottom: 1px;
}

.footer a {
    padding: 1px;
    color: gray;
    text-decoration: none;
}

.footer a:hover {
    color: #67D3FF;
}

.topnav {
    display: flex;
    background-color: #FFC300;
    border-radius: 11px;
}

.hamburger {
    padding: 10px;
    display: none;
}

.close {
    display: none;
}

.search-bar {
    border: 2px solid #FFD13B;
    background: rgba(0, 66, 250, 0.1);
    display: flex;
    border-radius: 15px;
    height: 35px;
    width: 35px;
    padding: 1px;
    position: relative;
    transition: width 300ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
    overflow: hidden;
}

.input {
    flex-grow: 1;
    font-size: 1.1rem;
    color: black;
    padding: 0 0.5rem;
    border: 0;
    background: #ECEEF8;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;

    &:focus {
        outline: 0;
    }
}

.submit {
    font-size: 1.1rem;
    cursor: pointer;
    border: 0;
    background: transparent;
    border-radius: 10%;
    background-color: black;
    color: white;
    width: 37px;
    height: 35px;
    margin-left: auto;
    transition: background 150ms ease-in-out;
}

.search-bar:focus-within {
    width: 45%;
}

.search-bar:focus-within .input {
    opacity: 1;
    cursor: initial;
    width: 89.5%;
}

.search-bar:focus-within .submit {
    background: red;
    color: white;
}

.search-bar:focus-within .submit:hover {
    background: #12BAB7;
    color: white;
}

#root {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.box {
    margin: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rebeccapurple;
    padding: 15px;
}

.img-box {
    width: 100%;
    height: 176px;
    display: flex;
    object-fit: cover;
    object-position: center;
}

.bottom {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}

.h6 {
    font-size: 30px;
    color: orangered;
}

.maincontent {
    overflow-y: scroll;
    max-height: 88.3vh;
}

.recentgame {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px 10px;
    margin: 16px 0px;
}

.gameplaying a {
    border-radius: 30px;
    display: flex;
    width: 34dvw;
    margin: 10px 2px;
    padding: 8px 15px;
    align-items: center;
    background-color: #F5C639;
    color: white;
    text-decoration: none;
    transition: 0.5s;
    font-size: 1.2rem;
    border: 1px solid black;
}

.subtitle {
    opacity: 0;
    transition: 0.5s;
    font-size: 1rem;
}

.gameplaying a:hover .subtitle{
    opacity: 1;
}

.gameplaying a:hover{
    background-color: black;
    color: rgb(0, 158, 201);
    font-size: 1.1rem;
    border: 1px solid white;
}

.gameicon {
    height: 15vh;
    border-radius: 20px;
    border: 2px solid black
}

.gametitle {
    padding: 0px 15px;
    line-height: 1.9em;
    justify-content: center;
}

.gametitle h2,
h4 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#categs {
    font-size: 29px;
    margin-top: 15px;
    margin-left: 25px;
}

.filmWare {
    padding: 0px 5px;
}

.cardContainer {
    margin: 18px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cardContainer a {
    display: flex;
    text-decoration: none;
    color: white;
}

.cardContainer a:hover {
    text-decoration: none;
    color: #B0E3FF;
    transition: all .2s;
}

.card {
    width: 345px;
    height: 210px;
    padding: 8px 7px;
    border-radius: 19px;
    font-size: 17px;
    text-align: center;
    background-color: #F9DC5C;
}

.card:hover {
    background-color: #282828;
}

.card img {
    width: 98%;
    border-radius: 11px;
    object-fit: contain;
}

.ytvid {
    border-radius: 20px;
    margin-bottom: 0px;
    width: 99%;
    height: 91%;
}

.card p {
    font-weight: 800;
}

.filmpage {
    display: flex;
    justify-content: center;
}

.filmpage a {
    font-size: 15px;
    margin: 10px 6px;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 2px 8px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-decoration: none;
}

.filmpage a:hover {
    background: rgb(0, 200, 255);
    color: black;
}

.filmpage .rightnow {
    background: rgb(0, 200, 255);
    color: black;
}

.thankyou {
    background-color: #FFC300;
    border-radius: 10px;
    position: sticky;
    opacity: 0.79;
    bottom: 0%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    text-align: center;
    padding: 1.5px 0px;
    margin-top: 9px;
}

@media (max-width: 1455px) {
    .left {
        width: 24%;
        padding: 0px;

    }

    .logo img {
        width: 22vw;
    }

    .right {
        width: 75%;
        max-height: 98vh;
    }

    .library {
        min-height: 67.5vh;
    }

    .categ {
        padding: 25px 2px;
        max-height: 45vh;
        overflow-y: scroll;
    }

    .social {
        text-align: center;
        padding: 20px 0px;
        font-size: 40px;
    }

    .search-bar:focus-within {
        width: 75%;
    }

    .search-bar:focus-within .input {
        opacity: 1;
        cursor: initial;
        width: 91%;
    }

    .social .fa-brands {
        padding: 11px 11px;
    }

    .gameplaying a {
        border-radius: 30px;
        display: flex;
        width: 32dvw;
        margin: 10px 2px;
        padding: 11px 20px;
        align-items: center;
    }

    .thankyou {
        font-size: 13px;
        text-align: center;
        margin-bottom: 10px;
        position: sticky;
    }

    .cardContainer {
        margin: 18px 10px;
        display: flex;
        gap: 19px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 195px;
        padding: 10px 2px;
        border-radius: 11px;
        font-size: 17px;
        text-align: center;
    }

    .card img {
        width: 90%;
        border-radius: 11px;
        object-fit: contain;
    }

}

@media (max-width: 1020px) {
    .left {
        width: 25%;
        padding: 0px;

    }

    .logo img {
        width: 22vw;
    }

    .right {
        width: 74%;
        height: 98vh;
    }

    .library {
        height: 67vh;
    }

    .social {
        text-align: center;
        padding: 25px 0px;
        font-size: 39px;
    }

    .search-bar:focus-within {
        width: 75%;
    }

    .search-bar:focus-within .input {
        opacity: 1;
        cursor: initial;
        width: 90%;
    }

    .slide img {
        border-radius: 10px;
        height: 355px;
    }

    .slider {
        height: 365px;
    }

    .cardContainer {
        margin: 18px 10px;
        display: flex;
        gap: 19px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 175px;
        padding: 10px 2px;
        border-radius: 11px;
        font-size: 17px;
        text-align: center;
    }

    .card img {
        width: 90%;
        border-radius: 11px;
        object-fit: contain;
    }

}

@media (max-width: 930px) {
    .left {
        background-color: black;
        position: absolute;
        left: -100%;
        transition: all .3s;
        z-index: 3;
        width: 250px;
    }

    .library {
        min-height: 72vh;
    }

    .social {
        text-align: center;
        padding: 25px 0px;
        font-size: 35px;
    }

    .logo img {
        width: 220px;
    }

    .left .close {
        position: absolute;
        color: black;
        display: block;
        right: 10px;
        top: 10px;
        z-index: 4;
    }

    .categ {
        padding: 25px 2px;
        max-height: 50vh;
        overflow-y: scroll;
    }

    .search-bar:focus-within {
        width: 70%;
    }

    .search-bar:focus-within .input {
        opacity: 1;
        cursor: initial;
        width: 90%;
    }


    .slide img {
        border-radius: 10px;
        height: 370px;
    }

    .slider {
        height: 375px;
    }

    .right {
        width: 100vw;
        height: 99vh;
    }

    .hamburger {
        display: block;
    }

    .filmWare {
        padding: 0px 5px;
    }

    .cardContainer {
        margin: 18px 10px;
        display: flex;
        gap: 19px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 175px;
        padding: 10px 2px;
        border-radius: 11px;
        font-size: 17px;
        text-align: center;
    }

    .card img {
        width: 90%;
        border-radius: 11px;
        object-fit: contain;
    }

    .card h3 {
        padding: 0px 0px;
    }

    .card p {
        padding: 5px 8px;
    }

}

@media (max-width: 730px) {

    .search-bar:focus-within {
        width: 70%;
    }

    .search-bar:focus-within .input {
        opacity: 1;
        cursor: initial;
        width: 88%;
    }

    .slide img {
        border-radius: 10px;
        height: 320px;
    }

    .slider {
        height: 330px;
    }

    .right {
        width: 100vw;
    }

    .hamburger {
        display: block;
    }

    .filmWare {
        padding: 0px 5px;
    }

    .cardContainer {
        margin: 18px 0px;
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 175px;
        padding: 10px 0px;
        border-radius: 11px;
        font-size: 17px;
        text-align: center;
    }

    .card img {
        width: 87%;
        border-radius: 11px;
        object-fit: contain;
    }

    .card h3 {
        padding: 0px 0px;
    }

    .card p {
        padding: 5px 8px;
    }

}

@media (max-width: 630px) {

    .search-bar:focus-within {
        width: 70%;
    }

    .search-bar:focus-within .input {
        opacity: 1;
        cursor: initial;
        width: 84%;
    }

    .slide img {
        border-radius: 10px;
        height: 270px;
    }

    .slider {
        height: 280px;
    }

    .right {
        width: 100vw;
    }

    .hamburger {
        display: block;
    }

    .filmWare {
        padding: 0px 5px;
    }

    .cardContainer {
        margin: 18px 0px;
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 175px;
        padding: 10px 0px;
        border-radius: 11px;
        font-size: 17px;
        text-align: center;
    }

    .card img {
        width: 87%;
        border-radius: 11px;
        object-fit: contain;
    }

    .card h3 {
        padding: 0px 0px;
    }

    .card p {
        padding: 5px 8px;
    }

}

@media (max-width: 535px) {

    .search-bar:focus-within {
        width: 65%;
    }

    .search-bar:focus-within .input {
        opacity: 1;
        cursor: initial;
        width: 80%;
    }

    .slide img {
        border-radius: 10px;
        height: 218px;
    }

    .slider {
        height: 228px;
    }

    .right {
        width: 100vw;
    }

    .hamburger {
        display: block;
    }

    .filmWare {
        padding: 0px 5px;
    }

    .cardContainer {
        margin: 18px 0px;
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 175px;
        padding: 10px 0px;
        border-radius: 11px;
        font-size: 17px;
        text-align: center;
    }

    .card img {
        width: 87%;
        border-radius: 11px;
        object-fit: contain;
    }

    .card h3 {
        padding: 0px 0px;
    }

    .card p {
        padding: 5px 8px;
    }

}

@media (max-width: 435px) {

    .search-bar:focus-within {
        width: 65%;
    }

    .search-bar:focus-within .input {
        opacity: 1;
        cursor: initial;
        width: 79%;
    }

    .right {
        width: 100vw;
    }

    .hamburger {
        display: block;
    }

    .filmWare {
        padding: 0px 5px;
    }

    .gameplaying a {
        border-radius: 30px;
        display: flex;
        width: 80dvw;
        margin: 10px 2px;
        padding: 11px 20px;
        align-items: center;
        color: white;
        font-size: 1rem;
    }

    .gametitle {
        margin-left: 10px;
        padding: 0px;
        text-wrap: wrap;
    }

    .gametitle h4 {
        display: none;
    }

    .gameicon {
        height: 9vh;
        border-radius: 20px;
    }

    .cardContainer {
        margin: 18px 3px;
        display: flex;
        gap: 19px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 90vw;
        padding: 10px 0px;
        border-radius: 11px;
        font-size: 17px;
        text-align: center;
    }

    .card img {
        width: 90%;
        border-radius: 11px;
        object-fit: contain;
    }

    .card p {
        font-weight: 300;
    }

    .ytvid {
        border-radius: 20px;
        margin-bottom: 8px;
        width: 95%;
        height: 25dvh;
    }

}

@media (max-width: 395px) {

    .search-bar:focus-within {
        width: 65%;
    }

    .search-bar:focus-within .input {
        opacity: 1;
        cursor: initial;
        width: 75%;
    }

    .right {
        width: 100vw;
    }

    .hamburger {
        display: block;
    }

    .filmWare {
        padding: 0px 5px;
    }

    #categs {
        margin-top: 50px;
        font-weight: 300;
        margin-left: 15px;
    }

    .cardContainer {
        margin: 18px 3px;
        display: flex;
        gap: 19px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 91dvw;
        padding: 10px 0px;
        border-radius: 11px;
        font-size: 17px;
        text-align: center;
    }

    .ytvid {
        border-radius: 20px;
        margin-bottom: 0px;
        width: 95%;
        height: 90%;
    }

    .card img {
        width: 90%;
        border-radius: 11px;
        object-fit: contain;
    }

    .card h3 {
        padding: 0px 0px;
    }

    .thankyou {
        font-size: 13px;
    }

}