.games-load-more-button {
    display: block;
    margin: 18px auto 0;
    min-width: 150px;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe55a, #f7a900);
    color: #043b3a;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.games-load-more-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.games-load-more-button[hidden] {
    display: none;
}

@media (max-width: 768px) {
    .games-load-more-button {
        min-width: 132px;
        min-height: 38px;
        margin-top: 14px;
        font-size: 13px;
    }
}
