body {
    background-color: #0a0a1a; /* Dark space blue */
    color: #e0e0e0; /* Light grey text */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-image: linear-gradient(rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.95)), url('https://www.transparenttextures.com/patterns/stardust.png'); /* Subtle stardust background */
}

.container {
    max-width: 600px;
    padding: 2em;
    border: 1px solid #334; /* Subtle border */
    border-radius: 8px;
    background-color: rgba(20, 20, 40, 0.7); /* Slightly lighter, semi-transparent background */
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3); /* Deep sky blue glow */
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8em;
    color: #ffffff;
    margin-bottom: 0.5em;
    text-shadow: 0 0 5px #00bfff, 0 0 10px #00bfff; /* Neon blue text shadow */
}

header h1 .highlight {
    color: #00bfff; /* Deep Sky Blue */
}

.status {
    font-size: 1.2em;
    color: #7fffd4; /* Aquamarine */
    margin-bottom: 1em;
    font-weight: 300;
    letter-spacing: 1px;
}

.message {
    font-size: 1.1em;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.domain {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffffff;
    margin-top: 1em;
    font-family: 'Orbitron', sans-serif;
}

footer {
    margin-top: 2em;
    font-size: 0.9em;
    color: #aaa;
}
