.onboarding-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.onboarding-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.onboarding-logo {
    font-size: 3rem;
    margin-bottom: 24px;
}

.onboarding-card h2 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.onboarding-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.setup-section {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    margin-bottom: 20px;
}

.setup-section h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.setup-section .desc {
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.onboarding-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.onboarding-btn:hover:not(:disabled) {
    background: var(--bg-tertiary);
}

.onboarding-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.onboarding-btn.primary {
    background: var(--accent);
    color: white;
    border: none;
}

.onboarding-btn.primary:hover {
    background: var(--accent-hover);
}

.divider {
    margin: 24px 0;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
    margin: 0 16px;
}

.seed-input {
    width: 100%;
    height: 80px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 20px;
    resize: none;
    background: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.seed-phrase-display {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent);
    margin: 24px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    word-spacing: 12px;
}

.warning-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-align: left;
}

.input-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.profile-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 12px;
    background: white;
    transition: border-color 0.2s;
}

.profile-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(35, 131, 226, 0.1);
}

.notice {
    font-size: 0.8rem !important;
    margin-top: 8px;
}

.notice span {
    font-family: monospace;
    color: var(--accent);
    font-weight: 600;
}
