﻿body {
}
/** Update - 23/9/2026 **/
.play-hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 22%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    z-index: 1;
}

button.playslot-btn {
    background: #142944;
    border: 1px solid #09e780;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    min-width: 110px;
    padding: 6px;
    margin: 5px 0px;
    border-radius: 6px;
    transform: scale(0.3);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

    button.playslot-btn.demo {
        background: #161d4b;
        border: 1px solid #1395d3;
    }

.pgbox:hover .play-hover {
    visibility: visible;
    opacity: 1;
}

    .pgbox:hover .play-hover button.playslot-btn {
        transition: 0.2s;
        transform: scale(1);
        visibility: visible;
        opacity: 1;
    }

.pgbox.special:hover .tg-img::after {
    content: '';
    background: rgb(0,0,0,0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.pgbox.special:hover img {
    opacity: 0.5;
}

@media(max-width: 767px) {
    button.playslot-btn {
        min-width: auto;
        width: 100%;
        max-width: 80%;
        font-size: 10px;
        padding: 5px 3px;
        margin: 2px 0;
    }
}
