/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a2e; /* Azul escuro profundo */
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.content {
    background: #16213e; /* Tom ligeiramente mais claro para o cartão */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-top: 5px solid #0f3460; /* Detalhe no topo */
}

.icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #e94560; /* Cor de destaque (vermelho/rosa tech) */
}

.subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 30px;
}

/* Caixa de status com loader */
.status-box {
    background: #0f3460;
    padding: 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

/* Animação de carregamento simples (spinner) */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e94560;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

footer {
    font-size: 0.8rem;
    color: #555;
    margin-top: 20px;
}

/* Animações */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsividade para celulares */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .content {
        padding: 20px;
    }
}