
    body {
        background-color: #0b0b0b;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: "Poppins", sans-serif;
        overflow: auto;
    }

    .games {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1200px;
        width: 100%;
        margin-top: 40px;
    }

    .game {
        flex-basis: calc(25% - 20px);
        margin: 10px;
        padding: 20px;
        background-color: #0b0b0b;
        border-radius: 10px;
        transition: all 0.2s ease;
        box-shadow: 0 0 10px black, 0 0 20px black;
    }

    .game:hover {
        box-shadow: 0 0 10px white, 0 0 20px black;
    }

    .game img {
        display: block;
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
        border-radius: 10px;
        border: 3px solid #000;
        margin: auto;
    }

    .game h2 {
        font-size: 1.8rem;
        margin-top: 1;
        margin-bottom: 10px;
        text-align: center;
        font-family: "Poppins", sans-serif;
    }

    .game p {
        display: none;
    }

    @media screen and (max-width:1200px) {
        .games {
            max-width: 900px;
        }

        .game {
            flex-basis: calc(33.33% - 20px);
            margin: 10px 20px;
        }
    }

    @media screen and (max-width:900px) {
        .games {
            max-width: 600px;
        }

        .game {
            flex-basis: calc(50% - 20px);
            margin: 10px 20px;
        }
    }

    @media screen and (max-width:600px) {
        .game {
            flex-basis: calc(50% - 20px);
            margin: 10px 20px;
        }
    }

    @media screen and (max-width:400px) {
        .game {
            flex-basis: calc(100% - 20px);
            margin: 10px;
        }
    }

    .search-bar input {
        width: 100%;
        padding: 5px 10px;
        border-radius: 5px;
        border: none;
    }
