body {
    background: #f4f6f8;
}

.card {
    border-radius: 16px;
}

.terminal-body {
    background: #111827;
    min-height: 100vh;
}

.terminal-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-card {
    width: min(92vw, 520px);
    background: white;
    padding: 36px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.terminal-card h1 {
    font-size: 42px;
    font-weight: 800;
}

.terminal-result {
    padding: 24px;
    border-radius: 18px;
    background: #e5e7eb;
    font-size: 22px;
    font-weight: 700;
}

.terminal-result.success {
    background: #dcfce7;
    color: #166534;
}

.terminal-result.error {
    background: #fee2e2;
    color: #991b1b;
}