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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.splash-container {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 200px;
    height: auto;
    /* Adicionando um brilho suave na imagem com o novo tom de amarelo */
    filter: drop-shadow(0 0 10px rgba(255, 187, 0, 0.3));
    animation: pulse 2s infinite ease-in-out;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFBB00; /* Novo Amarelo exato da imagem */
    text-transform: uppercase;
    letter-spacing: 5px;
}

.message {
    font-size: 1.1rem;
    opacity: 0.8;
}

.redirect-link {
    margin-top: 20px;
    font-size: 0.9rem;
}

.redirect-link a {
    color: #FFBB00; /* Novo Amarelo nos links */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.redirect-link a:hover {
    border-bottom: 1px solid #FFBB00;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilos para a página 404 */
.description {
    margin-bottom: 20px;
    opacity: 0.7;
    max-width: 400px;
}

.btn-back {
    display: inline-block;
    background-color: #FFBB00; /* Novo Amarelo no botão */
    color: #000000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 187, 0, 0.2);
}

.btn-back:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}
