* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;

    background: #111827;

    color: white;
}

.container {
    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;
}

.card {
    width: 100%;

    max-width: 500px;

    background: #1f2937;

    padding: 40px;

    border-radius: 16px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 42px;

    margin-bottom: 10px;
}

.subtitle {
    color: #9ca3af;

    margin-bottom: 30px;
}

.status {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-bottom: 30px;

    font-size: 18px;
}

.dot {
    width: 14px;

    height: 14px;

    background: #22c55e;

    border-radius: 50%;
}

button {
    border: none;

    padding: 12px 24px;

    border-radius: 8px;

    background: #2563eb;

    color: white;

    font-size: 16px;

    cursor: pointer;
}

button:hover {
    background: #1d4ed8;
}

#deploymentMessage {
    margin-top: 25px;

    color: #9ca3af;
}
