.game-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.game-box {
    width: 220px;
    text-align: center;
}
.game-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #f04;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.game-play {
    margin-bottom: 20px;
}

.pgm-search-filter {
    margin: 20px 0;
}
.pgm-search-filter input,
.pgm-search-filter select,
.pgm-search-filter button {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.badge {
    position: absolute;
    background: red;
    color: #fff;
    padding: 3px 6px;
    font-size: 11px;
    border-radius: 3px;
    top: 5px;
    left: 5px;
    z-index: 10;
}
.badge.featured { background: #FFD700; color: #000; }
.badge.new { background: #28a745; }

.game-box {
    position: relative;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease;
}
.game-box:hover {
    transform: scale(1.05);
}
