body {
    margin: 0;
    font-family: 'Orbitron', sans-serif; /* Usando uma fonte com estilo sci-fi */
    background-color: #000;
    color: #00ff00; /* Texto verde neon para um visual tech */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #0a0a0a 1px, transparent 1px) repeat;
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 90%;
    box-sizing: border-box;
}

.card {
    background-color: #1a1a1a;
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.logo img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.8));
    margin-bottom: 20px;
}

.content h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 10px #00ff00;
}

.status {
    font-size: 1.5em;
    color: #00ff00;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite alternate;
}

.content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info p {
    font-size: 1.2em;
    margin: 5px 0;
    color: #00ff00;
}

.dev-message {
    background-color: #0a0a0a;
    border: 1px dashed #00ff00;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.dev-message p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #fff;
}

.loading-bar {
    width: 80%;
    height: 15px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid #00ff00;
}

.progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #33ff33);
    border-radius: 5px;
    animation: loading 3s forwards infinite;
}

@keyframes pulse {
    from {
        opacity: 0.7;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes loading {
    0% { width: 0%; }
    25% { width: 50%; }
    50% { width: 75%; }
    75% { width: 90%; }
    100% { width: 100%; }
}

/* Responsividade */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2em;
    }
    .status {
        font-size: 1.2em;
    }
    .content p, .contact-info p, .dev-message p {
        font-size: 1em;
    }
    .logo img {
        width: 100px;
    }
}