/* Estilos Gerais */
body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

#game-container {
    background-color: #2c2c2c;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screen {
    width: 700px;
    max-width: 680px;
    min-height: 480px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flex {
    display: flex;
}

h1 {
    font-size: 2.5rem;
    color: #48bb78;
    margin-bottom: 24px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 0;
}

.button {
    background-color: #48bb78;
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #38a169;
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

/* Estilos Específicos do Jogo */
#game-screen {
    min-height: 600px; /* Aumenta o espaço para o canvas */
}

#game-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 640px;
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

#game-canvas {
    background-color: #000;
    border: 2px solid #333;
    border-radius: 8px;
    margin-top: 10px;
}

#buttons-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Estilos do Ranking */
#ranking-list {
    list-style-type: none;
    padding: 0;
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

#ranking-list li {
    background-color: #3d3d3d;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: bold;
}

#ranking-list li:nth-child(1) { color: gold; }
#ranking-list li:nth-child(2) { color: silver; }
#ranking-list li:nth-child(3) { color: #cd7f32; }

/* Estilos da Tela de Fim de Jogo */
#end-game-message {
    font-size: 2rem;
    color: #48bb78;
    margin-bottom: 10px;
}

#final-score-message {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 20px;
}

#name-input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#name-input {
    padding: 8px;
    font-size: 1rem;
    border: 2px solid #48bb78;
    background-color: #1a202c;
    color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
}

#name-input::placeholder {
    color: #a0aec0;
}

/* Estilo da Logo */
#logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px; /* Aumentei o tamanho aqui */
    height: auto;
    z-index: 10;
}