body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fafafa;
    color: #000;
    overflow-x: hidden;
    /* Evita a barra de rolagem horizontal */
}

header {
    background-color: #59ffa0;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 240px;
    max-height: 180px;
    width: auto;
    height: auto;
}

footer {
    background-color: #59ffa0;
    padding: 15px;
    text-align: center;
    color: #ffff;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.games-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    gap: 5px;
}

.game {
    width: 280px;
    height: 200px;
    margin: 10px;
    cursor: pointer;
    text-align: center;
    border-radius: 20px;
}

.game:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.game img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
    object-fit: cover;
}

.game-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
    position: relative;
    padding: 20px;
}

.game-embed iframe {
    border-radius: 20px;
    width: 85%;
    height: 85%;
    border: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #32cd84;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-button:hover {
    background-color: #28a96c;
    transform: scale(1.05);
}