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

.container { text-align: center; }

.logo {
    font-size: 3rem;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 68, 0, 0.5);
}

.logo span { color: #ff4400; }

.hero-content h2 {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 10px;
}

.status-box {
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid #333;
    display: inline-block;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.pulse {
    height: 10px;
    width: 10px;
    background-color: #ff4400;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px #ff4400;
    animation: blink 1.5s infinite;
}

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

footer { margin-top: 50px; font-size: 0.8rem; color: #555; }
footer a { color: #ff4400; text-decoration: none; }