body {
    background-color: #02040a; /* Matches the dark background of your image */
    color: #ffffff;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 100%;
    padding: 20px;
}

.banner-wrapper {
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1); /* Subtle cyber glow */
    border: 1px solid #1a2f4d;
}

.main-banner {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 60vh; /* Keeps it from taking over the whole screen */
}

.status-console {
    margin-top: 30px;
}

h1 {
    font-size: 2rem;
    color: #A4E944; /* The neon green from your logo */
    text-transform: uppercase;
    letter-spacing: 3px;
}

.sub-text {
    color: #4da6ff; /* The cyan circuit color */
    font-size: 1rem;
    opacity: 0.8;
}

/* Blinking cursor effect */
.blink {
    animation: blinker 1.5s linear infinite;
    color: #A4E944;
    font-size: 1.2rem;
}

@keyframes blinker {
    50% { opacity: 0; }
}