body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #EAEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    border: 1px solid #2a2a2a;
    background-color: #0a0a0a;
}

.content {
    animation: fadeIn 2s ease-in-out;
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00A86B; /* A vibrant, "digital" green */
    margin-bottom: 3rem;
}

.status {
    font-size: 1rem;
    font-weight: 400;
    color: #A0A0A0;
    margin-bottom: 1.5rem;
}

.contact {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}