/* RESET PADRÃO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CORPO DA PÁGINA */
body {
    background-image: url('./assets/background.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Organiza container e footer em coluna */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Evita barras de rolagem desnecessárias */
}

/* CONTAINER DO JOGO */
.container {
    margin-top: -50px;
    text-align: center;
    padding: 30px;
    max-width: 600px;
    z-index: 1;
}

/* TÍTULO */
h1 {
    font-family: "Diplomata", serif;
    font-size: 50px;
    margin-bottom: 30px;
    color: #332211;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* ESTILO GERAL DOS BOTÕES */
button {
    font-family: 'Noto Color Emoji', sans-serif;
    margin: 10px;
    margin-bottom: 30px;
    padding: 15px;
    cursor: pointer;
    font-size: 70px;
    border: 2px solid #8b4513;
    border-radius: 10px;
    transition: transform 0.2s, background-color 0.3s;
    cursor: pointer;
}

button:hover {
    transform: scale(1.1);
}

/* CORES DOS BOTÕES COM RGBA */
#rock { background-color: rgba(50, 205, 50, .5); }
#paper { background-color: rgba(30, 144, 255, .5); }
#scissors { background-color: rgba(220, 20, 60, .5); }

/* PLACAR */
.your-score, .cpu-score {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
    color: #332211;
}

.results {
    font-family: 'Diplomata', serif;
    font-size: 25px;
    text-align: center;
    color: #332211;

}

/* RODAPÉ / MARCA */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

footer p {
    font-family: 'Diplomata', serif;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    margin: 0; /* Limpando margens negativas */
    text-shadow: 1px 1px 4px #000;
}

/* ==========================================================
   MEDIA QUERIES - RESPONSIVIDADE
   ========================================================== */

/* CELULARES (MODO EM PÉ) */
@media screen and (max-width: 480px) {
    h1 { font-size: 30px; }
    
    button {
        font-size: 50px;
        margin: 5px;
        padding: 10px;
    }

    p {
        font-size: 20px;
        margin-left: 0;
        text-align: center;
    }
}

/* CELULARES (MODO LANDSCAPE / DEITADO) */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .container {
        transform: scale(0.65); /* Diminui o jogo para caber na altura curta */
        margin-top: 0;
    }

    h1 { margin-bottom: 10px; }

    footer {
        bottom: 5px; /* Sobe um pouquinho o footer no modo deitado */
    }

    footer p { font-size: 10px; }
}