body {
    background-color: #0b0f1a;
    color: #e5e7eb;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: #111827;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

h1 {
    color: #3b82f6;
}

button {
    background-color: #3b82f6;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

button:hover {
    background-color: #2563eb;
}

#status {
    margin-top: 15px;
    color: #9ca3af;
}