body {
    background-color: #f8f9fa;
}

/* Gaya Kad Permainan */
.game-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.game-card-img-top {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background-color: #e9ecef;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.card-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.game-category {
    text-transform: capitalize;
}

.game-launcher {
    cursor: pointer;
}

/* Gaya Penapis Kategori */
#category-filters .btn-group {
    margin: 2px;
}

#category-filters .btn.active,
#category-filters .dropdown-toggle.active {
    background-color: #0d6efd;
    color: white;
}

/* Gaya Modal Permainan */
#game-iframe-container iframe {
    border: none;
}

