    .bg-1 {
        padding-top: 30px;
        padding-bottom: 200px;
        background: linear-gradient(180deg, #8F090B, #2E0001, #000000);
    }

    .bg-2 {
        padding-top: 30px;
        padding-bottom: 30px;
        background: #200000;
    }


    .custom-bg>div {
        font-size: 10px;
        color: #fff;
        margin-top: auto;
        padding-bottom: 10px;
        z-index: 2;

    }

    /* สำหรับหน้าจอขนาดกลางขึ้นไป (md) */
    @media (min-width: 768px) {
        .custom-bg>div {
            font-size: 16px;
        }

        .bg-1 {
            padding-top: 75px;
            padding-bottom: 150px;
            background: linear-gradient(180deg, #8F090B, #2E0001, #000000);
        }

        .bg-2 {
            padding-top: 75px;
            padding-bottom: 75px;
            background: #200000;
        }


        .btn-swgame {
            font-size: 20px;
        }
    }


    /* สำหรับหน้าจอขนาดใหญ่ขึ้นไป (lg) */
    @media (min-width: 992px) {
        .custom-bg>div {
            font-size: 18x;
        }

        .bg-2 {
            padding-top: 75px;
            padding-bottom: 75px;
            background: #200000;
        }
    }



    .menu {
        display: flex;
        justify-content: space-around;
        padding: 5px;
        padding-top: 7px;
        background: #3D0303;
        border-radius: 60px;
        align-items: baseline;
    }

    .menu-item {
        color: #D9D9D9;
        padding: 10px 20px;
        text-align: center;
        cursor: pointer;
        font-size: 16px;
        width: 134px;
    }

    .menu-item.new {
        color: #fbd7b4;
    }

    .menu-item.active {
        border-radius: 20px;
        color: #000000;
        background-image: linear-gradient(90deg, #FFB804, #FFBF00, #FF453E);
    }

    .game_imge {
        max-width: 206px;
        max-height: 253px;
        margin: 5px;
        position: relative;
        overflow: hidden;
        flex: 1 1 calc(50% - 10px);
    }

    .game_imge>img:hover {
        transition: filter 0.3s ease;
        filter: brightness(0.2);
    }

    .game_imge>img {
        width: 100%;
    }

    .game_imge>.custom-bg>.btn-swgame {
        position: absolute;
        text-decoration: none;
    }

    .custom-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        /* Semi-transparent background */
        opacity: 0;
        transition: opacity 0.6s ease;
        z-index: 1;
        /* ให้แสดงอยู่ด้านบน */
    }

    .game_imge:hover .custom-bg {
        opacity: 1;
    }



    .game_block {
        display: flex;
        justify-content: center;
    }

    .btn-swgame {
        background-image: linear-gradient(90deg, #FFB804, #FFBF00, #FF453E);
        border: 2.5px solid #FFB804;
        color: black !important;
        font-weight: bold;
        padding: 10px 45px;
        border-radius: 100px;
        animation: 1.6s playShadow ease-out infinite;
        font-size: 16px;
        z-index: 2;
    }

    .bg-2 .bg-sub {
        background-image: linear-gradient(180deg, #FF3F42, #8F090B, #2E0001);
        border-radius: 30px;
    }