@import url("common.css")/*tpa=https://game.vvtoo.com/LY/6907/css/common.css*/;
@import url("header.css")/*tpa=https://game.vvtoo.com/LY/6907/css/header.css*/;
@import url("footer.css")/*tpa=https://game.vvtoo.com/LY/6907/css/footer.css*/;

.home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.home-grid .games {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (min-width: 540px) and (max-width: 767px) {
    .home-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 539px) {
    .home-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}