@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

    * {
        padding: 0%;
        margin: 0%;
        font-family: "Roboto", sans-serif;
    }

    .carousel-indicators {
        bottom: -20px;
    }

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin: 0 6px;
        background-color: rgba(255, 255, 255, .8);
        opacity: 0.5;
    }

    .carousel-indicators .active {
        background-color: red;
    }


    .game-title {
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .game-card {
        text-align: center;
        border: none;
        background: transparent;
    }

    .game-icon {
        position: relative;
        width: 80px;
        height: 80px;
        margin: auto;
        border-radius: 18px;
        overflow: hidden;
    }

    .game-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .garena-badge {
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 22px;
        height: 22px;
        background: #e60012;
        color: #fff;
        font-size: 12px;
        font-weight: bold;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .game-name {
        margin-top: 6px;
        font-size: 14px;
        font-weight: 500;
    }

    .active-game .game-name {
        color: #e60012;
        font-weight: 600;
    }

    .active-game .game-icon img {
        width: 100%;
        height: 100%;
        border: 5px solid #e60012;
        border-radius: 18px;
    }

    /* Overlay for non-active games */
    .game-card:not(.active-game) .game-icon::after {
        content: "Coming Soon";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        color: #eee;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
    }

    /* Optional: dim image */
    .game-card:not(.active-game) .game-icon img {
        filter: blur(0.5px) brightness(0.8);
    }

    .securepay {
        min-height: 40vh;
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 8px 8px 0px 0px;
    }

    @media (max-width: 786px) {
        .securepay {
            min-height: 9vh;
        }
    }

    .titlenumber {
        font-weight: bolder;
        color: white;
        background-color: #d81a0d;
        clip-path: polygon(0 0,
                100% 0,
                100% calc(100% - 10px),
                calc(100% - 10px) 100%,
                0 100%);
        border-radius: 3px;
    }

    /* Locked topup buttons */
    .topup-btn.locked {
        pointer-events: none;
        opacity: 0.4;
        cursor: not-allowed;
    }

    /* Active selection */
    .active-topup {
        border: 2px solid #d81a0d !important;
        background: #fff5f5;
    }