body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.footer {
    color: white;
    margin-top: 10px;
    margin-bottom: -10px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0; /* Atualizado para afetar apenas a parte superior e inferior */
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px; /* Ajuste este valor conforme necessário */
    margin-top: 150px;
}

.hacker-main {
    border-radius: 40px;
    width: 100%;
    box-shadow: 0px 0px 8px #0000003b;
}


iframe {
    width: 100%;
    box-sizing: border-box;
    background: #090b1e;
    border-radius: 30px;
    box-shadow: 0px 0px 10px #000;
    margin-bottom: 12px;
}

.game-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px; /* Define a largura máxima do banner */
    margin-bottom: 1rem;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 4px;
    margin-bottom: 1rem;
}

.board div {
    width: 50px;
    height: 50px;
}

.board img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info {
    margin-bottom: 1rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.status-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50.1%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 33%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 0px;
}

.status {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #00336a;
    animation: fadeInOut 6s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    15%, 20% {
        opacity: 1;
    }
}

.generate-opportunity {
    background-color: #0f3357;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    padding: 14px 23px;
    font-size: 20px;
    margin: 0 auto;
    width: 100%;
    margin-top: 20px;
}

.generate-opportunity:hover, .generate-opportunity:focus {
    background-color: #0f3357;
}