body {
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Footer styling */
footer {
    padding: 20px 0px 0 0;
    background-color: #009CDB; /* Semi-transparent dark background */
    margin-top: auto; /* Push footer to the bottom */
}

footer a {
    color: #fff;
    text-decoration: underline;
}

footer a:hover {
    color: #ddd;
}

.title-header {
    color: #ffff;
    font-family: "Orbitron", sans-serif;;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    margin: 0px;
    padding: 0px;
    cursor: pointer;
}

menu {
    position: absolute;
    right: 40px;
}

h1 {
    font-size: 35px;
    font-weight: 700;
    margin: 0px;
    padding: 0px;
}

.game-subtitle {
    color: #646464;
    font-size: 22px;
    font-weight: 600;
}

h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
}

p {
    color: #646464;
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;

}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    /* background-color: #4CAF50 ; */
    background: linear-gradient(to right, #009CDB, #009CDB);
    box-shadow: 0px 0.5px 5px black;
    z-index: 1;
}

.container-game-page {
    margin: 180px 0 100px 0;
    /* flex: 1; */
}

h2 {
    font-size: 18px;
}

.game-title {
    text-align: center;
}

.game-text {
    font-size: 16px;
    font-weight: 500;
}

.container-icone {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* background-color: rgb(231, 231, 231); */
    height: 50px;
    width: 50px;
}

.container-game-buttons {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.container-cards {
    margin-bottom: 100px;
}

.card-page {
    gap: 20px;
}

.container-game-icone {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; /* Ajuste conforme necessário */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Linhas animadas simulando o símbolo da reciclagem */
.container-game-icone::before,
.container-game-icone::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: rotate 4s linear infinite;
}

/* Linha verde (simbolizando reciclagem) */
.container-game-icone::before {
    border-top: 3px solid #4CAF50;
    border-left: 3px #4CAF50;
    animation-duration: 4s;
}

/* Linha azul (outra cor para o efeito dinâmico) */
.container-game-icone::after {
    border-bottom: 3px solid #009CDB;
    border-right: 3px solid #009CDB;
    animation-duration: 4s;
}

/* Animação de rotação */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Fundo do Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Conteúdo do Modal */
.modal-content {
    display: flex;
    justify-content: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    animation: fadeIn 0.3s ease-in-out;
}

/* Animação de Fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mostrar o modal */
.modal-overlay.show {
    display: flex;
    opacity: 1;
}

/* Botão de fechar */
#close-modal {
    margin-top: 10px;
}

