/* Game Card Hover Effect - Elegant Design */

.game-card {
    position: relative;
    overflow: hidden;
}

.game-card img {
    transition: all 0.3s ease;
}

.game-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    background: rgba(255, 191, 14, 0);
    backdrop-filter: blur(0px);
}

.game-card:hover .game-play-overlay {
    opacity: 1;
    background: rgba(255, 191, 14, 0.3);
    backdrop-filter: blur(8px);
}

.game-card:hover img {
    filter: blur(4px) brightness(0.7);
    transform: scale(1.05);
}

/* Main OYNA Button */
.game-play-main {
    background: none;
    border: 3px solid var(--primary-yellow);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    gap: 2px;
}

.game-play-main:hover {
    background: var(--primary-yellow);
    transform: scale(1.1);
}

.play-icon {
    font-size: 20px;
    color: var(--primary-yellow);
    transition: color 0.3s;
    line-height: 1;
    margin-left: 3px;
    margin-top: -2px;
}

.game-play-main:hover .play-icon {
    color: #000;
}

.play-text {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
    text-transform: capitalize;
    line-height: 1;
}

/* Demo Link */
.game-play-demo {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: underline;
}

.game-play-demo:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}