/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {}

/* Medium Devices, Desktops */
@media only screen and (min-width : 850px) {
    .a-footer .a-menu{
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        align-items: center;
        padding: 7px;
        margin-bottom: 1rem;
    }
    .a-menu .ux-menu-link__link {
        min-height: unset;
    }
    .a-menu .ux-menu-link__text{
        color: #EC652B;
        text-transform: uppercase;
        font-weight: bold;
    }
    .a-game .nav{
        transform: unset !important;
        gap: unset !important;
    }
    .a-game .tab a {
        background: unset !important;
        border: unset !important;
    }
    .a-game .tab{
        background: url(/wp-content/uploads/2024/12/game-normal.webp);
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: contain;
        width: 150px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .a-game .tab.active{
        background: url(/wp-content/uploads/2024/12/game-active.webp);
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: contain;
    }
    .a-game .tab span{
        font-size: 12px;
        color: #FFFCF4 !important;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
    .a-cong-game-2 .nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .a-cong-game-2 .nav .tab a span {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .a-cong-game-2 .nav .tab {
        height: 100%;
    }

    .a-banner-2 p {
        font-size: 16px;
    }

    .a-banner-2 p:nth-child(2) {
        font-size: 32px;
    }

    .a-banner-2 p:nth-child(4) {
        font-size: 64px;
    }

    .a-game .nav {
        transform: unset;
        margin-bottom: 10px;
    }

    .a-game .tab-panels {
        padding: 1rem;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 550px) {
    .a-banner p {
        font-size: 20px;
    }

    .a-order {
        order: -1;
        padding-bottom: 1rem !important;
    }
    .a-footer .a-menu{
        padding: 10px;
        margin-bottom: 1rem;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {}