/* RESET básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background-color: #121212;
    font-family: Arial, sans-serif;
    color: white;
}

/* CONTAINER PRINCIPAL */
#busca {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* TÍTULO */
#busca h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

/* ÁREA DE INPUT */
#busca label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

#buscar {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    margin-bottom: 10px;
    flex: 1;
}

/* BOTÃO */
#enviar {
    width: 10%;
    height: 90%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: #00c853;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

#enviar:hover {
    background-color: #00a844;
}

/* RESULTADOS */
.container-jogos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* CARD */
.card-jogo {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card-jogo img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card-jogo h4 {
    margin: 10px;
    font-size: 16px;
}

.card-jogo p {
    margin: 0 10px 10px;
    font-size: 14px;
    color: #aaa;
}

.card-jogo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.search-box {
    display: flex;
    gap: 10px;
}


