body {
    font-family: sans-serif;
}

.card-body h5 {
    margin-bottom: 0;
}

.card-image {
    border-radius: 15px;
}

.heart-icon {
    top: 8px;
    right: 8px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

    .heart-icon i {
        font-size: 18px;
        background: rgba(0, 0, 0, 0.55);
        color: #fff;
        padding: 8px;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.list-inline-item {
    padding-right: 15px;
    border-right: 1px solid #000000;
}

    .list-inline-item a {
        color: #000000;
        text-decoration: none;
        font-weight: bold;
    }

    .list-inline-item:last-child {
        border-right: none;
    }

.footer-description {
    text-align: justify !important;
    color: #000000;
    font-size: 14px;
    margin-top: 20px;
}

.game-card {
    overflow: hidden;
}

.game-img {
    border-radius: 30px;
}

.play-btn {
    background-color: #3D6BFF !important;
    width: 165px !important;
    color: #fff !important;
    height: 45px;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
    flex-grow: 1 !important;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .play-btn::before {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 12px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        margin-right: 8px;
    }

.hastag-game {
    padding: 4px 12px;
    margin: 5px;
    background: none;
    border: 1px solid #000000;
    color: #000000;
    border-radius: 12px;
    font-size: 15px;
    font-weight: normal;
}

.feature-item {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 15px;
}

    .feature-item b {
        color: #000;
    }

.heading {
    margin-top: 2rem;
    color: black;
    font-weight: bold;
    margin-bottom: 2rem;
}

.title-text {
    text-align: justify !important;
    font-weight: 500;
    font-size: 16px;
    color: black;
    margin: 20px 0;
}

.contactbtn {
    width: 100%;
    color: white;
    font-weight: bold;
    background-color: #282a5e;
    border: 1px solid #282A5E;
}

    .contactbtn:hover {
        background-color: #26284c !important;
        border: 1px solid #26284C !important;
    }

.box-card {
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    padding: 25px;
    background: #f7f7f7;
    max-width: 653px;
    width: 100%;
}

.coin-btn {
    background: linear-gradient(90deg, #2b74d8, #2f6bd9);
    color: white;
    border-radius: 40px;
    padding: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    /*gap: 10px;*/
    gap: 5px;
    text-decoration: none;
    outline: none;
}

.category-btn {
    border: 2px solid #2f6bd9;
    border-radius: 40px;
    padding: 12px 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .category-btn:hover {
        background: #2f6bd9;
        color: white;
    }

.coin-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
}

@media (max-width: 640px) {
    .card-body {
        position: absolute;
        bottom: 0;
        width: 100%;
        z-index: 2;
        background: rgba(0, 0, 0, 0.35);
        border-bottom-right-radius: 15px;
        border-bottom-left-radius: 15px;
        color: #fff;
    }

    .game-details div {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
}

@media (min-width: 440px) {
    .mobile-heading {
        display: none;
    }
}

@media (max-width: 440px) {
    .details-heading {
        display: none !important;
    }

    .details-btn a {
        display: none !important;
    }

    .mobile-heading {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

        .mobile-heading h3 {
            margin-bottom: 0;
        }
}

@media (max-width: 368px) {
    .category-btn {
        padding: 12px 9px;
    }
}

@media (max-width: 360px) {
    .box-card {
        padding: 15px;
    }

    .coin-btn {
        font-size: 14px;
        padding: 11px;
    }

        .coin-btn img {
            width: 18px !important;
        }

    .box-card h5 {
        margin-bottom: 15px !important;
        font-size: 18px;
    }

    .category-btn {
        padding: 9px;
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .heart-icon i {
        font-size: 17px;
        padding: 7px;
    }

    .category-btn {
        font-size: 14px;
    }

    .details-btn {
        flex-wrap: nowrap !important;
    }
}

@media (max-width: 252px) {
    .play-btn {
        font-size: 14px;
    }
}

@media (max-width: 240px) {
    .card-body {
        padding: 6px !important;
    }

        .card-body h5 {
            font-size: 11px;
        }

    .play-btn {
        font-size: 13px;
    }

    .mobile-heading {
        gap: 10px;
    }
}





.coin-btn.disabled {
    pointer-events: none;
    color: #999 !important; 
    opacity: 0.6;
    cursor: not-allowed; 
    color: white !important;
}

