/* Definição de cores */
:root {
    --primary-color: #6a0dad;  /* Roxo principal */
    --text-color: #ffffff;     /* Texto branco */
    --background-color: #1e1e1e; /* Fundo escuro */
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Corpo da página */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

/* Título da AdlGames Studio */
.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Mensagem de manutenção */
.message {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Rodapé */
footer {
    position: absolute;
    bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}