/* ========================================
   Result
   ======================================== */
.sc-result { padding: 80px 0; }
.result-card {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 48px;
    text-align: center;
}
.result-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    color: #fff;
}
.result-icon.success { background: #333; }
.result-icon.waiting { background: #e6a23c; }
.result-icon.fail { background: #c00; }
.result-card h1 { font-size: 18px; font-weight: 500; margin-bottom: 12px; }
.result-card p { font-size: 13px; color: #666; margin-bottom: 8px; }
.result-card code {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: #555;
}
.result-actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; }